/* ============================================================================
   Satopolis — Luxury Greek Olive Oil
   Design tokens grounded in ui-ux-pro-max: Playfair Display + Inter,
   midnight-navy + gold. No raw hex in components — use the tokens below.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --bg:            #0E1220;
  --bg-2:          #0B0F1A;
  --surface:       #161B2E;
  --surface-2:     #1B2138;
  --gold:          #C9A24B;
  --gold-soft:     #E4C97E;
  --gold-deep:     #A17C2E;
  --text:          #F4F1EA;
  --text-muted:    #A7ADBE;
  --text-faint:    #6E7488;
  --emerald-glow:  rgba(30, 90, 70, 0.45);
  --border:        rgba(201, 162, 75, 0.22);
  --border-soft:   rgba(244, 241, 234, 0.08);
  --danger:        #E5736B;
  --success:       #7FC9A4;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.05rem, 0.9rem + 0.6vw, 1.3rem);
  --fs-h3:      clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  --fs-h2:      clamp(1.9rem, 1.4rem + 2.4vw, 3rem);
  --fs-hero:    clamp(2.6rem, 1.6rem + 4.6vw, 4.6rem);

  /* Spacing (8pt rhythm) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;

  /* Layout */
  --container: 1200px;
  --radius:    14px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur:  220ms;

  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 20px 50px -20px rgba(201, 162, 75, 0.35);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

/* Focus visibility (accessibility) */
:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Mobile-only forced line breaks (hidden on larger screens) */
.br-mobile { display: none; }

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.section { padding-block: clamp(3.5rem, 8vw, var(--space-7)); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-5);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin-top: 0.75rem; }
#features-title,
#collection-title { white-space: nowrap; }
#collection .section-head p { white-space: nowrap; }
@media (max-width: 900px) {
  #features-title,
  #collection-title,
  #collection .section-head p { white-space: normal; }
}
/* Centered headings: keep on one line but stay centered by breaking out of the narrow head */
@media (min-width: 901px) {
  #benefits-title,
  #cta-title,
  #reviews-title {
    white-space: nowrap;
    width: max-content;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.section-head p { color: var(--text-muted); margin-top: 1rem; font-size: var(--fs-lead); }

.divider-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gold);
  margin: 0 auto var(--space-3);
}
.divider-motif::before,
.divider-motif::after {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-motif::after { transform: scaleX(-1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  touch-action: manipulation;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #241a06;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-2px);
}
.btn-ghost svg { transition: transform var(--dur) var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.55rem 1.1rem; min-height: 44px; font-size: 0.85rem; }

/* ============================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 15, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
}
.site-header .container {
  max-width: none;
  padding-inline: clamp(1.25rem, 5vw, 5rem);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-block: 1.1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.brand .mark { color: var(--gold); flex: none; }
.brand .wordmark { font-size: 0.82rem; letter-spacing: 0.16em; line-height: 1.05; text-transform: uppercase; white-space: nowrap; }
.brand .wordmark strong { font-weight: 700; }
.brand-emblem {
  width: 56px;
  height: 56px;
  display: block;
  flex: none;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(201, 162, 75, 0.2));
}
.brand-emblem--footer { width: 66px; height: 66px; }
.brand-logo { height: 40px; width: auto; display: block; }
.brand-logo--footer { height: 46px; }

.nav-links {
  display: none;
  list-style: none;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--dur) var(--ease);
  position: relative;
  padding-block: 0.25rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-actions .btn { padding: 0.6rem 1.25rem; min-height: 44px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
}
.nav-toggle svg { pointer-events: none; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(84vw, 340px);
  background: var(--bg-2);
  border-left: 1px solid var(--border-soft);
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 300ms var(--ease);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
/* When closed, the [hidden] attr must win over display:flex — otherwise the
   off-screen menu stays in layout and causes horizontal overflow on mobile. */
.mobile-menu[hidden] { display: none; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  padding: 1rem 0.25rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  font-size: 1.05rem;
}
.mobile-menu .btn { margin-top: 1.5rem; }
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 14, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease), visibility 300ms var(--ease);
  z-index: 80;
}
.scrim.open { opacity: 1; visibility: visible; }

