/* =============================================================
   Oh Baby Kit — Polish v2
   Art direction: warm, trustworthy, premium baby essentials.
   Cream surfaces, forest green primary, soft terracotta accent.
   ============================================================= */

:root {
  /* Surfaces — warm naturals */
  --bg:           #F4EFE5;       /* primary background, soft cream */
  --bg-warmer:    #ECE5D6;       /* alt strip, slightly deeper */
  --surface:      #FBF8F1;       /* cards, lifted panels */
  --surface-2:    #F8F3E7;       /* secondary card */
  --paper:        #FFFDF7;       /* white-ish for forms */
  --ink:          #1F2A22;       /* primary text — deep forest ink */
  --ink-2:        #4A554A;       /* secondary text */
  --ink-3:        #7A8478;       /* muted */
  --line:         #D9D0BC;       /* hairlines */
  --line-soft:    #E6DECB;

  /* Brand */
  --green:        #2F4A3A;       /* forest, primary */
  --green-deep:   #213425;
  --green-soft:   #4A6750;
  --sage:         #97A38A;
  --terracotta:   #C97B5A;       /* warm accent for delight */
  --terracotta-deep: #A45F40;
  --butter:       #E9C97D;       /* small highlight, gift ribbon */
  --rose:         #E8C3B0;       /* pale baby rose */

  /* Typography */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", "Helvetica Neue", system-ui, sans-serif;

  /* Type scale (fluid) */
  --t-xs:   0.78rem;
  --t-sm:   0.9rem;
  --t-base: 1rem;
  --t-md:   1.125rem;
  --t-lg:   1.25rem;
  --t-xl:   1.5rem;
  --t-2xl:  clamp(1.75rem, 1.4rem + 1.4vw, 2.25rem);
  --t-3xl:  clamp(2.25rem, 1.8rem + 2vw, 3rem);
  --t-hero: clamp(2.6rem, 1.6rem + 4.5vw, 5.25rem);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows — soft, warm */
  --shadow-sm: 0 1px 2px rgba(33,52,37,0.05), 0 2px 6px rgba(33,52,37,0.04);
  --shadow-md: 0 4px 14px rgba(33,52,37,0.07), 0 18px 40px -20px rgba(33,52,37,0.18);
  --shadow-lg: 0 10px 30px rgba(33,52,37,0.10), 0 30px 70px -25px rgba(33,52,37,0.25);

  /* Layout */
  --max: 1200px;
  --max-narrow: 880px;
  --gutter: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "ss01";
  overflow-x: hidden;
}

/* Subtle paper grain on the page itself */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.16 0 0 0 0 0.13 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

main, nav, footer, section { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-deep); }

::selection { background: var(--green); color: var(--bg); }

/* Containers */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow { max-width: var(--max-narrow); }

.section {
  padding: clamp(56px, 8vw, 112px) 0;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 520;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: var(--t-hero); font-weight: 480; line-height: 1.0; letter-spacing: -0.022em; }
h2 { font-size: var(--t-3xl); }
h3 { font-size: var(--t-2xl); line-height: 1.1; }
h4 { font-size: var(--t-lg); font-family: var(--font-body); font-weight: 600; letter-spacing: 0; line-height: 1.3; }

p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: var(--t-md); color: var(--ink-2); line-height: 1.55; max-width: 56ch; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin: 0 0 18px;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--green-soft);
  display: inline-block;
}
.kicker--center { justify-content: center; }
.kicker--center::before { display: none; }
.kicker--center::after { display: none; }

.eyebrow { /* legacy support */
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
}

.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .25s ease;
  text-decoration: none;
  line-height: 1;
  white-space: normal;
  text-align: center;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--green-soft); outline-offset: 3px; }

.btn-primary {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-deep); color: var(--bg); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--green-soft); }

.btn-outline-white {
  background: transparent;
  color: var(--bg);
  border-color: rgba(244,239,229,0.45);
}
.btn-outline-white:hover { background: var(--bg); color: var(--green-deep); border-color: var(--bg); }

