/*
Theme Name: Petoome
Theme URI: https://petoome.my
Author: Petoome
Description: Custom theme for the Petoome cat-food brand. Editorial, navy + cream, serif-led.
Version: 1.2.0
Requires at least: 6.8
Tested up to: 7.0.2
Requires PHP: 8.0
Text Domain: petoome
*/

:root {
  /* Color tokens */
  --c-navy: #0E2A47;
  --c-cream: #F6F2EA;
  --c-gold: #C9A24A;
  --c-text-on-cream: rgba(14, 42, 71, 0.75);
  --c-text-on-navy: rgba(246, 242, 234, 0.7);
  --c-border-on-cream: rgba(14, 42, 71, 0.1);
  --c-border-on-navy: rgba(246, 242, 234, 0.1);

  /* Typography */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing */
  --pad-x-desktop: 40px;
  --pad-x-mobile: 24px;
  --pad-y-desktop: 120px;
  --pad-y-mobile: 72px;

  /* Radii */
  --r-card: 4px;
  --r-button: 2px;

  /* Easing */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Motion */
  --t-fast: 200ms;
  --t-med: 400ms;
  --t-slow: 800ms;
}

:root {
  --navy: #0E2A47;
  --navy-2: #1A3A5C;
  --cream: #F6F2EA;
  --cream-2: #EFE8D9;
  --ink: #1A1A1A;
  --mute: #5A6470;
  --line: #E1D9C5;
  --accent: #C9A24A;
  --max: 1200px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 0.4em;
}

h1, .h1 { font-size: clamp(40px, 6vw, 72px); }
h2, .h2 { font-size: clamp(30px, 4vw, 48px); }
h3, .h3 { font-size: clamp(22px, 2.5vw, 28px); }

p { margin: 0 0 1em; }

a { color: var(--navy); text-decoration: none; border-bottom: 1px solid currentColor; }
a:hover { opacity: 0.7; }

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

.container { width: 100%; max-width: none; margin: 0 auto; padding: 0 24px; }
@media (min-width: 900px) { .container { padding: 0 40px; } }

.btn {
  display: inline-block;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--cream);
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.15s ease;
  text-decoration: none;
}
.btn:hover { opacity: 0.85; border-color: var(--navy); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { color: var(--navy); background: var(--cream-2); }

.divider { height: 1px; background: var(--line); border: 0; margin: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}

.muted { color: var(--mute); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(120%) blur(6px);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
}
.site-header__brand { border: 0; display: flex; align-items: center; }
.site-header__logo { display: block; height: 30px; width: auto; }
.site-header__logo--wordmark { height: 26px; }
.site-nav__list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.site-nav__list a { color: var(--navy); font-size: 14px; border: 0; }
.site-nav__list a:hover { opacity: 0.6; }
@media (max-width: 900px) { .site-nav { display: none; } }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.site-header__icon {
  background: transparent; border: 0; cursor: pointer; color: var(--navy);
  padding: 6px; position: relative; line-height: 0;
}
.site-header__icon:hover { opacity: 0.7; }
.cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--navy); color: var(--cream);
  font-size: 10px; min-width: 16px; height: 16px;
  border-radius: 8px; padding: 0 4px; display: inline-flex; align-items: center; justify-content: center;
}

/* ===================== CART DRAWER ===================== */
.cart-drawer { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.cart-drawer[aria-hidden="false"] { pointer-events: auto; }
.cart-drawer__backdrop {
  position: absolute; inset: 0; background: rgba(14,42,71,0.4);
  opacity: 0; transition: opacity 0.2s ease;
}
.cart-drawer[aria-hidden="false"] .cart-drawer__backdrop { opacity: 1; }
.cart-drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 360px; max-width: 100%;
  background: var(--cream); padding: 24px;
  transform: translateX(100%); transition: transform 0.25s ease;
  display: flex; flex-direction: column; gap: 16px;
  border-left: 1px solid var(--line);
}
.cart-drawer[aria-hidden="false"] .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: center; }
.cart-drawer__head h3 { margin: 0; font-size: 24px; }
.cart-drawer__close { background: transparent; border: 0; font-size: 28px; cursor: pointer; color: var(--navy); }
.cart-drawer__body { flex: 1; overflow-y: auto; }
.cart-drawer__row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }

/* ===================== HERO SLIDER ===================== */
.hero-slider {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) { .hero-slider { min-height: 620px; } }
.hero-slider__viewport { position: relative; width: 100%; min-height: inherit; }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .9s cubic-bezier(.65,.05,.36,1);
  pointer-events: none;
  will-change: opacity;
}
.slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.slide__bg {
  position: absolute; inset: 0; z-index: 0;
  transform: scale(1.04);
  transition: transform 8s linear;
}
.slide.is-active .slide__bg { transform: scale(1); }

.slide__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0 120px;
  width: 100%;
}
.slide__inner--light { color: var(--navy); }

.slide__copy { max-width: 560px; }
.slide__copy .eyebrow { margin-bottom: 20px; }
.slide__copy h1,
.slide__copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: inherit;
}
.slide__copy h1 em,
.slide__copy h2 em {
  font-style: italic;
  font-weight: 400;
  color: inherit;
  opacity: 0.85;
}
.slide__lede {
  font-size: 18px;
  line-height: 1.6;
  color: inherit;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 0 32px;
}
.slide__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 520px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats b {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: inherit;
  line-height: 1;
}
.hero-stats span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  color: inherit;
}

.slide__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.slide__product {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.slide__product img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
  position: relative;
  z-index: 2;
}
.slide__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(201, 162, 74, 0.18) 0%, rgba(201, 162, 74, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* Care cards (slide 2) */
.slide__art--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 420px;
  margin-left: auto;
}
.care-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px 28px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.care-card:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: 0 12px 30px -16px rgba(14,42,71,0.18);
}
.care-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: var(--cream);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.care-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.care-card p { margin: 0; color: var(--mute); font-size: 14px; line-height: 1.5; }

/* Retailers (slide 3) */
.slide__retailers {
  display: grid;
  gap: 12px;
  max-width: 420px;
  margin-left: auto;
  width: 100%;
}
.slide-retailer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  color: var(--cream);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.slide-retailer:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  transform: translateX(-2px);
}
.slide-retailer__name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
}
.slide-retailer__meta {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(246,242,234,0.6);
}

/* Controls */
.hero-slider__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 24px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 100%);
}
.hero-slider__controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-slider__dots { display: flex; gap: 8px; }
.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease;
  border-radius: 1px;
}
.hero-dot.is-active { background: var(--cream); }
.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-slider__nav { display: flex; gap: 8px; }
.hero-arrow {
  width: 40px; height: 40px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.hero-arrow:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.hero-arrow:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }

