/* ===================================================================
 * AmoreZero — Honey Heritage design system
 * Derived from the "premium-product-card" template DNA
 * (matte panels, noise texture, rounded-32 cards, gradient-inset borders,
 *  custom-curve corners) remapped to the AmoreZero brand tokens.
 * Fonts: Fraunces (headings) + Inter (body) + JetBrains Mono (labels).
 * =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..700,0..100,0..1&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Honey Heritage palette */
  --honey-brown: #613C0F;   /* primary  */
  --aged-honey:  #9B7C2C;   /* secondary*/
  --almond-gold: #D4A847;   /* accent   */
  --wafer-cream: #E8DCB5;   /* neutral  */
  --surface:     #FBF8EE;   /* bg       */
  --olive-ink:   #163B1A;   /* ink      */
  --health-green:#2D7A3B;
  --warn:        #C25F1A;

  /* Derived matte tones for dark panels */
  --matte-900:   #1A1206;
  --matte-800:   #211A10;
  --matte-700:   #2E2414;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Geometry (from template tokens) */
  --r-card: 32px;
  --r-control: 44px;
  --r-pill: 9999px;
  --section-pad: clamp(56px, 8vw, 96px);

  --shadow-card: 0 24px 60px -24px rgba(97, 60, 15, 0.35);
  --shadow-soft: 0 12px 32px -16px rgba(22, 59, 26, 0.25);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--olive-ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  color: var(--honey-brown);
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p  { margin: 0 0 1rem; color: #3a3327; }

.font-display { font-family: var(--font-display); }
.font-mono    { font-family: var(--font-mono); }

/* ---------- Layout helpers ---------- */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-narrow { width: min(760px, 92vw); margin-inline: auto; }
@media (max-width: 680px) {
  .container, .container-narrow { width: 100%; padding-inline: 22px; box-sizing: border-box; }
}
.section { padding-block: var(--section-pad); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aged-honey);
  display: inline-block;
  margin-bottom: 1rem;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #4a4234; }
.center { text-align: center; }

/* Subtle matte noise overlay for dark panels */
.matte-noise { position: relative; }
.matte-noise::before {
  content: "";
  position: absolute; inset: 0;
  opacity: 0.04; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.gradient-border-inset {
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), inset 0 -1px 1px rgba(0,0,0,0.25);
}
.custom-curve { border-top-right-radius: 160px; }
@media (max-width: 1024px) { .custom-curve { border-top-right-radius: 72px; } }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--olive-ink);
  color: var(--surface);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  line-height: 1.5;
}
.announce strong { color: var(--almond-gold); font-weight: 600; }
@media (max-width: 560px) {
  .announce { font-size: 0.6rem; letter-spacing: 0.06em; padding: 7px 12px; }
}

/* ---------- Header / nav ---------- */
html { scroll-padding-top: 88px; }
section[id] { scroll-margin-top: 88px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 238, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(97,60,15,0.10);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-block: 14px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo span {
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  color: var(--honey-brown); letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--olive-ink);
  position: relative; transition: color 0.2s;
}
.nav-links a:hover { color: var(--honey-brown); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--almond-gold); transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--honey-brown); }

@media (max-width: 900px) {
  .nav { gap: 12px; }
  .nav-logo { flex: 0 1 auto; min-width: 0; }
  .nav-logo span { white-space: nowrap; }
  .nav-links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--surface); padding: 16px 6vw 24px;
    border-bottom: 1px solid rgba(97,60,15,0.12);
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%); transition: transform 0.32s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; width: 100%; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { gap: 8px; flex: 0 0 auto; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { padding: 10px 16px; font-size: 0.85rem; }
}

@media (max-width: 560px) {
  .nav { gap: 8px; }
  .nav-logo img { height: 32px; }
  .nav-logo span { font-size: 1rem; }
  .nav-cta .btn-primary { padding: 9px 14px; font-size: 0.82rem; }
}

