:root {
  --ink: #1f1d1b;
  --muted: #756f68;
  --cream: #fbf5ee;
  --cream-2: #f6eee5;
  --card: #fffaf5;
  --line: #eadfd3;
  --gold: #a77d51;
  --gold-soft: #d8b895;
  --green: #dff2ea;
  --shadow: 0 22px 70px rgba(38, 29, 20, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(216,184,149,.32), transparent 24rem),
    radial-gradient(circle at 92% 28%, rgba(223,242,234,.48), transparent 26rem),
    var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, .86);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 12px;
  z-index: 20;
  box-shadow: 0 12px 40px rgba(39,29,21,.06);
}
.brand img { width: 164px; height: auto; }
.nav { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--muted); font-weight: 700; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--ink); }
.header-cta {
  text-decoration: none;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  align-items: center;
  gap: 34px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}
.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid var(--ink);
}
.btn.primary { background: var(--ink); color: white; box-shadow: 0 16px 34px rgba(31,29,27,.14); }
.btn.secondary { background: rgba(255,250,245,.7); color: var(--ink); border-color: var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,.45);
}

.hero-gallery {
  position: relative;
  min-height: 650px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,250,245,.65), rgba(246,238,229,.85));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
}
.hero-main {
  width: 78%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  margin: 60px auto 0;
  box-shadow: 0 20px 70px rgba(39,29,21,.16);
}
.floating-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(39,29,21,.15);
  padding: 12px;
  width: 188px;
}
.floating-card img { height: 128px; width: 100%; object-fit: cover; border-radius: 16px; }
.floating-card span { display: block; padding: 10px 4px 2px; font-weight: 900; }
.card-one { left: 20px; top: 48px; transform: rotate(-4deg); }
.card-two { right: 18px; bottom: 28px; transform: rotate(3deg); }

.intro-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 30px auto;
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 22px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.1;
}
.intro-strip p { margin: 0; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 90px auto;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}
.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 24px;
  align-items: end;
}
.section-heading h2,
.baby-copy h2,
.final-cta h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 16px;
}
.section-heading p,
.baby-copy p,
.final-cta p { color: var(--muted); line-height: 1.65; font-size: 17px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card, .product-card, .faq-grid details, .occasion-grid article {
  border: 1px solid var(--line);
  background: rgba(255,250,245,.78);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(39,29,21,.06);
}
.step-card { padding: 28px; min-height: 260px; }
.step-number { color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .2em; }
.step-card h3 { font-size: 26px; letter-spacing: -.035em; margin: 48px 0 12px; }
.step-card p { color: var(--muted); line-height: 1.6; margin: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-card.featured { grid-column: span 2; }
.product-card img { width: 100%; height: 260px; object-fit: cover; background: #fff; }
.product-card.featured img { height: 350px; }
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-kicker { color: var(--gold); font-weight: 900; font-size: 13px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; }
.product-card h3 { font-size: 28px; letter-spacing: -.04em; margin-bottom: 10px; }
.product-card p { color: var(--muted); line-height: 1.55; margin-bottom: 18px; }
.product-card a { margin-top: auto; font-weight: 900; color: var(--ink); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.accessory-collage { display: grid; grid-template-columns: repeat(3, 1fr); height: 260px; gap: 2px; background: #fff; }
.accessory-collage img { height: 260px; object-fit: cover; }

.baby-feature {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.check-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; }
.check-list li { color: var(--muted); padding-left: 30px; position: relative; line-height: 1.5; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #217d61;
  background: var(--green);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}
.baby-assets { display: grid; gap: 16px; }
.baby-assets img { border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 12px 30px rgba(39,29,21,.08); }

.occasion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.occasion-grid article { padding: 24px; }
.occasion-grid span { display: inline-flex; color: var(--gold); font-weight: 900; margin-bottom: 24px; }
.occasion-grid p { color: var(--muted); line-height: 1.58; margin: 0; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
details { padding: 20px 22px; }
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { color: var(--muted); line-height: 1.6; margin: 14px 0 0; }

.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 90px auto 50px;
  background:
    linear-gradient(135deg, rgba(31,29,27,.92), rgba(65,49,34,.92)),
    var(--ink);
  color: white;
  border-radius: 34px;
  padding: clamp(38px, 6vw, 76px);
  text-align: center;
  box-shadow: var(--shadow);
}
.final-cta p { color: rgba(255,255,255,.78); max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta .eyebrow { color: var(--gold-soft); }
.final-cta .btn.primary { background: white; color: var(--ink); border-color: white; margin-top: 10px; }

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 28px 0 10px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: var(--muted);
}
.site-footer img { width: 160px; margin-bottom: 10px; }
.site-footer p { margin: 0; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 800; }
.footer-links a { color: var(--muted); }

@media (max-width: 980px) {
  .site-header { border-radius: 26px; align-items: flex-start; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; overflow-x: auto; padding: 2px 0; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 40px; }
  .hero-gallery { min-height: 520px; }
  .hero-main { height: 400px; }
  .steps-grid, .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card.featured { grid-column: span 1; }
  .section-heading.split, .baby-feature { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; }
  .brand img { width: 138px; }
  .header-cta { padding: 10px 14px; font-size: 13px; }
  .nav { gap: 14px; font-size: 13px; }
  .hero, .section, .intro-strip, .final-cta, .site-footer { width: calc(100% - 20px); }
  h1 { font-size: 54px; }
  .hero-gallery { min-height: 440px; padding: 14px; }
  .hero-main { height: 340px; width: 88%; margin-top: 34px; }
  .floating-card { width: 142px; padding: 8px; }
  .floating-card img { height: 92px; }
  .card-one { left: 10px; top: 14px; }
  .card-two { right: 10px; bottom: 12px; }
  .section { margin: 64px auto; }
  .steps-grid, .product-grid, .occasion-grid, .faq-grid { grid-template-columns: 1fr; }
  .product-card img, .product-card.featured img { height: 280px; }
  .accessory-collage, .accessory-collage img { height: 220px; }
  .baby-feature { padding: 18px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}


.gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
}
.hero-carousel {
  margin-top: 18px;
  position: relative;
  height: calc(100% - 48px);
}
.carousel-stage {
  position: relative;
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(246,238,229,.92));
  box-shadow: 0 20px 70px rgba(39,29,21,.14);
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .9s ease;
  margin: 0;
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.carousel-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.carousel-slide figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255,250,245,.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  max-width: calc(100% - 36px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 10px 24px rgba(39,29,21,.12);
}
.carousel-controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255,250,245,.95);
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(39,29,21,.08);
}
.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  flex: 1;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(167,125,81,.28);
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 28px;
}
@media (max-width: 980px) {
  .carousel-stage, .carousel-slide img { height: 460px; min-height: 460px; }
}
@media (max-width: 640px) {
  .gallery-label { font-size: 10px; }
  .carousel-stage, .carousel-slide img { height: 370px; min-height: 370px; }
  .carousel-controls { gap: 10px; }
  .carousel-btn { width: 42px; height: 42px; font-size: 26px; }
}


.contact-section {
  background: rgba(255,250,245,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 16px 42px rgba(39,29,21,.06);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(39,29,21,.06);
}
.contact-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 18px;
}
.contact-card strong {
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.contact-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: auto 0 0;
}
.contact-card:hover {
  transform: translateY(-2px);
  transition: transform .18s ease;
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-section { padding: 18px; }
  .contact-card { min-height: 0; }
}