.hero-slider__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 4;
}
.hero-slider__progress-bar {
  height: 100%;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.eyebrow--light { color: rgba(246,242,234,0.7); }
.btn--ghost-light { color: var(--cream); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); color: var(--cream); border-color: var(--cream); }

@media (max-width: 900px) {
  .slide__inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 0 96px; align-content: center; justify-items: start; }
  .slide__art { min-height: 280px; }
  .slide__art--grid { margin: 0; }
  .slide__retailers { margin: 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-stats b { font-size: 22px; }
}
@media (max-width: 600px) {
  .hero-slider { min-height: 580px; }
  .slide__art { min-height: 260px; }
  .care-card { padding: 16px 20px; grid-template-columns: 36px 1fr; gap: 12px; }
  .care-card h4 { font-size: 18px; }
  .care-card__icon { width: 36px; height: 36px; font-size: 14px; }
}

/* ===================== ANIMATIONS (CSS-driven, GPU-friendly) ===================== */
/* Only animates transform + opacity — never triggers layout/paint on the main thread. */
/* Progressive enhancement: content is visible by default; JS may enhance with subtle entrance effects. */
[data-reveal], [data-reveal-art] {
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
[data-reveal-art] { transition-duration: 1s; }
[data-reveal-split] { /* outer H1 stays visible; the inner line spans animate via GSAP */ }

/* When JS has marked html.js-ready, hide reveal targets so they can fade in */
.js-ready [data-reveal]:not(.is-in) { opacity: 0; transform: translateY(24px); }
.js-ready [data-reveal-art]:not(.is-in) { opacity: 0; transform: translateY(40px) scale(0.96); }

.is-in[data-reveal],
.is-in[data-reveal-art] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Children of stagger containers inherit a delay */
[data-anim="stagger"] > * { transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); transition-delay: var(--reveal-delay, 0ms); }
[data-anim="reveal"] { transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.js-ready [data-anim="reveal"]:not(.is-in),
.js-ready [data-anim="stagger"]:not(.is-in) > * { opacity: 0; transform: translateY(24px); }
.is-in[data-anim="reveal"] { opacity: 1; transform: translateY(0); }
.is-in[data-anim="stagger"] > * { opacity: 1; transform: translateY(0); }

/* Hero split text — line containers mask the sliding inner spans.
   The inner span is hidden by default (set by JS at page load) and slides up
   into view when .is-in is added. If JS never runs, JS-less users see the H1
   normally because we set the initial offset via inline style (not CSS). */
.split-line { display: block; overflow: hidden; padding: 0.02em 0; }
.split-inner {
  display: block;
  will-change: transform;
  transform: translateY(0);
}
/* The transition only runs when .is-in is added, so the initial hide is instant.
   We need !important because JS sets the initial offset via inline style. */
.split-inner.is-in {
  transform: translateY(0) !important;
  transition: transform 1s cubic-bezier(.16,1,.3,1);
}

/* Reduced motion: respect user preference, just show everything */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-art], [data-reveal-split],
  [data-anim="reveal"], [data-anim="stagger"] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .split-inner { transform: none !important; }
  .slide__bg { transform: none !important; }
}

/* ===================== SECTION FRAME (proper generous padding) ===================== */
.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 900px) { .section { padding: 72px 0; } }

.section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}
.section__head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
  max-width: 720px;
}
.section__head h2 em { font-style: italic; font-weight: 400; opacity: 0.85; }
.section__head p { color: var(--mute); margin: 16px 0 0; max-width: 560px; font-size: 16px; }
.section__head__aside { text-align: right; }
.section__head__aside a { font-size: 13px; letter-spacing: 0.5px; }

.section--dark { background: var(--navy); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .eyebrow { color: rgba(246,242,234,0.6); }
.section--dark .muted { color: rgba(246,242,234,0.7); }

.section--cream { background: var(--cream-2); }

/* ===================== PRODUCT SPOTLIGHT ===================== */
.spotlight { padding: 64px 0; }
.spotlight__card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 32px; border: 1px solid var(--line); border-radius: 4px; background: #fff; margin-top: 32px; color: inherit; }
.spotlight__card:hover { opacity: 1; }
.spotlight__card img { width: 100%; height: auto; }
.spotlight__price { color: var(--navy); font-size: 22px; font-weight: 500; margin: 8px 0 16px; }
@media (max-width: 768px) { .spotlight__card { grid-template-columns: 1fr; padding: 20px; } }

/* ===================== TRUST ===================== */
.trust { padding: 80px 0; text-align: center; }
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 32px; }
.trust__icon { color: var(--accent); font-size: 22px; }
.trust h3 { font-size: 20px; margin: 12px 0 8px; }
.trust p { color: var(--mute); font-size: 14px; }
@media (max-width: 768px) { .trust__grid { grid-template-columns: 1fr; gap: 24px; } }

/* ===================== RANGE ===================== */
.range { padding: 64px 0; }
.range > .range-grid { margin-top: 32px; }
.range .btn { display: inline-flex; }