@media (max-width: 400px) {
  .nav-cta .btn-primary { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 14px 26px; border-radius: var(--r-pill); cursor: pointer;
  border: 1px solid transparent; transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--honey-brown); color: var(--surface); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: #4d2f0b; transform: translateY(-2px); }
.btn-accent { background: var(--almond-gold); color: var(--matte-900); }
.btn-accent:hover { background: #c39a36; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--honey-brown); border-color: rgba(97,60,15,0.3); }
.btn-ghost:hover { border-color: var(--honey-brown); background: rgba(97,60,15,0.05); }
.btn-dark { background: var(--olive-ink); color: var(--surface); }
.btn-dark:hover { background: #0f2a12; transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Badges / pills ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.badge-cream { background: var(--wafer-cream); color: var(--honey-brown); }
.badge-green { background: rgba(45,122,59,0.14); color: var(--health-green); }
.badge-gold  { background: var(--almond-gold); color: var(--matte-900); }
.badge-outline { border: 1px solid rgba(97,60,15,0.25); color: var(--honey-brown); }

/* trust chips row */
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(40px, 6vw, 72px); }
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none;
  top: -28%; right: -8%; width: 62%; height: 130%;
  background: radial-gradient(48% 48% at 50% 50%, rgba(212,168,71,0.20) 0%, rgba(212,168,71,0) 72%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem); line-height: 1.06;
  letter-spacing: -0.015em; text-wrap: balance; margin-bottom: 18px;
}
.hero-title .accent { color: var(--almond-gold); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note {
  margin-top: 18px; font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--aged-honey);
}
.hero-media {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 4/5; background: var(--wafer-cream);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-floating {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(26,18,6,0.78); color: var(--surface);
  backdrop-filter: blur(6px); border-radius: 18px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; z-index: 2;
}
.hero-floating .big { font-family: var(--font-display); font-size: 1.4rem; color: var(--almond-gold); line-height: 1; }
.hero-floating .small { font-size: 0.72rem; opacity: 0.85; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 4/3; order: -1; }
}

/* ---------- Cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid rgba(97,60,15,0.10);
  border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-media { aspect-ratio: 1/1; background: var(--wafer-cream); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

/* product card */
.product-card .price { font-family: var(--font-display); font-size: 1.4rem; color: var(--honey-brown); }
.product-card .card-body { gap: 8px; }
.product-card h3 { margin: 0; font-size: 1.15rem; }
.product-meta { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aged-honey); }

/* ---------- Product detail (PDP) ---------- */
.breadcrumb { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--aged-honey); margin-bottom: 22px; }
.breadcrumb a { color: var(--honey-brown); }
.breadcrumb a:hover { text-decoration: underline; }
.pdp-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.pdp-media { border-radius: var(--r-card); overflow: hidden; background: var(--wafer-cream); box-shadow: var(--shadow-card); aspect-ratio: 1/1; }
.pdp-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0 8px; }
.pdp-price { font-family: var(--font-display); font-size: 2rem; color: var(--honey-brown); margin: 0 0 6px; }
.pdp-price small { font-family: var(--font-body); font-size: 0.9rem; color: var(--aged-honey); font-weight: 500; }
.pdp-lead { font-size: 1.08rem; line-height: 1.6; color: #4a4234; margin: 14px 0 22px; }
.feature-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.98rem; color: var(--olive-ink); }
.feature-list svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; color: var(--health-green); }
.pdp-buy { display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.pdp-ship { font-size: 0.85rem; color: var(--aged-honey); display: flex; align-items: center; gap: 8px; }
.pdp-ship svg { width: 16px; height: 16px; color: var(--honey-brown); }
@media (max-width: 760px) { .pdp-grid { grid-template-columns: 1fr; gap: 28px; } .pdp-buy { max-width: none; } }

/* feature / value tile */
.value-tile {
  background: #fff; border-radius: var(--r-card); padding: 28px;
  border: 1px solid rgba(97,60,15,0.10); box-shadow: var(--shadow-soft); height: 100%;
}
.value-tile .ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--wafer-cream); color: var(--honey-brown);
}
.value-tile .ico svg { width: 26px; height: 26px; }
.value-tile h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* ---------- Dark matte panel ---------- */
.panel-dark {
  background: radial-gradient(120% 140% at 80% 0%, var(--matte-700) 0%, var(--matte-900) 70%);
  color: var(--surface); border-radius: var(--r-card); overflow: hidden;
  position: relative;
}
.panel-dark h2, .panel-dark h3 { color: var(--surface); }
.panel-dark p { color: rgba(251,248,238,0.78); }
.panel-dark .eyebrow { color: var(--almond-gold); }

