/* ==========================================================================
   god100.com — style.css
   Theme: "Celestial Serif"
   60% luminous white/ivory #FAFAFA   30% midnight navy #090E1C   10% amber #D97706
   Type: Cormorant Garamond (display) / Outfit (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* 60% — luminous base */
  --ivory:   #fafafa;
  --ivory-2: #f4f1ec;
  --ivory-3: #ece7df;
  --ivory-4: #e2dbd1;

  /* 30% — midnight navy */
  --navy:    #090e1c;
  --navy-2:  #111829;
  --navy-3:  #1c2540;
  --navy-4:  #2d3a5c;
  --navy-dim: rgba(9, 14, 28, 0.62);

  /* 10% — amber / gold */
  --amber:    #d97706;
  --amber-2:  #f59e0b;
  --amber-3:  #fbbf24;
  --amber-pale: rgba(217, 119, 6, 0.1);
  --amber-rule: rgba(217, 119, 6, 0.28);

  /* Rules */
  --rule:       rgba(9, 14, 28, 0.1);
  --rule-2:     rgba(9, 14, 28, 0.18);
  --rule-light: rgba(250, 250, 250, 0.12);
  --rule-light2: rgba(250, 250, 250, 0.22);

  /* Type */
  --display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --body:    "Outfit", "Helvetica Neue", Arial, sans-serif;

  /* Scale */
  --step--1: clamp(0.8rem,  0.78rem + 0.09vw, 0.86rem);
  --step-0:  clamp(0.95rem, 0.92rem + 0.14vw, 1.04rem);
  --step-1:  clamp(1.14rem, 1.08rem + 0.28vw, 1.32rem);
  --step-2:  clamp(1.42rem, 1.26rem + 0.72vw, 1.94rem);
  --step-3:  clamp(1.9rem,  1.5rem  + 1.8vw,  3.2rem);
  --step-4:  clamp(2.8rem,  1.8rem  + 4.5vw,  6rem);

  /* Layout */
  --shell: min(1160px, calc(100% - 40px));
  --ease:  cubic-bezier(0.22, 0.61, 0.36, 1);

  --shadow-sm: 0 2px 12px rgba(9, 14, 28, 0.08);
  --shadow-md: 0 12px 40px rgba(9, 14, 28, 0.14);
  --shadow-lg: 0 24px 72px rgba(9, 14, 28, 0.2);
  --glow:      0 0 32px rgba(217, 119, 6, 0.22);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 78px; }

body {
  min-height: 100vh;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--amber); text-underline-offset: 3px; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

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

::selection { background: var(--amber); color: var(--ivory); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--amber);
  color: var(--ivory);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 160ms var(--ease);
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. Domain-for-sale banner — navy / amber adaptation
   -------------------------------------------------------------------------- */
.domain-sale-banner {
  position: relative;
  z-index: 9999;
  width: 100%;
  color: var(--ivory);
  background:
    radial-gradient(circle at 10% 50%, rgba(217, 119, 6, 0.32), transparent 38%),
    linear-gradient(100deg, #04060f 0%, var(--navy-2) 55%, #1a1205 100%);
  border-bottom: 1px solid var(--amber-rule);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  font-family: var(--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(--display);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.18rem);
  letter-spacing: -0.01em;
}

.domain-sale-banner__text span {
  color: rgba(250, 250, 250, 0.68);
  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 22px;
  color: var(--navy);
  background: var(--amber-2);
  border: 1px solid var(--amber-3);
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.28), var(--glow);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms var(--ease), background 160ms var(--ease),
    box-shadow 160ms var(--ease);
}

.domain-sale-banner__button:hover,
.domain-sale-banner__button:focus-visible {
  background: var(--amber-3);
  box-shadow: 0 10px 26px rgba(217, 119, 6, 0.4), var(--glow);
  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%; }
}

/* --------------------------------------------------------------------------
   4. Utilities
   -------------------------------------------------------------------------- */
.shell { width: var(--shell); margin-inline: auto; }

/* Amber rule — a thin divider */
.amber-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber) 30%, var(--amber-2) 70%, transparent);
  opacity: 0.45;
}