.btn-arrow::after {
  content: "→";
  display: inline-block;
  transform: translateX(0);
  transition: transform .25s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 229, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(244, 239, 229, 0.92);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 520;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-mark svg,
.brand-mark-img { display: block; }
.brand-mark .brand-word { font-style: italic; color: var(--green); }
.brand-mark-shell {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 208, 188, 0.78);
  border-radius: 14px;
  background: rgba(251, 248, 241, 0.76);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.brand-mark-img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.brand-mark:hover .brand-mark-icon,
.brand-mark:hover .brand-mark-shell { transform: rotate(-6deg); }
.brand-mark-icon,
.brand-mark-shell { transition: transform .35s ease; }
.footer .brand-mark-shell {
  background: var(--bg);
  border-color: rgba(244, 239, 229, 0.4);
  box-shadow: none;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  position: relative;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.5); }
.nav-links a.active { color: var(--ink); }
.nav-links a.btn-primary {
  color: var(--bg);
}
.nav-links a.btn-primary:hover {
  color: var(--bg);
  background: var(--green-deep);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  margin: 3px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 16px var(--gutter) 24px;
    background: rgba(244, 239, 229, 0.98);
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav-links a { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-links .btn { justify-content: center; }
  .nav.is-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: clamp(44px, 7vw, 96px) 0 clamp(64px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero-copy h1 .accent {
  font-style: italic;
  color: var(--green);
  font-weight: 460;
}
.hero-copy h1 .accent em {
  font-style: italic;
  position: relative;
  white-space: nowrap;
}
.hero-copy h1 .accent em::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: 0.07em;
  width: 104%;
  height: 0.18em;
  background: var(--butter);
  z-index: -1;
  border-radius: 2px;
  opacity: 0.85;
}
.hero-copy p.lead { margin-top: 22px; max-width: 50ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  align-items: center;
}
.hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-3);
  font-size: 0.85rem;
}
.hero-trust strong { color: var(--ink); font-weight: 600; }

/* Hero collage — staggered editorial */
.hero-collage {
  position: relative;
  aspect-ratio: 5/4;
  width: 100%;
}
.hero-collage figure {
  position: absolute;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
}
.hero-collage figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-collage .c-main {
  width: 70%;
  height: 78%;
  top: 5%;
  right: 0;
  z-index: 2;
  border-radius: var(--r-xl);
}
.hero-collage .c-top {
  width: 38%;
  height: 38%;
  top: 0;
  left: 0;
  z-index: 3;
  border-radius: var(--r-lg);
}
.hero-collage .c-bot {
  width: 42%;
  height: 36%;
  bottom: 0;
  left: 6%;
  z-index: 3;
  border-radius: var(--r-lg);
}
.hero-collage .c-tag {
  position: absolute;
  z-index: 4;
  bottom: 8%;
  right: -8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 10px 18px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  color: var(--ink);
}
.hero-collage .c-tag .dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--terracotta);
  display: inline-grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
}
.hero-collage .c-stamp {
  position: absolute;
  top: 38%;
  left: 38%;
  z-index: 5;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.05;
  padding: 8px;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-md);
}
.hero-collage .c-stamp small { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; margin-top: 2px; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-collage { aspect-ratio: 6/5; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 520px) {
  :root { --t-hero: clamp(2.25rem, 14vw, 3.45rem); }
  .hero { padding-top: 34px; }
  .hero-actions .btn,
  .pdp-info .btn,
  .contact-form .btn {
    width: 100%;
  }
  .hero-trust {
    align-items: flex-start;
  }
  .hero-collage {
    aspect-ratio: 1 / 1;
  }
  .hero-collage .c-tag {
    right: 0;
    max-width: calc(100% - 24px);
  }
  .hero-collage .c-stamp {
    width: 72px;
    height: 72px;
    font-size: 0.82rem;
  }
}

/* Decorative ornaments */
.hero-ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}
.hero-ornament--left { top: 22%; left: -30px; }
.hero-ornament--right { bottom: 14%; right: 6%; }