/* ---------- Compare (industrial vs ours) ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 680px) { .compare { grid-template-columns: 1fr; } }
.compare-col { border-radius: var(--r-card); padding: 34px 32px; display: flex; flex-direction: column; }
.compare-bad { background: #f1ead8; border: 1px solid rgba(139,36,36,0.16); }
.compare-good { background: var(--olive-ink); color: var(--surface); box-shadow: 0 26px 64px -30px rgba(22,59,26,0.7); }
.compare-head { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.compare-head h3 { margin: 4px 0 0; font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.12; }
.compare-bad h3 { color: #8B2424; }
.compare-good h3 { color: var(--surface); }
.compare-sub { margin: 0; font-size: 0.92rem; }
.compare-bad .compare-sub { color: rgba(97,60,15,0.55); }
.compare-good .compare-sub { color: rgba(251,248,238,0.6); }
.compare ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; }
.compare li { display: flex; gap: 13px; align-items: center; font-size: 0.97rem; line-height: 1.35; padding: 13px 0; }
.compare li + li { border-top: 1px solid; }
.compare-bad li { color: rgba(97,60,15,0.62); }
.compare-bad li + li { border-color: rgba(97,60,15,0.1); }
.compare-good li { color: rgba(251,248,238,0.92); }
.compare-good li + li { border-color: rgba(251,248,238,0.13); }
.tick { flex: 0 0 auto; width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; font-size: 0.74rem; font-weight: 700; line-height: 1; }
.compare-bad .tick { background: rgba(139,36,36,0.12); color: #8B2424; }
.compare-good .tick { background: rgba(212,168,71,0.18); color: var(--almond-gold); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step .num {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  color: var(--almond-gold); letter-spacing: 0.1em;
}
.step h3 { margin: 8px 0 6px; }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff; border-radius: var(--r-card); padding: 28px;
  border: 1px solid rgba(97,60,15,0.10); box-shadow: var(--shadow-soft);
}
.quote p {
  font-family: var(--font-display); font-style: italic; font-size: 1.12rem;
  color: var(--honey-brown); font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.quote .who { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aged-honey); }
.stars { color: var(--almond-gold); letter-spacing: 2px; font-size: 1rem; }

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; }
.post-card .card-media { aspect-ratio: 16/10; }
.post-card .tag { align-self: flex-start; }
.post-card h3 { font-size: 1.25rem; }
.post-card .excerpt { font-size: 0.95rem; color: #4a4234; }
.post-card .readmore { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--honey-brown); margin-top: auto; }
.article-hero { aspect-ratio: 21/9; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 1.08rem; color: #3a3327; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose p { margin-bottom: 1.2em; }
.prose ul { padding-left: 1.2em; margin-bottom: 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose blockquote {
  border-left: 3px solid var(--almond-gold); margin: 1.6em 0; padding: 4px 0 4px 20px;
  font-family: var(--font-display); font-style: italic; color: var(--honey-brown); font-size: 1.2rem;
}
.prose .cite { font-size: 0.82rem; color: var(--aged-honey); font-family: var(--font-mono); }
.prose a { color: var(--honey-brown); text-decoration: underline; text-decoration-color: var(--almond-gold); }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border-radius: var(--r-card); padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-card); border: 1px solid rgba(97,60,15,0.10);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--olive-ink); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--olive-ink);
  padding: 13px 16px; border-radius: 14px; border: 1px solid rgba(97,60,15,0.25);
  background: var(--surface); transition: border 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--almond-gold);
  box-shadow: 0 0 0 3px rgba(212,168,71,0.25);
}
.field textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.78rem; color: var(--aged-honey); }
.form-success {
  display: none; background: rgba(45,122,59,0.12); color: var(--health-green);
  border-radius: 14px; padding: 14px 18px; font-weight: 600; margin-top: 12px;
}
.form-success.show { display: block; }
.form-intro { color: var(--aged-honey); font-size: 0.92rem; margin: -4px 0 18px; }
.form-fine { font-size: 0.76rem; color: var(--aged-honey); text-align: center; margin-top: 12px; }
.optional { color: var(--aged-honey); font-weight: 400; }

/* ---------- Check list (lead magnet) ---------- */
.check-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li {
  position: relative; padding-left: 32px; color: var(--olive-ink); line-height: 1.5; font-size: 1rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(45,122,59,0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D7A3B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- FAQ items ---------- */
.faq-item {
  border-top: 1px solid rgba(97,60,15,0.14); padding: 22px 0;
}
.faq-item:first-of-type { border-top: none; }
.faq-item h3 {
  font-family: var(--font-display); font-size: 1.18rem; color: var(--honey-brown); margin-bottom: 8px;
}
.faq-item p { color: var(--olive-ink); opacity: 0.86; line-height: 1.65; max-width: 64ch; }
.faq-item a { color: var(--honey-brown); text-decoration: underline; text-decoration-color: var(--almond-gold); }

/* ---------- Contact details ---------- */
.contact-detail { margin-top: 18px; }
.contact-detail h4 {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--aged-honey); margin-bottom: 4px;
}
.contact-detail p { color: var(--olive-ink); line-height: 1.55; }
.contact-detail a { color: var(--honey-brown); text-decoration: underline; text-decoration-color: var(--almond-gold); }

/* newsletter strip */
.newsletter {
  background: radial-gradient(120% 160% at 0% 0%, var(--matte-700), var(--matte-900));
  color: var(--surface); border-radius: var(--r-card); position: relative; overflow: hidden;
}
.newsletter .inline-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
  flex: 1 1 240px; padding: 14px 18px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: var(--surface);
}
.newsletter input::placeholder { color: rgba(251,248,238,0.6); }
.newsletter input:focus { outline: none; border-color: var(--almond-gold); }