/* ===================== TESTIMONIALS ===================== */
.testimonials { padding: 80px 0; background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonials > h2 { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.testimonials > .eyebrow { display: block; text-align: center; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 32px; }
.t-card { margin: 0; }
.t-card blockquote { font-family: var(--serif); font-size: 20px; color: var(--navy); margin: 0 0 16px; line-height: 1.4; }
.t-card figcaption { display: flex; flex-direction: column; font-size: 13px; }
@media (max-width: 768px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ===================== ACCORDION ===================== */
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 24px 0; background: transparent; border: 0;
  font-family: var(--serif); font-size: 22px; color: var(--navy);
  cursor: pointer; text-align: left;
}
.accordion__icon { font-size: 20px; transition: transform 0.2s ease; line-height: 1; }
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.accordion__item.is-open .accordion__body { max-height: 800px; }
.accordion__body p { padding: 0 0 24px; color: var(--ink); }

/* ===================== NEWSLETTER ===================== */
.newsletter { position: relative; padding: 96px 24px; background: var(--navy); color: var(--cream); text-align: center; margin: 80px 24px 0; border-radius: 4px; }
.newsletter h2 { color: var(--cream); }
.newsletter .muted { color: rgba(246,242,234,0.7); }
.newsletter__form { display: inline-flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.newsletter__form input { padding: 14px 16px; border: 1px solid rgba(246,242,234,0.3); background: transparent; color: var(--cream); border-radius: 2px; min-width: 280px; font-family: var(--sans); }
.newsletter__form input::placeholder { color: rgba(246,242,234,0.6); }
.newsletter__form .btn { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.newsletter__form .btn:hover { color: var(--navy); }
.newsletter__mark { position: absolute; right: 32px; top: 32px; height: 40px; opacity: 0.4; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--cream-2); padding: 80px 0 32px; margin-top: 120px; border-top: 1px solid var(--line); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.site-footer__logo { height: 28px; }
.site-footer__heading { font-family: var(--serif); font-size: 18px; color: var(--navy); margin: 0 0 16px; }
.site-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer__list--legal { margin-top: 8px; }
.site-footer__list a { border: 0; color: var(--ink); font-size: 14px; }
.site-footer__newsletter { display: flex; justify-content: space-between; align-items: center; padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 64px auto 32px; gap: 24px; }
.site-footer__newsletter p { margin: 0; font-family: var(--serif); font-size: 22px; color: var(--navy); }
.site-footer__form { display: flex; gap: 8px; }
.site-footer__form input { padding: 12px 14px; border: 1px solid var(--line); background: var(--cream); border-radius: 2px; font-family: var(--sans); min-width: 240px; }
.site-footer__bottom { display: flex; justify-content: space-between; font-size: 12px; color: var(--mute); }
.site-footer__bottom > span { margin-top: 40px; }
.site-footer__bottom--centered { justify-content: center; text-align: center; }
.site-footer__bottom a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: color .2s var(--ease); }
.site-footer__bottom a:hover { color: var(--c-gold); }
@media (max-width: 768px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__newsletter { flex-direction: column; align-items: flex-start; }
  .site-footer__form { width: 100%; }
  .site-footer__form input { flex: 1; min-width: 0; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }
}

/* ===================== SHOP ===================== */
.shop__head { padding: 32px 0 48px; text-align: center; }
.shop__grid { display: grid; grid-template-columns: 220px 1fr; gap: 48px; }
.shop__chips { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; }
.shop__products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 24px !important; }
.woocommerce ul.products li.product { background: #fff !important; border: 1px solid var(--line) !important; padding: 16px !important; text-align: left !important; float: none !important; width: auto !important; margin: 0 !important; }
.woocommerce ul.products li.product img { margin-bottom: 12px !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--serif) !important; color: var(--navy) !important; font-size: 18px !important; padding: 0 !important; }
.woocommerce ul.products li.product .price { color: var(--navy) !important; }

/* ===================== CHECKOUT FIELDS ===================== */
.woocommerce-checkout form.checkout .form-row,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input,
.woocommerce-checkout .wc-block-components-form .wc-block-components-select,
.woocommerce-checkout .wc-block-components-form .wc-block-components-select-input,
.woocommerce-checkout .wc-block-checkout__form .form-row {
  margin-bottom: 16px !important;
}
/* Match the EXACT WC selectors that set background-color: #fff on inputs.
   These have no class on the input element — only the parent + element + type. */
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="email"],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="number"],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="tel"],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="text"],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input textarea,
.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select,
.woocommerce-checkout form.checkout .form-row input.input-text,
.woocommerce-checkout form.checkout .form-row textarea,
.woocommerce-checkout form.checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection,
.woocommerce-checkout .select2-container .select2-selection--single {
  background-color: rgba(14, 42, 71, 0.08) !important;
  border-color: rgba(14, 42, 71, 0.18) !important;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="email"]:focus,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="number"]:focus,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="tel"]:focus,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type="text"]:focus,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input textarea:focus,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input:focus-within,
.woocommerce-checkout .wc-block-components-form .wc-block-components-select:focus-within,
.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select:focus,
.woocommerce-checkout form.checkout .form-row input.input-text:focus,
.woocommerce-checkout form.checkout .form-row textarea:focus,
.woocommerce-checkout form.checkout .form-row select:focus,
.woocommerce-checkout .select2-container--focus .select2-selection,
.woocommerce-checkout .select2-container--open .select2-selection {
  background-color: rgba(14, 42, 71, 0.12) !important;
  border-color: var(--navy) !important;
}
@media (max-width: 900px) { .shop__grid { grid-template-columns: 1fr; } .shop__products, .woocommerce ul.products { grid-template-columns: 1fr 1fr !important; } }

/* ===================== PDP ===================== */
.pdp__crumbs { color: var(--mute); font-size: 13px; margin-bottom: 24px; }
.pdp__crumbs a { border: 0; color: var(--mute); }
.pdp { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
.pdp__gallery img { width: 100%; height: auto; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.pdp__thumbs img { cursor: pointer; border: 1px solid transparent; }
.pdp__thumbs img:hover { border-color: var(--navy); }
.pdp__price { color: var(--navy); font-size: 24px; font-weight: 500; }
.pdp__badges { list-style: none; padding: 0; margin: 16px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.pdp__badges li { font-size: 12px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 99px; color: var(--navy); }
.pdp__short { color: var(--mute); }
.pdp__buy { display: flex; gap: 12px; margin-top: 16px; }
.pdp__tabs { padding: 64px 0; margin: 0 auto; }
.pdp__tabs h2 { margin-top: 32px; }
.pdp__tabs table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.pdp__tabs th, .pdp__tabs td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.pdp__tabs th { font-family: var(--serif); color: var(--navy); font-weight: 500; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }

/* Note: `.page` (unscoped) was removed because WordPress's `body_class()`
   adds the `page` class to <body> on every singular page — which would push
   the entire page down by 96px. We scope content-page styling to `main.page`
   so it only matches <main class="page"> wrappers in page.php, not <body>. */
main.page { padding: 96px 0 64px; }
main.page h2 { font-size: 28px; margin-top: 32px; }
main.page .page__body { font-size: 17px; line-height: 1.7; color: var(--ink); }
main.page .page__body a { color: var(--navy); }

.retailers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.retailer { border: 1px solid var(--line); padding: 24px; background: #fff; color: var(--ink); transition: border-color .15s ease; }
.retailer:hover { border-color: var(--navy); }
.retailer h3 { font-family: var(--serif); font-size: 22px; color: var(--navy); margin: 0 0 8px; }
.retailer p { color: var(--mute); font-size: 15px; margin: 0 0 16px; }
.retailer__link { font-size: 13px; letter-spacing: 0.5px; color: var(--navy); border-bottom: 1px solid currentColor; }
.retailer__link:hover { opacity: 0.7; }
@media (max-width: 768px) { .retailers { grid-template-columns: 1fr; } }

.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 2px; font-family: var(--sans); font-size: 15px; }

@media (max-width: 768px) {
  .divider { margin: 40px 0; }
  .hero { padding: 48px 0 64px; }
  .newsletter { margin: 48px 16px 0; padding: 64px 20px; }
}

/* ===================== BOTTOM NAV (mobile-app style) ===================== */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px -12px rgba(14, 42, 71, 0.18);
  backdrop-filter: saturate(120%) blur(10px);
}
.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 4px;
  color: var(--mute);
  text-decoration: none;
  border: 0;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color .15s ease;
}
.bottom-nav__item:hover { opacity: 1; color: var(--navy); }
.bottom-nav__item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
  margin-bottom: 2px;
  transition: transform .2s ease;
}
@media (min-width: 900px) {
  .bottom-nav__item svg { width: 24px; height: 24px; }
}
.bottom-nav__item.is-active {
  color: var(--navy);
  position: relative;
}
.bottom-nav__item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transform: translateX(-50%);
  border-radius: 0 0 2px 2px;
}
.bottom-nav__item.is-active svg { transform: scale(1.05); }