/* =========================================================
   Marquee strip
   ========================================================= */
.strip {
  background: var(--green);
  color: var(--bg);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.strip-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: -0.005em;
}
.strip-track > span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.strip-track > span::after {
  content: "❋";
  color: var(--butter);
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
}

/* =========================================================
   Inside / Manifest sections
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.split--reverse { grid-template-columns: 1.1fr 1fr; }
.split--reverse .split-copy { order: 2; }
.split--reverse .split-media { order: 1; }
@media (max-width: 880px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split-copy { order: 1; }
  .split--reverse .split-media { order: 2; }
}

.split-copy h2 + p { margin-top: 14px; }

/* Kit list — manifest style */
.manifest {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.manifest::before {
  content: "Kit Manifest · No. 01";
  position: absolute;
  top: -10px;
  left: 28px;
  background: var(--bg);
  padding: 0 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-soft);
}
.manifest-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.manifest-head h4 { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 480; font-size: 1.5rem; }
.manifest-head .stamp {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.manifest ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
@media (max-width: 600px) {
  .manifest ul { grid-template-columns: 1fr; }
}
.manifest li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px dotted var(--line-soft);
  padding-bottom: 12px;
  min-width: 0;
}
.manifest li:last-child, .manifest li:nth-last-child(2) { border-bottom: none; }
.manifest .qty {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-warmer);
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 520;
  font-size: 0.9rem;
  border: 1px solid var(--line-soft);
}
.manifest .qty--accent { background: var(--green); color: var(--bg); border-color: var(--green); }

/* =========================================================
   Use-case cards
   ========================================================= */
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .use-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .use-grid { grid-template-columns: 1fr; } }

.use-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.use-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.use-card .icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-warmer);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--green);
}
.use-card .icon-circle svg { width: 24px; height: 24px; }
.use-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 480;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.use-card p { margin: 0; font-size: 0.93rem; color: var(--ink-2); }
.use-card .num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

/* =========================================================
   Testimonial
   ========================================================= */
.quote-section {
  padding: clamp(64px, 10vw, 120px) 0;
}
.quote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.3;
  font-weight: 400;
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem);
  font-weight: 420;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
}
.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.quote cite strong { color: var(--ink-2); display: block; font-weight: 600; margin-bottom: 2px; }

/* =========================================================
   Contact / signup
   ========================================================= */
.contact-section {
  background: var(--bg-warmer);
  padding: clamp(64px, 9vw, 120px) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  font-size: 0.96rem;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-soft);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(74, 103, 80, 0.12);
}
.contact-form .btn { margin-top: 6px; align-self: flex-start; }

@media (max-width: 520px) {
  .contact-form .btn { align-self: stretch; }
}

/* CTA strip */
.cta-banner {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0;
  text-align: center;
  background: var(--green);
  color: var(--bg);
  overflow: hidden;
}
.cta-banner h2 { color: var(--bg); max-width: 22ch; margin: 0 auto 22px; }
.cta-banner p  { color: rgba(244,239,229,0.78); max-width: 50ch; margin: 0 auto 28px; }
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 201, 125, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-banner::before { top: -120px; left: -80px; }
.cta-banner::after  { bottom: -160px; right: -120px; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #1A2620;
  color: rgba(244,239,229,0.78);
  padding: 80px 0 32px;
  position: relative;
}
.footer .container { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,239,229,0.08);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand-mark { color: var(--bg); margin-bottom: 18px; }
.footer-brand .brand-mark .brand-word { color: var(--butter); }
.footer-brand p { color: rgba(244,239,229,0.62); font-size: 0.93rem; max-width: 36ch; }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a {
  color: rgba(244,239,229,0.66);
  font-size: 0.93rem;
  transition: color .2s ease;
}
.footer a:hover { color: var(--bg); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(244,239,229,0.5);
}

/* =========================================================
   STORY (about) page
   ========================================================= */
.page-hero {
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
}
.page-hero p.lead { margin: 18px auto 0; }