/* ============================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.98) 0%, rgba(7, 10, 18, 0.94) 46%, rgba(7, 10, 18, 0.28) 76%, rgba(7, 10, 18, 0.1) 100%),
    url("assets/luxury-satopolis-hero-TM.webp") right center / auto 92% no-repeat,
    var(--bg-2);
}
.hero::before { /* faint meander border frame */
  content: "";
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 2;
}
.hero .container { position: relative; z-index: 1; }
.hero .container {
  max-width: none;
  padding-inline: clamp(1.5rem, 6vw, 7rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
  min-height: min(88dvh, 780px);
}
.hero-copy { max-width: 660px; }
.hero-copy.reveal { opacity: 1; transform: none; }
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-block: 1.25rem 1.5rem;
}
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero h1 .hero-line { display: inline-block; white-space: nowrap; }
/* Second line reads as a lighter, quieter counterpoint to the bold first line */
.hero h1 .hero-line--sub {
  font-size: 0.82em;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.005em;
}
.hero-accolade {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-block: 1.25rem 2rem;
  padding: 0.48rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(14, 18, 32, 0.72);
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.hero-accolade:hover { border-color: var(--gold); color: var(--gold); }
.hero-accolade span { color: var(--gold); }
.hero-copy .lead {
  color: var(--text-muted);
  font-size: var(--fs-lead);
  line-height: 1.85;
  max-width: 46ch;
  margin-bottom: 2rem;
}

/* Micro-trust signals below the primary CTA */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.4rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trust-row svg { color: var(--gold); flex: none; }

/* Bottle placeholder + laurel watermark */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}
.laurel-watermark {
  position: absolute;
  width: min(115%, 560px);
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
}
.bottle-frame {
  position: relative;
  width: min(78%, 340px);
  aspect-ratio: 3 / 5;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(201,162,75,0.10), rgba(22,27,46,0.6)),
    var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-faint);
  overflow: hidden;
}
.bottle-frame img { width: 100%; height: 100%; object-fit: cover; }

/* SVG-art variant: drop the card chrome, let the decanter float on the glow */
.bottle-frame--art {
  background: none;
  border: none;
  box-shadow: none;
  aspect-ratio: auto;
  width: min(86%, 400px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
  animation: bottle-float 7s ease-in-out infinite;
}
.bottle-frame--art img { height: auto; object-fit: contain; }

@keyframes bottle-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .bottle-frame--art,
  .bottle-frame--photo { animation: none; }
}

/* Real product photo: framed, cropped to the bottle, floating on the glow */
.bottle-frame--photo {
  width: min(84%, 360px);
  aspect-ratio: 294 / 564;
  background: var(--surface);
  animation: bottle-float 7s ease-in-out infinite;
}
.bottle-frame--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}
.bottle-frame .ph-label {
  padding: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.bottle-frame .ph-icon { color: var(--gold); opacity: 0.5; margin-bottom: 0.75rem; }

/* ============================================================================
   Awards / trust bar
   ========================================================================== */
.awards { border-block: 1px solid var(--border-soft); background: var(--bg-2); }
.awards .container { padding-block: 2.25rem; }
.awards-label {
  text-align: center;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.awards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  color: var(--text-muted);
}
.award {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.72;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
}
.award:hover { opacity: 1; color: var(--gold-soft); }
.award svg { color: var(--gold); }
.award span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================================================================
   Feature cards
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.feature-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.10);
  border: 1px solid var(--border);
  margin-bottom: 1.4rem;
}
.feature-card .eyebrow { font-size: 0.7rem; }
.feature-card h3 { font-size: var(--fs-h3); margin-block: 0.6rem 0.75rem; }
.feature-card p { color: var(--text-muted); }

/* ============================================================================
   Heritage story (split)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
.split h2 { font-size: var(--fs-h2); margin-block: 0.75rem 1.25rem; }
.split p { color: var(--text-muted); margin-bottom: 1.25rem; }
.story-points { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1rem; }
.story-points li { display: flex; gap: 0.85rem; align-items: flex-start; }
.story-points svg { color: var(--gold); flex: none; margin-top: 3px; }
.story-points strong { color: var(--text); }

.media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(90% 70% at 70% 30%, rgba(201,162,75,0.10), transparent),
    var(--surface);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--text-faint);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame .ph-label { text-align: center; padding: 1.5rem; font-size: 0.82rem; letter-spacing: 0.06em; }
.media-frame .ph-icon { color: var(--gold); opacity: 0.5; }

/* ============================================================================
   Polyphenol / benefits stats
   ========================================================================== */