/* Reserve space at the bottom of the page so the footer isn't hidden under the
   fixed bottom-nav. Use a CSS variable so the height stays in sync with the nav. */
:root { --bottom-nav-height: 72px; }
body { padding-bottom: var(--bottom-nav-height); padding-top: 0; }
/* iOS safe-area inset for devices with a home indicator */
body { padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom)); }
@media (min-width: 900px) {
  .bottom-nav__item { font-size: 11px; }
}

/* WordPress admin bar: sticky header should sit BELOW it, not behind it.
   Without this, the header is hidden under the 32px admin bar when logged in. */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ===================== UTILITIES ===================== */
.link-arrow {
  display: inline-block;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  padding-bottom: 1px;
  transition: opacity .2s ease;
}
.link-arrow:hover { opacity: 0.65; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 12px;
}
.muted { color: var(--mute); }

/* ===================== TRUST STRIP ===================== */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip__row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust-strip__row li { display: flex; flex-direction: column; gap: 2px; padding: 4px 0; }
.trust-strip__row b {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.trust-strip__row span {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--mute);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .trust-strip__row { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
}
@media (max-width: 480px) {
  .trust-strip__row { grid-template-columns: 1fr; gap: 12px; }
}

/* ===================== SPOTLIGHT CARD ===================== */
.spotlight__card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.spotlight__card:hover {
  border-color: var(--navy);
  box-shadow: 0 30px 60px -30px rgba(14,42,71,0.25);
  transform: translateY(-2px);
}
.spotlight__media {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  min-height: 480px;
}
.spotlight__media img { width: 100%; max-width: 380px; height: auto; display: block; }
.spotlight__body { padding: 56px 56px; display: flex; flex-direction: column; gap: 12px; }
.spotlight__body h3 { font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--navy); letter-spacing: -0.01em; line-height: 1.1; margin: 0; }
.spotlight__body p { color: var(--ink); font-size: 16px; line-height: 1.65; margin: 0; }
.spotlight__meta { display: flex; align-items: baseline; gap: 16px; margin-top: 8px; }
.spotlight__price { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--navy); }
.spotlight__cta { display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 16px; }
@media (max-width: 900px) {
  .spotlight__card { grid-template-columns: 1fr; }
  .spotlight__media { min-height: 320px; padding: 24px; }
  .spotlight__body { padding: 32px 28px; }
  .spotlight__body h3 { font-size: 26px; }
}

/* ===================== RANGE GRID ===================== */
.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.range-tile {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  background: #fff;
  padding: 40px 36px;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.range-tile:hover { border-color: var(--navy); transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(14,42,71,0.18); }
.range-tile--coming { background: transparent; border-style: dashed; }
.range-tile--coming:hover { transform: none; box-shadow: none; border-color: var(--mute); }
.range-tile__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid currentColor;
  padding: 4px 10px;
  border-radius: 99px;
  align-self: flex-start;
  margin-bottom: 8px;
}
.range-tile--coming .range-tile__tag { color: var(--mute); }
.range-tile h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
.range-tile--coming h3 { color: var(--mute); }
.range-tile p { color: var(--mute); font-size: 15px; line-height: 1.55; margin: 0; flex: 1; }
.range-tile .link-arrow { font-size: 13px; }
@media (max-width: 900px) {
  .range-grid { grid-template-columns: 1fr; }
  .range-tile { min-height: 0; padding: 28px 24px; }
}

/* ===================== STEPS ===================== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: steps;
}
.step {
  border: 1px solid var(--line);
  background: #fff;
  padding: 40px 36px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  transition: border-color .25s ease, transform .25s ease;
}
.step:hover { border-color: var(--navy); transform: translateY(-2px); }
.step__num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--cream-2);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: 24px;
  right: 32px;
  transition: color .25s ease;
}
.step:hover .step__num { color: var(--accent); }
.step h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
.step p { color: var(--mute); font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; padding: 28px 24px; }
  .step__num { font-size: 40px; top: 20px; right: 24px; }
}

/* ===================== TESTIMONIALS ===================== */
/* NOTE: .testimonials (section wrapper) and the centered header live
   earlier in the file under "===== TESTIMONIALS SECTION =====".
   The .t-carousel rules below define the modern sliding carousel. */
.t-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 880px;
}
.t-viewport {
  overflow: hidden;
  border-radius: 4px;
}
.t-track {
  display: flex;
  transition: transform .65s cubic-bezier(.6,.05,.2,1);
  will-change: transform;
}
.t-track .t-card { min-width: 100%; box-sizing: border-box; }