/* ---------- Consent bar (created by app.js when pixel is set) ---------- */
#consent-bar {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  background: var(--matte-900); color: rgba(251,248,238,0.9);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 18px;
  padding: 16px 20px; gap: 16px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; box-shadow: 0 18px 50px rgba(0,0,0,0.3); max-width: 980px; margin: 0 auto;
}
#consent-bar p { font-size: 0.9rem; margin: 0; flex: 1 1 320px; }
#consent-bar a { color: var(--almond-gold); text-decoration: underline; }
#consent-bar .consent-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--matte-900); color: rgba(251,248,238,0.82); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  padding-block: 56px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--surface); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.site-footer a { color: rgba(251,248,238,0.7); font-size: 0.92rem; display: block; padding: 5px 0; transition: color 0.2s; }
.site-footer a:hover { color: var(--almond-gold); }
.footer-brand img { height: 42px; margin-bottom: 14px; }
.footer-brand p { color: rgba(251,248,238,0.6); font-size: 0.9rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-block: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(251,248,238,0.5);
}
.social-row { display: flex; gap: 14px; margin-top: 14px; }
.social-row a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.social-row a:hover { background: var(--almond-gold); color: var(--matte-900); }
.social-row svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utility ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.max-prose{max-width:68ch}
.divider{height:1px;background:rgba(97,60,15,0.12);border:0;margin:0}
.pill-price{font-family:var(--font-display);font-size:1.05rem;color:var(--honey-brown)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
