/* =========================================================================
   TORRID TONGUES — Design System
   Style: Warm Editorial Neobrutalism
   Palette (60/30/10): Cream (60) · Charcoal (30) · Ember/Gold (10 accent)
   Type: Fraunces (display serif) + Work Sans (body sans)
   ========================================================================= */

/* ---------- 1. Design tokens ---------- */
:root{
  /* brand palette */
  --cream:        #FBF1E1;
  --cream-2:      #F3E4C9;
  --cream-3:      #EDE0C3;
  --charcoal:     #1F160F;
  --charcoal-2:   #150F0A;
  --charcoal-soft:#3A2A1C;
  --ember:        #FF5A36;
  --ember-dark:   #C81E3A;
  --gold:         #E8A93A;
  --gold-light:   #F2C664;
  --sage:         #7A8450;
  --cream-rgb:    251,241,225;
  --charcoal-rgb: 31,22,15;
  --ember-rgb:    255,90,54;

  /* semantic */
  --bg:            var(--cream);
  --bg-alt:        var(--cream-2);
  --surface:       #FFFDF8;
  --ink:           var(--charcoal);
  --ink-soft:      var(--charcoal-soft);
  --muted:         #6E5F4E;
  --border-ink:    var(--charcoal);
  --accent:        var(--ember);
  --accent-2:      var(--gold);
  --accent-dark:   var(--ember-dark);
  --focus-ring:    #1E90A3;

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* scale */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.95rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.4vw, 2.75rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.4vw, 3.75rem);
  --step-5:  clamp(3rem, 2.2rem + 4vw, 5rem);

  /* layout */
  --container: 1240px;
  --container-narrow: 780px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --border-w: 2px;
  --shadow-off: 6px;
  --shadow-hard: var(--shadow-off) var(--shadow-off) 0 0 var(--border-ink);
  --shadow-hard-sm: 4px 4px 0 0 var(--border-ink);
  --shadow-soft: 0 20px 45px -20px rgba(31,22,15,0.35);

  --ease: cubic-bezier(.22,.9,.32,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
* { margin: 0; }
html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  min-height: 100svh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video{ display:block; max-width:100%; height:auto; }
input, button, textarea, select{ font: inherit; color: inherit; }
button{ cursor:pointer; }
a{ color: inherit; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
ul[class], ol[class]{ list-style:none; padding:0; }
table{ border-collapse: collapse; width: 100%; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1{ font-size: var(--step-5); }
h2{ font-size: var(--step-3); }
h3{ font-size: var(--step-2); }
h4{ font-size: var(--step-1); }
p{ max-width: 62ch; }
p.lede{ font-size: var(--step-1); color: var(--ink-soft); }

:focus-visible{
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection{ background: var(--accent); color: var(--cream); }

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

.skip-link{
  position:absolute; left:12px; top:-60px;
  background:var(--ink); color:var(--cream); padding:10px 16px;
  border-radius: 8px; z-index: 10000; transition: top .2s var(--ease);
  font-weight:600;
}
.skip-link:focus{ top:12px; }

/* ---------- 3. Layout helpers ---------- */
.container{
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container--narrow{
  width: min(100% - 2.5rem, var(--container-narrow));
  margin-inline: auto;
}
.section{ padding-block: clamp(3.5rem, 3rem + 3vw, 7rem); }
.section--alt{ background: var(--bg-alt); }
.section--dark{ background: var(--charcoal); color: var(--cream); }
.section--dark h2, .section--dark h3{ color: var(--cream); }
.section--dark p{ color: rgba(251,241,225,0.78); }
.section-head{
  max-width: 46rem;
  margin-bottom: clamp(2rem, 1.6rem + 2vw, 3.5rem);
}
.section-head--center{ margin-inline:auto; text-align:center; }

.eyebrow{
  display:inline-flex; align-items:center; gap:.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.9em;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  display:inline-block;
}
.section--dark .eyebrow{ color: var(--gold-light); }

/* ---------- 4. Buttons & badges ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  min-height: 52px;
  padding: 0 1.6em;
  border: var(--border-w) solid var(--border-ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  text-decoration:none;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-hard-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.btn:hover{ transform: translate(-2px,-2px); box-shadow: 6px 6px 0 0 var(--border-ink); }
.btn:active{ transform: translate(0,0); box-shadow: 2px 2px 0 0 var(--border-ink); }

.btn--primary{
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dark) 100%);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn--ghost{
  background: transparent;
  border-color: currentColor;
}
.section--dark .btn--ghost{ color: var(--cream); box-shadow: 4px 4px 0 0 var(--cream); }
.section--dark .btn--ghost:hover{ box-shadow: 6px 6px 0 0 var(--cream); }
.btn--block{ width:100%; }
.btn svg{ width:1.1em; height:1.1em; }

.badge{
  display:inline-flex; align-items:center; gap:.4em;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  border: 1.5px solid var(--border-ink);
  background: var(--gold-light);
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--charcoal);
}
.badge--outline{ background: transparent; }
.badge--sage{ background: var(--sage); color: var(--cream); border-color: var(--charcoal); }

/* ---------- 5. Domain-for-sale banner ---------- */
.domain-sale-banner{
  position: relative;
  z-index: 9999;
  width: 100%;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 50%, rgba(255,90,54,0.45), transparent 38%),
    radial-gradient(circle at 92% 30%, rgba(232,169,58,0.28), transparent 42%),
    linear-gradient(100deg, var(--charcoal-2) 0%, var(--charcoal) 58%, #341510 100%);
  border-bottom: var(--border-w) solid var(--charcoal-2);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  font-family: var(--font-body);
}
.domain-sale-banner__content{
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.domain-sale-banner__text{ display:grid; gap:4px; line-height:1.35; }
.domain-sale-banner__text strong{
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: -0.01em;
}
.domain-sale-banner__text span{
  color: rgba(251,241,225,0.76);
  font-size: 0.92rem;
}
.domain-sale-banner__button{
  flex: 0 0 auto;
  display: inline-flex; align-items:center; justify-content:center; gap:9px;
  min-height: 46px; padding: 0 20px;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1.5px solid var(--charcoal);
  border-radius: 999px;
  box-shadow: 4px 4px 0 0 rgba(0,0,0,0.55);
  font-size: 0.94rem; font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.domain-sale-banner__button:hover,
.domain-sale-banner__button:focus-visible{
  background: linear-gradient(135deg, var(--gold), var(--ember));
  color: var(--cream);
  box-shadow: 6px 6px 0 0 rgba(0,0,0,0.55);
  transform: translateY(-2px);
  outline: none;
}
@media (max-width: 680px){
  .domain-sale-banner__content{
    min-height:auto; padding:14px 0;
    align-items:stretch; flex-direction:column; gap:12px;
  }
  .domain-sale-banner__button{ width:100%; }
}

/* ---------- 6. Header / Nav ---------- */
.site-header{
  position: sticky; top:0; z-index: 900;
  background: rgba(251,241,225,0.86);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: var(--border-w) solid var(--border-ink);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled{ box-shadow: 0 10px 26px rgba(31,22,15,0.14); }
.site-header__bar{
  display:flex; align-items:center; justify-content:space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}
.brand{
  display:flex; align-items:center; gap:.6rem;
  text-decoration:none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.brand__mark{ width:38px; height:38px; flex:none; }
.brand__name{ white-space: nowrap; }
.brand__name em{ font-style:normal; color: var(--accent-dark); }

.nav-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:48px; height:48px;
  border: var(--border-w) solid var(--border-ink);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-hard-sm);
}
.nav-toggle__icon, .nav-toggle__icon::before, .nav-toggle__icon::after{
  content:""; display:block; width:20px; height:2px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle__icon{ position:relative; }
.nav-toggle__icon::before{ position:absolute; top:-7px; left:0; }
.nav-toggle__icon::after{ position:absolute; top:7px; left:0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon{ background:transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before{ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after{ transform: translateY(-7px) rotate(-45deg); }

.site-nav{
  position: fixed; inset: 0 0 0 auto;
  width: min(88vw, 380px);
  height: 100vh; height: 100svh;
  background: var(--charcoal);
  color: var(--cream);
  padding: 6.5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  z-index: 950;
  display:flex; flex-direction:column; gap:2rem;
  border-left: var(--border-w) solid var(--border-ink);
}
.site-nav.is-open{ transform: translateX(0); }
.site-nav__list{ display:flex; flex-direction:column; gap:.25rem; font-family: var(--font-display); font-size: 1.6rem; }
.site-nav__list a{
  display:block; padding:.6rem 0; text-decoration:none;
  border-bottom: 1px solid rgba(251,241,225,0.15);
}
.site-nav__list a[aria-current="page"]{ color: var(--gold-light); }
.site-nav__cta{ margin-top:auto; }
.nav-scrim{
  position: fixed; inset:0; background: rgba(21,15,10,0.55);
  opacity:0; pointer-events:none; transition: opacity .3s var(--ease);
  z-index: 940;
}
.nav-scrim.is-open{ opacity:1; pointer-events:auto; }

@media (min-width: 900px){
  .site-header__bar{ padding-block: 1.1rem; }
  .nav-toggle{ display:none; }
  .nav-scrim{ display:none; }
  .site-nav{
    position:static; width:auto; height:auto; transform:none;
    background:transparent; color:inherit; padding:0;
    flex-direction:row; align-items:center; gap:2.2rem;
    border-left:none;
  }
  .site-nav__list{
    flex-direction:row; align-items:center; gap:1.8rem;
    font-family: var(--font-body); font-size: var(--step--1);
    font-weight:600;
  }
  .site-nav__list a{ border-bottom:none; padding:.2rem 0; position:relative; }
  .site-nav__list a::after{
    content:""; position:absolute; left:0; right:100%; bottom:-4px; height:2px;
    background: var(--accent); transition: right .25s var(--ease);
  }
  .site-nav__list a:hover::after,
  .site-nav__list a[aria-current="page"]::after{ right:0; }
  .site-nav__list a[aria-current="page"]{ color: var(--accent-dark); font-weight:700; }
}

/* ---------- 7. Hero ---------- */
.hero{
  position:relative;
  overflow:clip;
  color: var(--cream);
  background: var(--charcoal);
}
.hero__media{
  position:absolute; inset:0;
  background-image: linear-gradient(100deg, rgba(21,15,10,0.92) 18%, rgba(31,22,15,0.55) 60%, rgba(31,22,15,0.25) 100%), url("../images/hero-banner.jpg");
  background-size: cover;
  background-position: center;
}
.hero__inner{
  position:relative; z-index:2;
  padding-block: clamp(4.5rem, 4rem + 6vw, 9rem) clamp(4rem, 3rem + 4vw, 7rem);
  display:grid; gap: 2.5rem;
}
.hero__content{ max-width: 40rem; }
.hero h1{ color: var(--cream); margin-bottom: .5rem; }
.hero h1 .accent{
  background: linear-gradient(100deg, var(--gold-light), var(--ember));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede{ color: rgba(251,241,225,0.82); margin-top: 1.1rem; }
.hero__actions{ display:flex; flex-wrap:wrap; gap: 1rem; margin-top: 2rem; }
.hero__stats{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
  margin-top: 3rem; max-width: 34rem;
}
.hero__stat{ border-left: 2px solid rgba(251,241,225,0.35); padding-left: .9rem; }
.hero__stat b{ display:block; font-family: var(--font-display); font-size: var(--step-2); color: var(--gold-light); }
.hero__stat span{ font-size: var(--step--1); color: rgba(251,241,225,0.72); }

/* ---------- 8. Marquee ---------- */
.marquee{
  border-block: var(--border-w) solid var(--border-ink);
  background: var(--ink);
  color: var(--cream);
  overflow:hidden;
  padding-block: .8rem;
}
.marquee__track{
  display:flex; gap:3rem; white-space:nowrap;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display); font-size: var(--step-1);
}
.marquee__track span{ display:inline-flex; align-items:center; gap:.7rem; color: var(--gold-light); }
.marquee__track span::after{ content:"✺"; color: var(--accent); font-size:.8em; }
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ---------- 9. Feature / product grid ---------- */
.grid{ display:grid; gap: 1.6rem; }
.grid--3{ grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.grid--2{ grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); }
.grid--4{ grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }

.card{
  background: var(--surface);
  border: var(--border-w) solid var(--border-ink);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-hard-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover{ transform: translate(-3px,-3px); box-shadow: 8px 8px 0 0 var(--border-ink); }
.card__icon{
  width:56px; height:56px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--gold-light), var(--ember));
  border: 1.5px solid var(--border-ink);
  margin-bottom: 1.1rem;
}
.card__icon svg{ width:28px; height:28px; }
.card h3{ font-size: var(--step-1); margin-bottom:.5rem; }
.card p{ color: var(--muted); font-size: var(--step--1); }
.card__heat{ display:flex; gap:4px; margin-top: 1rem; }
.card__heat i{
  width:16px; height:16px; border-radius:4px; border:1.5px solid var(--border-ink);
  background: var(--cream-3);
}
.card__heat i.is-active{ background: var(--ember); }
.card__price{ margin-top: 1rem; font-weight:700; color: var(--accent-dark); font-family: var(--font-display); font-size: var(--step-1); }

/* Product bottle graphic (inline SVG placeholder art) */
.bottle-art{ width:100%; aspect-ratio: 4/3; margin-bottom: 1.2rem; border-radius: var(--radius-sm); overflow:hidden; border: var(--border-w) solid var(--border-ink); }

/* ---------- 10. Heat scale dial ---------- */
.heat-scale{
  display:flex; align-items:center; gap: 1.4rem; flex-wrap:wrap;
}
.heat-scale__dial{
  --pct: 60%;
  position:relative; width:150px; height:150px; border-radius:50%;
  background: conic-gradient(var(--ember) var(--pct), var(--cream-3) var(--pct));
  border: var(--border-w) solid var(--border-ink);
  display:flex; align-items:center; justify-content:center;
  flex: none;
}
.heat-scale__dial::before{
  content:""; position:absolute; inset:14px; border-radius:50%;
  background: var(--surface); border: 1.5px solid var(--border-ink);
}
.heat-scale__value{ position:relative; z-index:1; text-align:center; font-family: var(--font-display); }
.heat-scale__value b{ display:block; font-size: var(--step-2); color: var(--accent-dark); }
.heat-scale__value span{ font-size: var(--step--1); color: var(--muted); }
.heat-scale__legend{ display:grid; gap:.5rem; font-size: var(--step--1); max-width: 22rem; }
.heat-scale__legend li{ display:flex; align-items:center; gap:.6rem; }
.heat-scale__legend i{ width:12px; height:12px; border-radius:3px; background:var(--ember); flex:none; }

/* ---------- 11. Testimonials ---------- */
.testimonial{
  background: var(--surface);
  border: var(--border-w) solid var(--border-ink);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-hard-sm);
  display:flex; flex-direction:column; gap:1rem;
}
.testimonial__stars{ color: var(--gold); letter-spacing: .15em; }
.testimonial p{ font-family: var(--font-display); font-size: var(--step-1); color: var(--ink); }
.testimonial__person{ display:flex; align-items:center; gap:.7rem; font-size: var(--step--1); color: var(--muted); }
.testimonial__avatar{
  width:40px; height:40px; border-radius:50%; flex:none;
  background: linear-gradient(135deg, var(--sage), var(--gold));
  border: 1.5px solid var(--border-ink);
}

/* ---------- 12. CTA banner (in-page, not domain banner) ---------- */
.cta{
  background: linear-gradient(120deg, var(--ember) 0%, var(--ember-dark) 100%);
  color: var(--cream);
  border-top: var(--border-w) solid var(--border-ink);
  border-bottom: var(--border-w) solid var(--border-ink);
}
.cta__inner{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap: 1.6rem; padding-block: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.cta h2{ color: var(--cream); }
.cta .btn{ background: var(--charcoal); color: var(--cream); border-color: var(--charcoal-2); }
.cta .btn:hover{ box-shadow: 6px 6px 0 0 var(--charcoal-2); }

/* ---------- 13. Timeline (about page) ---------- */
.timeline{ display:grid; gap: 0; border-left: var(--border-w) solid var(--border-ink); margin-left: .6rem; }
.timeline__item{ position:relative; padding: 0 0 2.6rem 2.2rem; }
.timeline__item::before{
  content:""; position:absolute; left:-11px; top:.2rem;
  width:20px; height:20px; border-radius:50%;
  background: var(--ember); border: var(--border-w) solid var(--border-ink);
}
.timeline__year{ font-family: var(--font-display); color: var(--accent-dark); font-size: var(--step-1); display:block; margin-bottom:.3rem; }

/* ---------- 14. Values grid ---------- */
.value{ display:flex; gap:1rem; }
.value__icon{
  flex:none; width:48px; height:48px; border-radius:12px;
  border: var(--border-w) solid var(--border-ink);
  background: var(--cream-2);
  display:flex; align-items:center; justify-content:center;
}
.value__icon svg{ width:24px; height:24px; }

/* ---------- 15. Contact ---------- */
.contact-grid{ display:grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px){ .contact-grid{ grid-template-columns: 1.1fr 0.9fr; } }

.form-field{ display:grid; gap:.45rem; margin-bottom: 1.3rem; }
.form-field label{ font-weight:700; font-size: var(--step--1); }
.form-field .req{ color: var(--accent-dark); }
.form-field input,
.form-field select,
.form-field textarea{
  padding: .85rem 1rem;
  border: var(--border-w) solid var(--border-ink);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: var(--step-0);
}
.form-field textarea{ min-height: 140px; resize: vertical; }
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown){ border-color: var(--ember-dark); }
.form-field small{ color: var(--muted); font-size: .8rem; }
.form-error{ color: var(--ember-dark); font-size: .82rem; min-height: 1.1em; display:block; }
.form-status{
  margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  border: var(--border-w) solid var(--border-ink); display:none; font-weight:600;
}
.form-status.is-visible{ display:block; }
.form-status.is-success{ background: #E5EEDA; }
.form-status.is-error{ background: #F6DCD6; }

.info-card{
  background: var(--charcoal); color: var(--cream);
  border-radius: var(--radius-md); border: var(--border-w) solid var(--border-ink);
  padding: 2rem; box-shadow: var(--shadow-hard);
}
.info-card h3{ color: var(--cream); }
.info-list{ display:grid; gap: 1.2rem; margin-top: 1.4rem; }
.info-list__item{ display:flex; gap:.9rem; align-items:flex-start; }
.info-list__item svg{ flex:none; width:22px; height:22px; color: var(--gold-light); margin-top:2px; }
.info-list__item a{ color: var(--gold-light); text-decoration:underline; }
.social-row{ display:flex; gap:.7rem; margin-top:1.6rem; }
.social-row a{
  width:42px; height:42px; border-radius:50%; border: 1.5px solid rgba(251,241,225,0.4);
  display:flex; align-items:center; justify-content:center; text-decoration:none;
}
.social-row a:hover{ background: rgba(251,241,225,0.12); }
.social-row svg{ width:18px; height:18px; }

/* FAQ accordion */
.faq{ border-top: var(--border-w) solid var(--border-ink); }
.faq-item{ border-bottom: var(--border-w) solid var(--border-ink); }
.faq-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding: 1.3rem 0; font-family: var(--font-display); font-size: var(--step-1);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+"; font-size:1.6rem; color: var(--accent-dark); flex:none; transition: transform .25s var(--ease);
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ padding-bottom: 1.3rem; color: var(--muted); max-width: 65ch; }

/* ---------- 16. Footer ---------- */
.site-footer{
  background: var(--charcoal); color: rgba(251,241,225,0.85);
  border-top: var(--border-w) solid var(--border-ink);
  padding-block: 3.5rem 2rem;
}
.footer-grid{
  display:grid; gap: 2.5rem;
  grid-template-columns: 1.3fr repeat(2, 1fr);
}
.footer-brand .brand{ color: var(--cream); margin-bottom: .8rem; }
.footer-brand p{ color: rgba(251,241,225,0.68); font-size: var(--step--1); max-width: 32ch; }
.footer-col h4{ color: var(--gold-light); font-size: var(--step-0); margin-bottom:1rem; }
.footer-col ul{ display:grid; gap:.6rem; }
.footer-col a{ color: rgba(251,241,225,0.8); text-decoration:none; font-size: var(--step--1); }
.footer-col a:hover{ color: var(--gold-light); text-decoration:underline; }
.footer-bottom{
  margin-top: 3rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(251,241,225,0.18);
  display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between;
  font-size: .82rem; color: rgba(251,241,225,0.55);
}
.footer-bottom a{ color: rgba(251,241,225,0.55); }

@media (max-width: 720px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}

/* ---------- 17. 404 page ---------- */
.error-page{
  min-height: 70svh; display:flex; align-items:center;
  background: var(--charcoal); color: var(--cream);
  position:relative; overflow:clip;
}
.error-page__inner{ position:relative; z-index:2; text-align:center; padding-block: 5rem; }
.error-page__code{
  font-family: var(--font-display); font-weight:700;
  font-size: clamp(5rem, 4rem + 8vw, 11rem);
  line-height:1;
  background: linear-gradient(120deg, var(--gold-light), var(--ember));
  -webkit-background-clip: text; background-clip:text; color:transparent;
}
.error-page__actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; }
.error-page__flame{ position:absolute; opacity:.16; }

/* ---------- 18. Reveal-on-scroll ----------
   Only hides content once we know JS is active (html.js, set by an inline
   script in <head>). With JS disabled or blocked, [data-reveal] elements
   are visible immediately — progressive enhancement, not a requirement. */
.js [data-reveal]{
  opacity:0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible{ opacity:1; transform:none; }

/* ---------- 19. Ultra-wide clamp ---------- */
@media (min-width: 1800px){
  :root{ --container: 1440px; }
}

/* ---------- 20. Print ---------- */
@media print{
  .domain-sale-banner, .site-header, .site-nav, .nav-scrim, .site-footer, .marquee{ display:none; }
}
