/* ============================================================
   CALMURO — Serene Clarity · Soft Wellness Editorial (MY)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Outfit:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:       #F6F3ED;
  --ivory-deep:  #EDE8DF;
  --white:       #FFFFFF;
  --teal:        #2A6B6B;
  --teal-dark:   #1A4545;
  --teal-light:  #3D8585;
  --teal-pale:   rgba(42,107,107,.10);
  --teal-glow:   rgba(42,107,107,.18);
  --coral:       #D4846A;
  --coral-dark:  #B86A52;
  --coral-pale:  rgba(212,132,106,.14);
  --ink:         #1C2B2B;
  --muted:       #5A6B6B;
  --dim:         #8A9999;
  --line:        rgba(42,107,107,.14);
  --line-strong: rgba(42,107,107,.24);
  --warn:        #C4883A;
  --warn-pale:   rgba(196,136,58,.10);

  --green:       var(--teal);
  --green-mid:   var(--teal-light);
  --green-pale:  var(--teal-pale);
  --dark:        var(--muted);
  --mid:         var(--dim);
  --text:        var(--ink);
  --black:       var(--ink);
  --surface:     var(--white);
  --surface-2:   var(--ivory);
  --surface-3:   var(--ivory-deep);
  --charcoal:    var(--ink);
  --border:      var(--line);

  --shadow-soft: 0 8px 32px rgba(42,107,107,.08);
  --shadow-card: 0 4px 24px rgba(28,43,43,.06);
  --shadow-lift: 0 16px 48px rgba(42,107,107,.12);
  --max-w:       1180px;
  --display:     'Fraunces', Georgia, serif;
  --sans:        'Outfit', system-ui, sans-serif;
  --r:           16px;
  --r-sm:        10px;
  --r-lg:        24px;
  --r-pill:      999px;
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color .2s, opacity .2s; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.sec { padding: 88px 0; }
.sec-sm { padding: 52px 0; }

h1, h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  text-transform: none;
}
h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: normal; color: var(--teal); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.lead { font-size: 1.05rem; line-height: 1.7; color: var(--muted); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-green, .btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: 0 4px 16px rgba(212,132,106,.30);
}
.btn-green:hover, .btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  box-shadow: 0 8px 24px rgba(212,132,106,.35);
}

.btn-dark {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px var(--teal-glow);
}
.btn-dark:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  background: var(--teal-pale);
  border-color: var(--teal);
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--teal);
  padding: 0;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: none;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { transform: none; opacity: .75; box-shadow: none; }

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-white:hover { background: var(--ivory); }

.nav-btn { padding: 10px 20px; font-size: .82rem; }

/* ── Ad disclosure ───────────────────────────────────────── */
.ad-disclosure {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--ivory-deep);
  border-bottom: 1px solid var(--line);
  padding: 7px 20px;
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
}
.ad-disclosure strong { color: var(--muted); }
.ad-disclosure-sep { margin: 0 6px; opacity: .5; }

/* ── Scroll progress ─────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 32px; left: 0;
  height: 3px;
  width: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  border-radius: 0 2px 2px 0;
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 48px);
  max-width: 920px;
  transition: top .3s, box-shadow .3s;
}
.site-header.solid { top: 36px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 20px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
}
.site-header.solid .header-inner {
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-lift);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
}
.logo span { color: var(--coral); }

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
}
.main-nav a:hover { color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  margin-top: 8px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--teal); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding-top: 120px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, var(--teal-pale) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--coral-pale) 0%, transparent 70%);
  pointer-events: none;
}

.hero-calm {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 28px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 em { color: var(--coral); }
.hero .lead { max-width: 480px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-calm-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--white);
  border: 1px solid var(--line);
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero-frame-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--coral);
  border-radius: 50%;
  opacity: .25;
  z-index: -1;
}

.hero-badges {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 12px 20px;
  font-size: .82rem;
  color: var(--muted);
  box-shadow: var(--shadow-card);
}
.hero-badge strong {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}

.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: -1px;
}
.wave-divider svg { width: 100%; height: 48px; }

/* Legacy hero classes hidden */
.hero-noir-grid, .hero-stats-bar, .hero-inner, .hero-left, .hero-right,
.hero-bg, .hero-overlay, .hero-numbers, .hero-num-item,
.hero-right-badge, .hero-pill { display: none !important; }

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: transform .2s, box-shadow .2s;
}
.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.trust-item svg {
  width: 18px;
  stroke: var(--teal);
  fill: none;
  flex-shrink: 0;
}
.trust-item span {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Callout ─────────────────────────────────────────────── */
.callout-strip {
  background: var(--teal-dark);
  padding: 64px 0;
  position: relative;
}
.callout-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.callout-inner blockquote {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 16px;
}
.callout-cite {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.55);
}