/* Chapter number / eyebrow label */
.chapter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--amber);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.chapter--roman {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
}

.chapter::before,
.chapter::after {
  content: "";
  flex: 1 1 0;
  max-width: 38px;
  height: 1px;
  background: var(--amber);
  opacity: 0.5;
}

.lede {
  max-width: 60ch;
  color: var(--navy-dim);
  font-size: var(--step-1);
  line-height: 1.64;
}

.section { padding-block: clamp(64px, 9vw, 120px); }

.section--navy {
  background: var(--navy);
  color: var(--ivory);
  border-block: none;
}

.section--navy .lede { color: rgba(250, 250, 250, 0.62); }
.section--navy h2    { color: var(--ivory); }
.section--navy a     { color: var(--amber-2); }

.section--tint {
  background: var(--ivory-2);
  border-block: 1px solid var(--rule);
}

.section__head {
  max-width: 780px;
  margin-bottom: clamp(38px, 5vw, 60px);
}

.section__head h2 { font-size: var(--step-3); margin-bottom: 18px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--body);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms var(--ease), background 160ms var(--ease),
    border-color 160ms var(--ease), color 160ms var(--ease),
    box-shadow 160ms var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn--amber {
  background: var(--amber);
  border-color: var(--amber-2);
  color: var(--ivory);
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.24), var(--glow);
}
.btn--amber:hover {
  background: var(--amber-2);
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.36), var(--glow);
}

.btn--navy {
  background: var(--navy);
  border-color: var(--navy-2);
  color: var(--ivory);
}
.btn--navy:hover {
  background: var(--navy-3);
}

.btn--outline {
  background: transparent;
  border-color: var(--rule-2);
  color: var(--navy);
}
.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn--outline-light {
  background: transparent;
  border-color: var(--rule-light2);
  color: var(--ivory);
}
.btn--outline-light:hover {
  border-color: var(--amber-2);
  color: var(--amber-2);
}

.btn--sm { min-height: 44px; padding: 0 22px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}

.site-header.is-stuck {
  background: rgba(250, 250, 250, 0.97);
  border-bottom-color: var(--rule);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy);
}

.brand__mark { width: 38px; height: 38px; flex: 0 0 auto; }

.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.26rem;
  letter-spacing: -0.015em;
  color: var(--navy);
}

.brand__name span { color: var(--amber); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--rule-2);
  border-radius: 3px;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform 200ms var(--ease), opacity 160ms var(--ease);
}
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: relative; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 4px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; align-items: center; gap: 26px; }

.site-nav__link {
  position: relative;
  padding-block: 6px;
  color: var(--navy-dim);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 160ms var(--ease);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] { color: var(--navy); }
.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after { transform: scaleX(1); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    top: var(--nav-offset, 74px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 24px;
    background: var(--ivory);
    border-bottom: 1px solid var(--amber-rule);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms var(--ease), opacity 200ms var(--ease), visibility 220ms;
  }

  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__link { display: block; padding: 14px 4px; border-bottom: 1px solid var(--rule); font-size: 1.06rem; }
  .site-nav__link::after { display: none; }
  .site-nav .btn { margin-top: 18px; width: 100%; }
}

/* --------------------------------------------------------------------------
   6. Hero — editorial, centred, luminous
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 11vw, 152px);
  background: var(--ivory);
}

/* Celestial halo rings — the signature background element */
.hero__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(500px, 90vw, 980px);
  height: clamp(500px, 90vw, 980px);
  pointer-events: none;
  z-index: 0;
}

.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--amber-rule);
}

.hero__ring:nth-child(1) { inset: 12%; }
.hero__ring:nth-child(2) { inset: 24%; opacity: 0.7; }
.hero__ring:nth-child(3) { inset: 36%; opacity: 0.5; }
.hero__ring:nth-child(4) { inset: 48%; opacity: 0.35; }

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
  color: var(--amber);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero__ornament::before,
.hero__ornament::after {
  content: "✦";
  font-size: 0.6rem;
  opacity: 0.6;
}