.t-card {
  position: relative;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 64px 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.t-card:hover { border-color: var(--navy); box-shadow: 0 30px 60px -30px rgba(14,42,71,0.18); }
.t-card__quote {
  position: absolute;
  top: 8px;
  left: 28px;
  font-family: var(--serif);
  font-size: 120px;
  line-height: 1;
  color: var(--c-gold);
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}
.t-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: -0.005em;
  font-weight: 400;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.t-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px;
}
.t-card__avatar {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.t-card__person { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.t-card__person b { color: var(--navy); font-weight: 500; font-size: 14px; }
.t-card__person span { color: var(--mute); font-size: 12px; letter-spacing: 0.4px; }

.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.t-arrow:hover { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.t-arrow:active { transform: translateY(-50%) scale(0.94); }
.t-arrow svg { width: 18px; height: 18px; display: block; }
.t-arrow--prev { left: -22px; }
.t-arrow--next { right: -22px; }

.t-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 28px;
}
.t-dots .t-dot {
  width: 24px; height: 2px;
  background: rgba(14,42,71,0.18);
  border: 0; padding: 0; cursor: pointer;
  transition: background .25s var(--ease);
}
.t-dots .t-dot.is-active { background: var(--c-gold); }

@media (max-width: 900px) {
  .t-card { padding: 48px 32px 32px; }
  .t-card blockquote { font-size: 20px; }
  .t-card__quote { font-size: 90px; top: 0; left: 18px; }
  .t-arrow--prev { left: 4px; }
  .t-arrow--next { right: 4px; }
  .t-arrow { width: 40px; height: 40px; background: rgba(255,255,255,0.85); }
}

/* ===================== ACCORDION ===================== */
.accordion {
  border-top: 1px solid var(--line);
}
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__head {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.005em;
}
.accordion__icon {
  font-family: var(--sans);
  font-size: 24px;
  color: var(--mute);
  transition: transform .3s ease, color .3s ease;
  font-weight: 300;
}
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); color: var(--navy); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion__item.is-open .accordion__body { max-height: 240px; }
.accordion__body p { color: var(--mute); font-size: 16px; line-height: 1.65; padding: 0 0 24px; max-width: 720px; }

/* ===================== CTA BLOCK ===================== */
.cta-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-block h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--cream);
}
.cta-block h2 em { font-style: italic; font-weight: 400; opacity: 0.85; }
.cta-block p { color: rgba(246,242,234,0.78); font-size: 17px; line-height: 1.6; margin: 0 auto 32px; max-width: 560px; }
.newsletter {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  padding: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(246,242,234,0.5); }
.newsletter button {
  background: var(--cream);
  color: var(--navy);
  border: 0;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.newsletter button:hover { background: var(--accent); color: var(--cream); }
@media (max-width: 600px) {
  .newsletter { flex-direction: column; padding: 16px; }
  .newsletter button { padding: 14px; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:hover { background: #1A3A5C; border-color: #1A3A5C; }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--cream); }
.btn--accent { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.btn--accent:hover { background: #b8913e; border-color: #b8913e; }

/* ===== Hero slider ===== */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--c-navy);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  display: flex;
  align-items: center;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide.is-active .hero-h1 { animation: heroKenBurns 6s var(--ease) both; }

.hero-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,71,0.15) 0%, rgba(14,42,71,0.45) 100%);
}
.hero-slide__inner {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x-mobile);
  color: var(--c-cream);
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-slide__inner { padding: 0 var(--pad-x-desktop); }
}

.hero-eyebrow {
  color: var(--c-gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--c-cream);
  margin-bottom: 2rem;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

.hero-dots {
  position: absolute;
  bottom: 6rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  z-index: 3;
}
.hero-dots .dot {
  width: 28px; height: 2px;
  background: rgba(246,242,234,0.3);
  border: 0; padding: 0; cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.hero-dots .dot.is-active { background: var(--c-gold); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(246, 242, 234, 0.12);
  border: 1px solid rgba(246, 242, 234, 0.3);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero-arrow:hover {
  background: rgba(201, 162, 74, 0.85);
  border-color: var(--accent);
  color: var(--navy);
}
.hero-arrow:active { transform: translateY(-50%) scale(0.94); }
.hero-arrow svg { width: 20px; height: 20px; display: block; }
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }
@media (max-width: 768px) {
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow--prev { left: 12px; }
  .hero-arrow--next { right: 12px; }
  .hero-arrow svg { width: 16px; height: 16px; }
}

.hero-scrollhint {
  position: absolute;
  bottom: 2rem; left: 0; right: 0;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--c-cream);
  opacity: 0.5;
  z-index: 3;
  margin: 0;
}
@media (max-width: 767px) { .hero-scrollhint { display: none; } }

/* ===== Press section ===== */
.section--press {
  background: var(--c-navy);
  color: var(--c-cream);
  padding: var(--pad-y-mobile) var(--pad-x-mobile);
  text-align: center;
}
@media (min-width: 768px) {
  .section--press { padding: var(--pad-y-desktop) var(--pad-x-desktop); }
}
.section--press .h2-serif--italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--c-cream);
  margin: 0.5rem 0 1.5rem;
}
.press-logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  padding: 0;
  margin: 0;
}
.press-logos li {
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--c-cream);
  opacity: 0.55;
}

/* ===== Founder section ===== */
.section--founder { background: var(--c-cream); }
.section--founder__copy { display: flex; flex-direction: column; justify-content: center; }
.founder-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--c-text-on-cream);
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--c-gold);
}
.founder-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  text-transform: uppercase;
}
.section--founder__media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-card);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ===== Ingredients section ===== */
.section--ingredients { background: var(--c-cream); }
.ingredients-grid {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
}
.ingredient-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-card);
  background: #fff;
  border: 1px solid var(--c-border-on-cream);
  transition: border-color var(--t-med) var(--ease);
}
.ingredient-tile:hover { border-color: var(--c-gold); }
.ingredient-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.ingredient-tile:hover img { transform: scale(1.05); }
.ingredient-tile__label {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(246,242,234,0.92);
  color: var(--c-navy);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  font-weight: 600;
}

/* ===== Before/After section ===== */
.section--ba { background: var(--c-navy); color: var(--c-cream); }
.section--ba .eyebrow { color: var(--c-gold); }
.h2-serif--cream { color: var(--c-cream); }
.ba-sub {
  color: var(--c-text-on-navy);
  max-width: 480px;
  margin: 0.5rem 0 2rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ba-figure {
  margin: 0;
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 1;
}
.ba-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ba-figure figcaption {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(14,42,71,0.85);
  color: var(--c-cream);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 4px 8px;
}
.ba-figure:nth-child(2) figcaption { color: var(--c-gold); }

/* ===== Range: gold-outline button ===== */
.btn--gold-outline {
  display: inline-block;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  border-radius: var(--r-button);
  font-family: var(--f-body);
}
.btn--gold-outline:hover {
  background: var(--c-gold);
  color: var(--c-navy);
}

/* ===== Base section layout (shared) ===== */
.section {
  padding: var(--pad-y-mobile) var(--pad-x-mobile);
}
@media (min-width: 768px) {
  .section { padding: var(--pad-y-desktop) var(--pad-x-desktop); }
}
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.section--narrow { max-width: 720px; }
.section--two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .section--two-col { grid-template-columns: 1.1fr 1fr; gap: 60px; }
}
.eyebrow {
  color: var(--c-gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  font-family: var(--f-body);
}
.h2-serif {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--c-navy);
  margin: 0;
}