/* ── Foods bento ─────────────────────────────────────────── */
.ingredients-sec {
  background: var(--ivory);
}
.ingredients-sec .sec-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: end;
}
.ingredients-sec .sec-head p { margin: 0; }

.foods-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.bento-large { grid-column: span 3; }
.bento-card:not(.bento-large) { grid-column: span 2; }

.bento-img {
  overflow: hidden;
  flex-shrink: 0;
}
.bento-large .bento-img { height: 220px; }
.bento-card:not(.bento-large) .bento-img { height: 160px; }
.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.bento-card:hover .bento-img img { transform: scale(1.05); }

.bento-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bento-num {
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.bento-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.bento-body .lead {
  font-size: .88rem;
  margin-bottom: 16px;
  flex: 1;
}
.ingr-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.ingr-pill {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* Legacy ingr rows hidden if present */
.ingr-list, .ingr-editorial, .ingr-row, .ingr-grid { display: none !important; }

/* ── Steps ───────────────────────────────────────────────── */
.steps-sec {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps-head { margin-bottom: 40px; text-align: center; }
.steps-head .label { justify-content: center; }
.steps-head .label::before { display: none; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: left;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.step-num {
  display: block;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-icon svg { width: 22px; stroke: var(--teal); fill: none; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { font-size: .88rem; line-height: 1.7; }

/* ── Stat callout ────────────────────────────────────────── */
.stat-callout {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 56px 0;
}
.stat-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-callout-main { display: flex; align-items: center; gap: 28px; }
.stat-big {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: rgba(255,255,255,.15);
  line-height: 1;
}
.stat-callout-text h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.stat-callout-text p {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  max-width: 420px;
  margin: 0;
}

/* ── Product ─────────────────────────────────────────────── */
.product-sec { background: var(--ivory); }

.product-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.product-photo {
  position: relative;
  background: linear-gradient(160deg, var(--teal-pale) 0%, var(--ivory) 100%);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-photo-inner {
  border-radius: var(--r);
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 320px;
}
.product-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.product-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--coral);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--r);
  box-shadow: 0 4px 16px rgba(212,132,106,.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.product-badge strong {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}
.product-badge span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.product-text { padding: 48px; }
.product-text h2 { margin-bottom: 16px; }
.product-text .lead { margin-bottom: 16px; }
.product-text > p { margin-bottom: 24px; }
.product-sec .label { color: var(--teal); }

.ingr-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.ingr-tags a {
  font-size: .75rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid transparent;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background .2s, border-color .2s;
}
.ingr-tags a:hover {
  background: var(--white);
  border-color: var(--teal);
}

.product-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.proof-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-card-icon svg { width: 18px; stroke: var(--teal); fill: none; }
.proof-card-text strong {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.proof-card-text span { font-size: .72rem; color: var(--dim); }

.feat-list { margin-bottom: 24px; }
.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.feat-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.product-note {
  font-size: .82rem;
  color: var(--muted);
  border-left: 4px solid var(--warn);
  background: var(--warn-pale);
  padding: 16px 18px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 24px;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-sec { background: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-aside {
  background: var(--teal-dark);
  padding: 48px;
  color: var(--white);
}
.contact-aside .label { color: rgba(255,255,255,.7); }
.contact-aside .label::before { background: var(--coral); }
.contact-aside h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.5rem, 3vw, 2rem); }
.contact-aside .lead { color: rgba(255,255,255,.75); margin-bottom: 32px; }

.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info-list li:first-child { border-top: 1px solid rgba(255,255,255,.12); }

.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; stroke: var(--coral); fill: none; }
.ci-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.ci-val { font-size: .92rem; color: var(--white); }
.ci-val a { color: var(--white); }
.ci-val a:hover { color: var(--coral); }

.contact-form-box {
  background: var(--ivory);
  padding: 48px;
}
.contact-form-box h3 { margin-bottom: 6px; }
.contact-form-box .sub { font-size: .85rem; color: var(--dim); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: .95rem;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-pale);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit { width: 100%; justify-content: center; }
.form-note { font-size: .75rem; color: var(--dim); margin-top: 14px; text-align: center; }
.form-note a { color: var(--teal); font-weight: 600; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--teal-pale);
  border: 1px solid var(--teal);
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { background: var(--ivory); }
.faq-head { margin-bottom: 36px; text-align: center; }
.faq-head .label { justify-content: center; }
.faq-head .label::before { display: none; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open {
  box-shadow: var(--shadow-soft);
  border-color: var(--teal-pale);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-question:hover { color: var(--teal); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .25s;
}
.faq-icon svg { width: 14px; stroke: var(--muted); fill: none; }
.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon svg { stroke: var(--white); }
.faq-item.open .faq-question { color: var(--teal); }

.faq-answer { display: none; padding: 0 24px 20px; }
.faq-answer p { font-size: .9rem; line-height: 1.75; margin: 0; }
.faq-item.open .faq-answer { display: block; }

/* ── Disclaimer ──────────────────────────────────────────── */
.disclaimer {
  background: var(--ivory-deep);
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.disclaimer p {
  font-size: .78rem;
  line-height: 1.75;
  color: var(--dim);
  text-align: center;
  margin: 0;
  max-width: 900px;
  margin-inline: auto;
}
.disclaimer strong { color: var(--ink); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--teal-dark);
  padding: 64px 0 36px;
  color: rgba(255,255,255,.75);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot-brand .logo { color: var(--white); margin-bottom: 16px; }
.foot-brand .logo-mark { background: rgba(255,255,255,.15); }
.foot-brand p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; }

.foot-col h5 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: .85rem; color: rgba(255,255,255,.6); }
.foot-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: var(--coral); }

/* ── Legal pages ─────────────────────────────────────────── */
.pg-hero {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 140px 0 56px;
  margin-top: 0;
}
.pg-hero .crumb {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.pg-hero .crumb a { color: rgba(255,255,255,.75); }
.pg-hero .crumb a:hover { color: var(--white); }
.pg-hero h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 12px; }
.pg-hero p { color: rgba(255,255,255,.7); margin: 0; }
.pg-bar {
  width: 48px;
  height: 4px;
  background: var(--coral);
  margin-top: 24px;
  border-radius: 2px;
}

.content-sec { padding: 64px 0 96px; background: var(--ivory); }
.content-body { max-width: 720px; }
.content-body h2 {
  font-size: 1.2rem;
  margin: 40px 0 14px;
  color: var(--ink);
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { margin-bottom: 1rem; }
.content-body ul { margin: 0 0 1rem 20px; }
.content-body li { margin-bottom: 8px; color: var(--muted); }
.content-body a { color: var(--teal); font-weight: 500; }
.content-body a:hover { color: var(--coral); }

.info-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-top: 40px;
  box-shadow: var(--shadow-card);
}
.info-box h3 { margin-bottom: 14px; font-size: 1rem; }
.info-box p { margin-bottom: 8px; font-size: .9rem; }
.info-box a { color: var(--teal); }

.page-hero, .contact-info-card, .contact-page-grid { display: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-calm { grid-template-columns: 1fr; padding-top: 32px; }
  .hero-calm-visual { max-width: 440px; margin: 0 auto; }
  .foods-bento { grid-template-columns: repeat(2, 1fr); }
  .bento-large, .bento-card:not(.bento-large) { grid-column: span 1; }
  .product-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .ingredients-sec .sec-head { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .product-proof { grid-template-columns: 1fr; }
  .stat-callout-inner { flex-direction: column; align-items: flex-start; }
  .stat-callout-main { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .site-header { width: calc(100% - 32px); top: 36px; }
  .header-inner { padding: 10px 16px; border-radius: var(--r-lg); }
  .hero-calm { padding: 24px 20px 32px; }
  .hero-badges { padding: 0 20px 40px; }
  .sec { padding: 64px 0; }
  .foods-bento { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box, .contact-aside, .product-text { padding: 28px 20px; }
  .product-photo { padding: 28px 20px; }
  .scroll-progress { top: 32px; }
  .pg-hero { padding-top: 120px; }
}

@media (max-width: 480px) {
  .ad-disclosure .ad-disclosure-sub { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-badge { flex: 1 1 calc(50% - 6px); justify-content: center; }
}