.benefits { background: var(--bg-2); border-block: 1px solid var(--border-soft); }
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.stat {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--surface);
}
.stat .num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 1.5rem + 3vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat .num small { font-size: 0.45em; color: var(--gold); margin-left: 0.15em; }
.stat .label { display: block; margin-top: 0.75rem; color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================================
   Collection
   ========================================================================== */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.collection-grid--single {
  max-width: 420px;
  margin-inline: auto;
}
.product-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(80% 80% at 50% 20%, rgba(30,90,70,0.35), transparent),
    var(--bg-2);
  display: grid;
  place-items: center;
  color: var(--text-faint);
  border-bottom: 1px solid var(--border-soft);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}
.product-card:hover .product-media img {
  transform: scale(1.035);
  filter: brightness(1.06);
}
.product-media .ph-icon { color: var(--gold); opacity: 0.55; }
.product-tag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(14, 18, 32, 0.7);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.product-body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-body h3 { font-size: 1.3rem; }
.product-body .note { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.product-foot {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.product-foot .price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}
.product-foot .price small { font-size: 0.6em; color: var(--text-faint); font-weight: 400; letter-spacing: 0; }

/* ============================================================================
   Newsletter / final CTA
   ========================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 50% 0%, var(--emerald-glow), transparent 55%),
    var(--bg-2);
  border-block: 1px solid var(--border-soft);
}
.cta .container { text-align: center; max-width: 720px; }
.cta h2 { font-size: var(--fs-h2); margin-block: 0.75rem 1rem; }
.cta p { color: var(--text-muted); font-size: var(--fs-lead); margin-bottom: 2rem; }

/* Contact form */
.cta-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cta-field { display: flex; flex-direction: column; gap: 0.4rem; }
.cta-field--full { grid-column: 1 / -1; }
.cta-form label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cta-form input,
.cta-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: var(--text-faint); }
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}
.cta-form textarea { resize: vertical; min-height: 130px; }
.cta-form .btn { grid-column: 1 / -1; justify-self: center; margin-top: 0.25rem; }
/* Honeypot — visually hidden, off-screen */
.cta-form__honey {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
/* Inline submit status */
.cta-form__status {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  text-align: center;
}
.cta-form__status.is-pending { color: var(--text-muted); }
.cta-form__status.is-success { color: var(--success); }
.cta-form__status.is-error   { color: var(--danger); }
.cta-form button[type="submit"][disabled] { opacity: 0.6; cursor: default; }
.cta p.cta-fallback {
  margin: 1.5rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.cta-email {
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cta-email:hover { color: var(--text); border-color: var(--gold); }

@media (max-width: 560px) {
  .cta-form { grid-template-columns: 1fr; }
}

/* ============================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-2);
  padding-block: var(--space-6) var(--space-4);
  border-top: 1px solid var(--border-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; margin-top: 1rem; }
.socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.socials a:hover { color: var(--gold-soft); border-color: var(--gold); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-soft);
  color: var(--text-faint);
  font-size: 0.82rem;
}

/* ---------- Placeholder shared bits ---------- */
.ph-icon svg { display: block; }

/* ============================================================================
   Scroll-reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .feature-card, .product-card, .nav-links a::after,
  .mobile-menu, .scrim, .site-header { transition: none !important; }
}

/* ============================================================================
   Responsive breakpoints
   ========================================================================== */
@media (min-width: 600px) {
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-row       { grid-template-columns: repeat(3, 1fr); }
  .collection-grid:not(.collection-grid--single) { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr); }
  .hero-copy { grid-column: 1; }
  .split     { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

@media (max-width: 767px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(7, 10, 18, 0.97) 0%, rgba(7, 10, 18, 0.82) 58%, rgba(7, 10, 18, 0.38) 100%),
      url("assets/luxury-satopolis-hero-TM.webp") 58% center / auto 100% no-repeat,
      var(--bg-2);
  }
  .hero-grid {
    align-items: end;
    min-height: 700px;
    padding-bottom: 4.5rem;
  }
  .hero-copy { max-width: 100%; min-width: 0; }
  /* Let the headline, badge and lead wrap instead of overflowing the screen */
  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.7rem);
    overflow-wrap: break-word;
  }
  .hero h1 .hero-line { white-space: normal; display: inline; }
  .hero-accolade { max-width: 100%; font-size: 0.8rem; }
  .hero-copy .lead { max-width: 100%; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .features-grid   { grid-template-columns: repeat(3, 1fr); }
  .collection-grid:not(.collection-grid--single) { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* keep third feature/quote card full-width-balanced on tablet */
  .features-grid .feature-card:last-child { grid-column: 1 / -1; }
}

/* ---- Small-phone refinements (auto-fit for narrow screens) ---- */
@media (max-width: 600px) {
  .nav { gap: 0.75rem; }
  /* The long header CTA crowds the logo + hamburger on phones.
     Hide it here — the menu, hero button, and auto-popup all cover sign-ups. */
  .nav-actions > .btn { display: none; }
  .brand-logo { height: 34px; }
  .brand-logo--footer { height: 42px; }

  /* Compact accolade: keep the star inline, tighten the pill so it fits one line */
  .hero-accolade {
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.64rem;
    letter-spacing: 0.03em;
  }
  .hero-accolade svg,
  .hero-accolade span[aria-hidden] { flex: none; }
  /* Primary CTA hugs its two lines instead of stretching full-width */
  .hero .btn-primary { width: auto; text-align: center; }
  /* Force the accolade and CTA onto two lines on phones */
  .br-mobile { display: inline; }
  .hero::before { inset: 0.9rem; }          /* pull the frame in on small screens */

  .product-foot { flex-wrap: wrap; gap: 0.6rem; }   /* price + "Notify me" never collide */
  .product-foot .btn-sm { flex: 1 1 auto; }         /* button grows to a comfy tap size */
}

/* Extra-narrow safety (≤360px): prevent any cramping */
@media (max-width: 360px) {
  .container { padding-inline: 1rem; }
  .hero h1 { font-size: 2.2rem; }
}

/* ============================================================================
   Testimonials page
   ========================================================================== */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; fill: var(--gold); }
.stars svg.star-empty { fill: rgba(201, 162, 75, 0.22); }

.reviews-summary {
  text-align: center;
  margin: 0 auto var(--space-5);
}
.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.reviews-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
}
.reviews-summary .stars svg { width: 24px; height: 24px; }
.reviews-summary p { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.6rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--border); }
.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
}
.testimonial-card blockquote::before { content: "\201C"; color: var(--gold); font-size: 1.4em; line-height: 0; }
.testimonial-card blockquote::after  { content: "\201D"; color: var(--gold); font-size: 1.4em; line-height: 0; }