.hero h1 {
  font-size: var(--step-4);
  margin-bottom: 24px;
  max-width: 20ch;
  margin-inline: auto;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero__sub {
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: 36px;
  color: var(--navy-dim);
  font-size: var(--step-1);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 52px;
}

/* THE SIGNATURE ELEMENT: a glass panel with domain stats */
.god-card {
  position: relative;
  margin-inline: auto;
  max-width: 640px;
  background: rgba(250, 250, 250, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 12px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.god-card__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.god-card__cell {
  padding: 24px 18px;
  border-right: 1px solid var(--rule);
  text-align: center;
  position: relative;
}

.god-card__cell:last-child { border-right: 0; }

.god-card__cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--amber);
  border-radius: 0 0 4px 4px;
  opacity: 0.7;
}

.god-card__value {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.god-card__label {
  display: block;
  color: var(--navy-dim);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 540px) {
  .god-card__inner { grid-template-columns: repeat(2, 1fr); }
  .god-card__cell:nth-child(2) { border-right: 0; }
  .god-card__cell:nth-child(3),
  .god-card__cell:nth-child(4) { border-top: 1px solid var(--rule); }
  .god-card__cell:nth-child(4) { border-right: 0; }
}

/* --------------------------------------------------------------------------
   7. Value proposition grid — open, airy, serif headers
   -------------------------------------------------------------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-item {
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--rule);
  transition: border-color 220ms var(--ease);
}

.value-item:hover { border-color: var(--amber); }
.value-item:hover .value-item__icon { color: var(--amber); }

.value-item__number {
  position: absolute;
  top: -18px;
  right: 0;
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--rule-2);
  user-select: none;
}

.value-item__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--navy-4);
  transition: color 220ms var(--ease);
}

.value-item h3 {
  font-size: var(--step-2);
  margin-bottom: 10px;
}

.value-item p {
  color: var(--navy-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   8. Domain spec table — clean, editorial
   -------------------------------------------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.spec-table th,
.spec-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}

.spec-table th {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-dim);
  background: var(--ivory-3);
  border-bottom: 2px solid var(--rule-2);
}

.spec-table tbody tr { transition: background 120ms var(--ease); }
.spec-table tbody tr:hover { background: var(--amber-pale); }

.spec-table .product-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
}

.spec-table .product-note { color: var(--navy-dim); }

.prestige {
  display: flex;
  gap: 4px;
  align-items: center;
}

.prestige__star { color: var(--amber); font-size: 0.9rem; }
.prestige__star--off { color: var(--rule-2); }

/* --------------------------------------------------------------------------
   9. Pull quote — editorial centerpiece
   -------------------------------------------------------------------------- */
.pull-quote {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(48px, 6vw, 80px);
}

.pull-quote__mark {
  font-family: var(--display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--amber-3);
  margin-bottom: 16px;
  display: block;
  opacity: 0.5;
}

.pull-quote__text {
  font-family: var(--display);
  font-size: var(--step-3);
  font-weight: 400;
  font-style: italic;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.pull-quote__attr {
  display: block;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

/* --------------------------------------------------------------------------
   10. Stats — navy background
   -------------------------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}

.stats-row__item {
  padding: 40px 28px;
  border-right: 1px solid var(--rule-light);
  text-align: center;
}

.stats-row__item:last-child { border-right: 0; }

.stats-row__value {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 1.4rem + 2.6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--amber-2);
  line-height: 1;
}

.stats-row__label {
  display: block;
  margin-top: 12px;
  color: rgba(250, 250, 250, 0.54);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   11. CTA band — amber
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 8vw, 104px);
  background: var(--amber);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(251, 191, 36, 0.6), transparent 55%);
}

.cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: var(--step-3);
  color: var(--navy);
  margin-bottom: 12px;
}

.cta p { color: rgba(9, 14, 28, 0.7); max-width: 50ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

@media (max-width: 800px) {
  .cta__inner { grid-template-columns: 1fr; }
  .cta__actions { justify-content: flex-start; }
}

/* --------------------------------------------------------------------------
   12. Forms
   -------------------------------------------------------------------------- */
.form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--ivory);
  border: 1px solid var(--rule-2);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
}

.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.field { display: grid; gap: 7px; }

.field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-dim);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  background: var(--ivory-2);
  border: 1px solid var(--rule-2);
  border-radius: 4px;
  font-size: 0.96rem;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}