/* Hero H1 line-by-line reveal (CSS-only) */
.hero-slide.is-active .hero-h1 {
  animation: heroTextIn 1s var(--ease) both;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Bottom nav: override to match mockup (navy bg, cream/gold text) ===== */
.bottom-nav {
  background: rgba(14, 42, 71, 0.96) !important;
  backdrop-filter: saturate(140%) blur(14px) !important;
  -webkit-backdrop-filter: saturate(140%) blur(14px) !important;
  border-top: 1px solid rgba(201, 162, 74, 0.35) !important;
  box-shadow: 0 -8px 28px -10px rgba(0, 0, 0, 0.35) !important;
}
.bottom-nav__item {
  color: rgba(246, 242, 234, 0.55) !important;
}
.bottom-nav__item:hover {
  color: var(--c-cream, #F6F2EA) !important;
  opacity: 1 !important;
}
.bottom-nav__item.is-active {
  color: var(--c-gold, #C9A24A) !important;
  opacity: 1 !important;
}
.bottom-nav__item.is-active::before {
  background: var(--c-gold, #C9A24A) !important;
  width: 22px !important;
  height: 2px !important;
  border-radius: 0 !important;
}

/* ===== Hero slider (override old .hero-slider* rules) ===== */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--c-navy, #0E2A47);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) {
  .hero-slider { min-height: 620px; }
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide.is-active .hero-h1 { animation: heroTextIn 1s var(--ease) both; }
.hero-slide.is-active .hero-slide__inner { animation: heroTextIn 1.2s var(--ease) 0.2s both; }

/* Hide the OLD theme's now-unused slider sub-components to prevent stray styles */
.hero-slider__viewport,
.hero-slider__controls,
.hero-slider__controls-inner,
.hero-slider__dots,
.hero-slider__nav,
.hero-slider__progress,
.hero-slider__progress-bar {
  display: none !important;
}

.hero-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,71,0.20) 0%, rgba(14,42,71,0.50) 100%);
  z-index: 1;
}
.hero-slide__inner {
  position: relative; z-index: 2;
  padding: 0 24px;
  color: var(--c-cream, #F6F2EA);
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-slide__inner { padding: 0 40px; }
}

.hero-eyebrow {
  color: var(--c-gold, #C9A24A);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--c-cream, #F6F2EA);
  margin: 0 0 2rem;
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-dots {
  position: absolute;
  bottom: 6rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  z-index: 3;
}
.hero-dots .dot {
  width: 28px; height: 2px;
  background: rgba(246,242,234,0.3);
  border: 0; padding: 0; cursor: pointer;
  transition: background 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-dots .dot.is-active { background: var(--c-gold, #C9A24A); }

.hero-scrollhint {
  position: absolute;
  bottom: 2rem; left: 0; right: 0;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--c-cream, #F6F2EA);
  opacity: 0.5;
  z-index: 3;
  margin: 0;
}
@media (max-width: 767px) { .hero-scrollhint { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 0.01ms; }
  .hero-slide.is-active .hero-h1,
  .hero-slide.is-active .hero-slide__inner { animation: none; opacity: 1; transform: none; }
}

/* ===== Apply new .section base layout to legacy sections (range, testimonials, trust, faq-teaser, newsletter) ===== */
.range,
.testimonials,
.trust,
.faq-teaser,
.newsletter {
  padding: var(--pad-y-mobile, 72px) var(--pad-x-mobile, 24px) !important;
}
@media (min-width: 768px) {
  .range,
  .testimonials,
  .trust,
  .faq-teaser,
  .newsletter {
    padding: var(--pad-y-desktop, 120px) var(--pad-x-desktop, 40px) !important;
  }
}

/* ===== Newsletter: restyle to match mockup (navy bg, gold accent) ===== */
.newsletter {
  background: var(--c-navy, #0E2A47) !important;
  color: var(--c-cream, #F6F2EA) !important;
  border-radius: 0 !important;
}
.newsletter h2, .newsletter p, .newsletter label, .newsletter * {
  color: var(--c-cream, #F6F2EA) !important;
}
.newsletter form {
  display: flex !important;
  gap: 8px !important;
  margin-top: 1rem !important;
  max-width: 480px !important;
}
.newsletter input[type="email"] {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--c-gold, #C9A24A) !important;
  color: var(--c-cream, #F6F2EA) !important;
  padding: 10px 0 !important;
  font-family: inherit !important;
  font-size: 0.85rem !important;
  outline: none !important;
}
.newsletter input[type="email"]::placeholder {
  color: rgba(246, 242, 234, 0.5) !important;
}
.newsletter button,
.newsletter input[type="submit"] {
  background: var(--c-gold, #C9A24A) !important;
  color: var(--c-navy, #0E2A47) !important;
  border: none !important;
  padding: 10px 24px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  border-radius: 0 !important;
}
.newsletter button:hover,
.newsletter input[type="submit"]:hover {
  background: #d4b05a !important;
}

/* ===== Hero: prevent text overlap during slide transitions ===== */
.hero-slide:not(.is-active) .hero-h1,
.hero-slide:not(.is-active) .hero-eyebrow,
.hero-slide:not(.is-active) .hero-slide__inner > a {
  opacity: 0 !important;
}

/* ===== Section number watermarks (mockup detail) ===== */
.section, .hero-slider,
section.range, section.testimonials, section.trust,
section.faq-teaser, section.newsletter {
  position: relative;
}
.section::before,
.hero-slider::before,
section.range::before, section.testimonials::before, section.trust::before,
section.faq-teaser::before, section.newsletter::before {
  content: "—";
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(14, 42, 71, 0.3);
  pointer-events: none;
  letter-spacing: 0.1em;
}
.section--press::before { color: rgba(201, 162, 74, 0.4); }
.section--ba::before { color: rgba(201, 162, 74, 0.4); }
.hero-slider::before { content: ""; display: none; } /* hero has its own dots */
@media (max-width: 767px) { .section::before { display: none; } }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* --- About hero (2-col, H1 + portrait) --- */
.about-hero {
  padding: 120px 0 80px;
  background: var(--cream);
}
@media (max-width: 900px) { .about-hero { padding: 72px 0 56px; } }
.about-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-hero__inner { grid-template-columns: 1fr; gap: 40px; }
}
.about-hero__copy { max-width: 560px; }
.about-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 24px;
}
.about-hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.about-hero__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--mute);
  margin: 0 0 24px;
  max-width: 480px;
}
.about-hero__media {
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -30px rgba(14, 42, 71, 0.25);
}
.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- About manifesto (centered pull quote) --- */
.about-manifesto {
  background: var(--cream);
  padding: 80px 0 120px;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .about-manifesto { padding: 56px 0 72px; } }
.about-manifesto__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.about-manifesto__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.about-manifesto__cite {
  display: inline-block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* --- About timeline (The Kitchen Chronicles) --- */
.about-chronicles {
  background: var(--navy);
  color: var(--cream);
  padding: 120px 0;
}
@media (max-width: 900px) { .about-chronicles { padding: 72px 0; } }
.about-chronicles__head { margin-bottom: 64px; }
.about-chronicles__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}
.about-chronicles .eyebrow { color: var(--accent); }

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px;
  position: relative;
  border-left: 1px solid rgba(201, 162, 74, 0.4);
}
.about-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, max-content) 1fr;
  gap: 32px;
  padding: 28px 0 28px 32px;
  align-items: start;
}
@media (max-width: 600px) {
  .about-timeline { padding: 0; border-left: 0; }
  .about-timeline__item {
    grid-template-columns: 1fr;
    padding: 24px 0 24px 28px;
    border-left: 1px solid rgba(201, 162, 74, 0.4);
  }
}
.about-timeline__dot {
  position: absolute;
  left: -7px;
  top: 36px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.15);
}
@media (max-width: 600px) { .about-timeline__dot { left: -7px; } }
.about-timeline__year {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--accent);
  line-height: 1.2;
  padding-top: 4px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) { .about-timeline__year { font-size: 18px; } }
.about-timeline__body { display: flex; flex-direction: column; gap: 8px; }
.about-timeline__h {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--cream);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.about-timeline__body p {
  color: rgba(246, 242, 234, 0.75);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}

/* --- About founder letter (2-col) --- */
.about-letter {
  background: var(--cream);
  padding: 120px 0;
}
@media (max-width: 900px) { .about-letter { padding: 72px 0; } }
.about-letter__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-letter__inner { grid-template-columns: 1fr; gap: 40px; }
}
.about-letter__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream-2);
}
.about-letter__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-letter__copy { max-width: 560px; }
.about-letter__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 28px;
}
.about-letter__body p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 20px;
}
.about-letter__sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin: 32px 0 0;
}