.t-author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.t-avatar {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: #241a06;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.t-meta { display: flex; flex-direction: column; }
.t-name { font-weight: 600; color: var(--text); }
.t-loc { font-size: 0.82rem; color: var(--text-muted); }
.t-verified { color: var(--success); }

.reviews-cta { text-align: center; margin-top: var(--space-6); }
.reviews-cta h3 { font-size: var(--fs-h3); margin-bottom: 1.25rem; }

@media (min-width: 640px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================================
   Health Benefits page
   ========================================================================== */
.hb-media {
  max-width: 600px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hb-media img { width: 100%; height: auto; display: block; }

.hb-prose { max-width: 68ch; margin-inline: auto; }
.hb-prose > p { color: var(--text-muted); margin-bottom: 1.25rem; }
.hb-prose .story-points { margin-block: 2rem; }
.hb-prose .story-points strong { color: var(--text); }

.hb-disclaimer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-faint);
}

/* FAQ accordion */
.faq { margin-top: var(--space-6); }
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 1rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0 1.5rem;
  transition: border-color var(--dur) var(--ease);
}
.faq-item[open] { border-color: var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-head);
  font-size: var(--fs-h3);
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 0 1.4rem; color: var(--text-muted); }
.faq-answer p { margin-bottom: 1rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Cloudflare Turnstile widget — span the contact form's two columns */
.cta-form .cf-turnstile { grid-column: 1 / -1; margin: 0.25rem 0; }
/* ===================== LEGAL PAGES ===================== */
.legal-page { padding: 150px 0 90px; background: #0e1220; color: #c8cbd3; }
.legal-wrap { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.legal-page h1 { margin: 10px 0 18px; color: #fff; font-size: clamp(2.3rem, 6vw, 4rem); }
.legal-page h2 { margin: 42px 0 12px; color: #f3e8cf; font-size: 1.55rem; }
.legal-page h3 { margin: 25px 0 8px; color: #fff; font-size: 1.05rem; }
.legal-page p, .legal-page li { line-height: 1.75; }
.legal-page a { color: #d6b66c; }
.legal-page table { width: 100%; margin: 20px 0; border-collapse: collapse; font-size: .9rem; }
.legal-page th, .legal-page td { padding: 12px; text-align: left; vertical-align: top; border: 1px solid #363d50; }
.legal-page th { color: #fff; background: #171d2d; }
.legal-note { padding: 16px 18px; background: #171d2d; border-left: 3px solid #d6b66c; border-radius: 6px; }
@media (max-width: 650px) { .legal-page table { display: block; overflow-x: auto; } }