.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--amber);
  background: var(--ivory);
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(9, 14, 28, 0.28); }

.field--invalid input,
.field--invalid select,
.field--invalid textarea { border-color: #dc2626; }

.field__error {
  display: none;
  color: #dc2626;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.field--invalid .field__error { display: block; }

.form__note { color: var(--navy-dim); font-size: 0.84rem; }

.form__status {
  display: none;
  padding: 14px 16px;
  border: 1px solid var(--amber-rule);
  border-radius: 4px;
  background: var(--amber-pale);
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 600;
}
.form__status.is-visible { display: block; }

/* Info list */
.info-list { display: grid; gap: 0; border-top: 1px solid var(--rule); }

.info-list__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.info-list__row dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-dim);
  padding-top: 3px;
}

.info-list__row dd { font-size: 0.96rem; color: var(--navy); font-weight: 500; }

/* FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); overflow: hidden; }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--amber);
  font-family: var(--body);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 220ms var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 0 18px; color: var(--navy-dim); font-size: 0.96rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   13. Page head
   -------------------------------------------------------------------------- */
.page-head {
  padding-block: clamp(52px, 8vw, 96px);
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

/* Ambient halo rings on page head */
.page-head::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -60%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(217, 119, 6, 0.18);
  pointer-events: none;
}

.page-head::after {
  content: "";
  position: absolute;
  right: 2%;
  top: -30%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(217, 119, 6, 0.12);
  pointer-events: none;
}

.page-head > * { position: relative; z-index: 2; }
.page-head h1 { font-size: var(--step-3); margin-bottom: 16px; color: var(--ivory); }
.page-head .lede { color: rgba(250, 250, 250, 0.62); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.44);
}
.breadcrumb a { color: rgba(250, 250, 250, 0.44); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber-2); }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; }

/* Prose */
.prose h2 { font-size: var(--step-2); margin-bottom: 14px; color: var(--navy); }
.prose h3 { font-size: var(--step-1); margin-bottom: 10px; color: var(--navy); }
.prose p  { color: var(--navy-dim); margin-bottom: 20px; font-size: 0.96rem; line-height: 1.78; }
.prose > * + h2 { margin-top: 46px; }
.prose > * + h3 { margin-top: 32px; }
.prose strong   { color: var(--navy); }

/* --------------------------------------------------------------------------
   14. 404
   -------------------------------------------------------------------------- */
.error-page {
  display: grid;
  place-items: center;
  min-height: 70vh;
  padding-block: clamp(60px, 10vw, 120px);
  text-align: center;
  background: var(--navy);
  color: var(--ivory);
}

.error-page__ornament {
  font-family: var(--display);
  font-size: clamp(5rem, 4rem + 10vw, 12rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(217, 119, 6, 0.4);
  margin-bottom: 24px;
}

.error-page h1 { font-size: var(--step-3); color: var(--ivory); margin-bottom: 14px; }
.error-page p  { max-width: 46ch; margin-inline: auto; color: rgba(250, 250, 250, 0.56); margin-bottom: 28px; font-size: 0.96rem; }
.error-page__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding-block: clamp(52px, 7vw, 80px) 30px;
  background: var(--navy);
  color: var(--ivory);
  border-top: 1px solid var(--amber-rule);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(140px, 1fr));
  gap: 38px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule-light);
}

.site-footer p {
  max-width: 38ch;
  margin-top: 16px;
  color: rgba(250, 250, 250, 0.52);
  font-size: 0.9rem;
}

.site-footer h4 {
  margin-bottom: 14px;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.42);
}

.site-footer ul { display: grid; gap: 10px; }

.site-footer a {
  color: rgba(250, 250, 250, 0.66);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 160ms var(--ease);
}
.site-footer a:hover { color: var(--amber-2); }

.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  color: rgba(250, 250, 250, 0.26);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   16. Reveal + reduced motion
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 580ms var(--ease), transform 580ms var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .domain-sale-banner, .site-header, .cta { display: none; }
  body { background: #fff; color: #000; }
}