/* --- About cat welfare (3-up navy cards) --- */
.about-welfare {
  background: var(--cream-2);
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .about-welfare { padding: 72px 0; } }
.about-welfare__head {
  max-width: 720px;
  margin: 0 0 56px;
}
.about-welfare__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 16px;
}
.about-welfare__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 560px;
  margin: 0;
}
.about-welfare__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .about-welfare__grid { grid-template-columns: 1fr; } }
.about-welfare__card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 240px;
  border: 1px solid rgba(201, 162, 74, 0.18);
  transition: transform .25s ease, border-color .25s ease;
}
.about-welfare__card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.about-welfare__stat {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-welfare__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.85);
  font-weight: 600;
}
.about-welfare__note {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(246, 242, 234, 0.7);
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 162, 74, 0.18);
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */

/* --- FAQ header (with search) --- */
.faq-header {
  background: var(--cream);
  padding: 120px 0 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .faq-header { padding: 72px 0 40px; } }
.faq-header__inner { max-width: 880px; }
.faq-header__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 16px;
}
.faq-header__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.faq-header__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 560px;
  margin: 0 0 32px;
}
.faq-header__lede a { color: var(--navy); border-bottom: 1px solid currentColor; }

.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 14px 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
  max-width: 640px;
}
.faq-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.18);
}
.faq-search__icon { color: var(--mute); flex-shrink: 0; }
.faq-search__input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--navy);
  outline: none;
  padding: 0;
}
.faq-search__input::placeholder { color: var(--mute); }

/* --- FAQ chips + list --- */
.faq-list-section {
  background: var(--cream);
  padding: 56px 0 120px;
}
@media (max-width: 900px) { .faq-list-section { padding: 40px 0 72px; } }
.faq-list-section__inner { max-width: 880px; }

.faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.faq-chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.faq-chip:hover { border-color: var(--navy); }
.faq-chip.is-active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.faq-empty {
  text-align: center;
  color: var(--mute);
  font-size: 15px;
  padding: 48px 0;
  border: 1px dashed var(--line);
  border-radius: 4px;
  margin: 0 0 24px;
}
.faq-empty a { color: var(--navy); border-bottom: 1px solid currentColor; }

/* Per-question row: category label + question + chevron */
.faq-accordion .accordion__head {
  display: grid;
  grid-template-columns: 120px 1fr 24px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}
@media (max-width: 700px) {
  .faq-accordion .accordion__head {
    grid-template-columns: 1fr 24px;
    gap: 8px;
    padding: 20px 0;
  }
  .faq-q__cat { grid-column: 1; }
  .faq-q__text { grid-column: 1; }
  .accordion__icon {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
}
.faq-q__cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent);
}
.faq-q__text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
@media (max-width: 700px) { .faq-q__text { font-size: 18px; } }
.faq-accordion .accordion__body p {
  padding: 0 0 24px 144px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--mute);
}
@media (max-width: 700px) {
  .faq-accordion .accordion__body p { padding: 0 0 20px; }
}

/* Hide items that fail the search/filter rather than removing them,
   so the DOM order (and any open/close state) is preserved. */
[data-faq-item][hidden] { display: none !important; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

/* ---------- Hero ---------- */
.contact-hero {
  background: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0 clamp(64px, 10vw, 120px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 60%;
  height: 80%;
  background: radial-gradient(closest-side, rgba(201, 162, 74, 0.12) 0%, rgba(201, 162, 74, 0) 70%);
  pointer-events: none;
}
.contact-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-hero__copy { max-width: 620px; }
.contact-hero__title {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--navy);
  margin: 16px 0 28px;
}
.contact-hero__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.contact-hero__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--mute);
  max-width: 540px;
  margin: 0 0 24px;
}
.contact-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  margin: 0;
}
.contact-hero__meta::before {
  content: "";
  width: 6px; height: 6px;
  background: #2D9B6F;
  border-radius: 99px;
  box-shadow: 0 0 0 4px rgba(45, 155, 111, 0.18);
  display: inline-block;
}

/* The circular "seal" mark on the right */
.contact-hero__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  justify-self: end;
}
.contact-hero__seal {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  animation: contactSealSpin 60s linear infinite;
}
.contact-hero__seal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.contact-hero__seal-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  fill: var(--navy);
  text-transform: uppercase;
}
@keyframes contactSealSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero__seal { animation: none; }
}