.story-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) 0 clamp(40px, 6vw, 80px);
}
.story-prose h2 {
  font-size: var(--t-2xl);
  margin-top: 56px;
  margin-bottom: 16px;
}
.story-prose h2:first-child { margin-top: 0; }
.story-prose p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink);
}
.story-prose .pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--green);
  border-left: 3px solid var(--terracotta);
  padding: 4px 0 4px 22px;
  margin: 36px 0;
}
.story-image {
  margin: 56px auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-image img { display: block; width: 100%; height: auto; }
.story-image figcaption {
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--ink-3);
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 64px auto 0;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .25s ease, transform .25s ease;
}
.value-card:hover { border-color: var(--green-soft); transform: translateY(-3px); }
.value-card .value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-warmer);
  display: grid; place-items: center;
  margin-bottom: 16px;
  color: var(--green);
}
.value-card .value-icon svg { width: 22px; height: 22px; }
.value-card h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 480;
  margin: 0 0 6px;
}
.value-card p { font-size: 0.92rem; color: var(--ink-2); margin: 0; }

/* =========================================================
   SHOP / PRODUCT card
   ========================================================= */
.shop-hero { padding: clamp(60px, 9vw, 110px) 0 24px; text-align: center; }
.shop-hero h1 { max-width: 14ch; margin: 0 auto 16px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 0 auto;
  max-width: 920px;
}
.products-grid--single { grid-template-columns: minmax(0, 720px); justify-content: center; }
@media (max-width: 800px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-media { display: block; }
.product-card-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--bg-warmer);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card-body .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 520;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.product-card-body h3 a { color: var(--ink); }
.product-card-body h3 a:hover { color: var(--green); }
.product-card-body .btn { margin-top: 14px; }
.product-card-details-link {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.product-card-details-link:hover { color: var(--green); }

/* PDP */
.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(40px, 6vw, 72px) 0;
  align-items: start;
}
@media (max-width: 900px) { .pdp-grid { grid-template-columns: 1fr; } }

.pdp-images { position: sticky; top: 96px; }
@media (max-width: 900px) { .pdp-images { position: static; } }

.pdp-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.pdp-main img { width: 100%; height: auto; display: block; aspect-ratio: 1/1; object-fit: cover; }
.pdp-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.pdp-thumbnails .thumb {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: 0;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  transition: border-color .2s ease, transform .2s ease;
}
.pdp-thumbnails .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbnails .thumb.active { border-color: var(--green); }
.pdp-thumbnails .thumb:hover { border-color: var(--green-soft); }

.pdp-info .launch-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-warmer);
  color: var(--green);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pdp-info .launch-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}
.pdp-info h1 { font-size: clamp(2.2rem, 1.6rem + 2.5vw, 3.2rem); margin-bottom: 10px; }
.pdp-info .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 520;
  margin: 8px 0 24px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.pdp-info .description { font-size: 1.05rem; color: var(--ink-2); margin-bottom: 24px; }

.callout-box {
  background: var(--bg-warmer);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 0 0 28px;
  font-size: 0.95rem;
  color: var(--ink);
}

.contents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 14px 0 28px;
}
@media (max-width: 480px) { .contents-grid { grid-template-columns: 1fr; } }
.contents-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.93rem; color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px dotted var(--line-soft);
}
.contents-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.packaging-note {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 22px;
  margin: 24px 0 28px;
}
.packaging-note h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 480;
  margin: 0 0 6px;
  color: var(--ink);
}
.packaging-note p { font-size: 0.93rem; color: var(--ink-2); margin: 0; }

.contents-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .contents-showcase { grid-template-columns: 1fr; } }
.contents-showcase img { border-radius: var(--r-xl); box-shadow: var(--shadow-md); }

/* =========================================================
   Utilities
   ========================================================= */
.divider {
  border: 0; height: 1px; background: var(--line-soft);
  max-width: var(--max-narrow); margin: 0 auto;
}
.spacer-md { height: 56px; }

/* Reveal-on-scroll (JS adds .reveal then .reveal-in) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media print { .nav, .footer, .strip { display: none; } }