@media (max-width: 900px) {
  .contact-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-hero__mark { max-width: 320px; margin: 0 auto; }
}

/* ---------- Channels ---------- */
.contact-channels {
  background: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
}
.contact-channels__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.contact-channels__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--navy);
  margin: 8px 0 0;
}
.contact-channels__head .eyebrow { margin-bottom: 0; }

.contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.channel-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px 32px;
  background: var(--cream);
  color: var(--navy);
  text-decoration: none;
  border: 0;
  position: relative;
  transition: background .25s var(--ease), color .25s var(--ease);
  min-height: 380px;
}
.channel-card:hover {
  background: var(--navy);
  color: var(--cream);
}
.channel-card:hover .channel-card__num { color: var(--accent); }
.channel-card:hover .channel-card__eyebrow { color: var(--accent); }
.channel-card:hover .channel-card__cta { color: var(--accent); }

.channel-card__num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--mute);
  margin-bottom: 16px;
  transition: color .25s var(--ease);
}
.channel-card__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: color .25s var(--ease);
}
.channel-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 99px;
  background: var(--cream-2);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.channel-card:hover .channel-card__icon {
  background: rgba(246, 242, 234, 0.08);
  color: var(--cream);
}
.channel-card__icon svg { width: 22px; height: 22px; }
.channel-card__title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 12px;
  color: inherit;
  letter-spacing: -0.01em;
}
.channel-card__blurb {
  font-size: 14px;
  line-height: 1.55;
  color: inherit;
  opacity: 0.7;
  margin: 0 0 auto;
  padding-bottom: 24px;
}
.channel-card__label {
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 2px;
  margin-bottom: 16px;
  word-break: break-word;
}
.channel-card__cta {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--mute);
  transition: color .25s var(--ease);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.channel-card__cta span[aria-hidden] {
  transition: transform .25s var(--ease);
}
.channel-card:hover .channel-card__cta span[aria-hidden] { transform: translateX(4px); }

@media (max-width: 1100px) {
  .contact-channels__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .contact-channels__head { grid-template-columns: 1fr; gap: 12px; }
  .contact-channels__grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 320px; padding: 28px 24px; }
}

/* ---------- Message (form + HQ) ---------- */
.contact-message {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.contact-message::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.contact-message__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.contact-message__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--cream);
  margin: 12px 0 16px;
}
.contact-message .eyebrow { color: var(--accent); }
.contact-message__lede {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(246, 242, 234, 0.7);
  max-width: 520px;
  margin: 0 0 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field > span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.55);
  font-weight: 500;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--cream);
  background: rgba(246, 242, 234, 0.04);
  border: 0;
  border-bottom: 1px solid rgba(246, 242, 234, 0.2);
  padding: 14px 16px;
  outline: none;
  transition: background .2s var(--ease), border-color .2s var(--ease);
  border-radius: 0;
  width: 100%;
}
.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23F6F2EA' stroke-width='1.4' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form__field select option { color: var(--navy); background: var(--cream); }
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: rgba(246, 242, 234, 0.35); }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-bottom-color: var(--accent);
  background: rgba(246, 242, 234, 0.07);
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}
.contact-form__fineprint {
  font-size: 12px;
  color: rgba(246, 242, 234, 0.5);
  margin: 0;
}
.contact-form__fineprint a { color: var(--accent); border-color: var(--accent); }
.contact-form__actions { margin-top: 4px; }
.contact-form__submit {
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--cream);
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.contact-form__submit:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
  transform: translateY(-1px);
}
.contact-form__submit-icon {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.contact-form__submit:hover .contact-form__submit-icon { transform: translateX(4px); }

.contact-form__success {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid rgba(201, 162, 74, 0.4);
  background: rgba(201, 162, 74, 0.05);
  border-radius: 4px;
}
.contact-form__success[hidden] { display: none; }
.contact-form__success-mark {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 99px;
  background: var(--accent);
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 16px;
}
.contact-form__success h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 8px;
}
.contact-form__success p { color: rgba(246, 242, 234, 0.7); margin: 0; }

@media (max-width: 700px) {
  .contact-message__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* HQ card */
.hq-card {
  background: var(--cream);
  color: var(--navy);
  padding: 40px 36px 36px;
  border-radius: 4px;
  position: relative;
  border: 1px solid rgba(201, 162, 74, 0.2);
}
.hq-card__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--navy);
  margin: 8px 0 24px;
}
.hq-card .eyebrow { color: var(--accent); }
.hq-card__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 28px;
}
.hq-card__rule {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 0 0 24px;
}
.hq-card__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 28px;
}
.hq-card__meta dt {
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
}
.hq-card__meta dd {
  font-size: 15px;
  color: var(--navy);
  margin: 0;
  font-weight: 500;
}
.hq-card__meta dd a { color: var(--navy); border-color: var(--navy); }
.hq-card__map {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--navy);
  color: var(--cream);
  border: 0;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s var(--ease);
}
.hq-card__map:hover { background: var(--accent); color: var(--navy); }

/* ---------- Visit (clinic list) ---------- */
.contact-visit {
  background: var(--cream-2);
  padding: clamp(80px, 10vw, 140px) 0;
}
.contact-visit__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.contact-visit__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.contact-visit__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--navy);
  margin: 8px 0 0;
}
.contact-visit__lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mute);
  margin: 0;
  max-width: 480px;
}
.contact-visit__lede strong { color: var(--navy); font-weight: 500; }

.clinic-list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  border-top: 1px solid var(--line);
}
.clinic-row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease), padding .2s var(--ease);
}
.clinic-row:hover {
  background: rgba(255, 255, 255, 0.6);
  padding-left: 24px;
  padding-right: 24px;
}
.clinic-row__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--mute);
}
.clinic-row__main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.clinic-row__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.clinic-row__area {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--mute);
}
.clinic-row__addr {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.4;
}
.clinic-row__link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 99px;
  border: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
  font-size: 16px;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.clinic-row:hover .clinic-row__link {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: rotate(-45deg);
}

.contact-visit__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
  text-decoration: none;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.contact-visit__cta:hover { color: var(--accent); border-color: var(--accent); }
.contact-visit__cta span[aria-hidden] { transition: transform .2s var(--ease); }
.contact-visit__cta:hover span[aria-hidden] { transform: translateX(4px); }

@media (max-width: 900px) {
  .contact-visit__head { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 700px) {
  .clinic-row { grid-template-columns: 32px 1fr 32px; gap: 12px; }
  .clinic-row__addr { grid-column: 2; }
  .clinic-row__link { grid-row: 1 / span 2; }
}



