/* ==========================================================================
   Golden Suds — commercial laundry, Henderson NV
   Design tokens + components. No framework, no build step.
   ========================================================================== */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  /* Color — warm, brand-derived */
  --ink:        #2A1B0D;
  --ink-soft:   #5C4630;
  --ink-mute:   #8A755C;
  --cream:      #FBF8F3;
  --sand:       #F3ECE1;
  --sand-deep:  #E8DDCC;
  --line:       rgba(42, 27, 13, 0.13);
  --line-soft:  rgba(42, 27, 13, 0.07);
  --gold:       #C08A15;
  --gold-deep:  #A2730D;
  --gold-tint:  rgba(192, 138, 21, 0.10);
  --brown:      #583B1F;
  --espresso:   #1E1409;
  --white:      #FFFFFF;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(42, 27, 13, 0.05);
  --shadow:    0 10px 30px -12px rgba(42, 27, 13, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(42, 27, 13, 0.35);

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(var(--space-16), 9vw, var(--space-32));

  --font-display: 'Zodiak', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.08; letter-spacing: -0.015em; }
ul { list-style: none; padding: 0; }

::selection { background: var(--gold); color: #fff; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: var(--space-3) var(--space-5); border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 820px; }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--espresso); color: var(--sand); }

.eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold); flex: none;
}
.section--ink .eyebrow { color: var(--gold); }

h1, .h1 { font-family: var(--font-display); font-size: var(--text-2xl); }
h2, .h2 { font-family: var(--font-display); font-size: var(--text-xl); }
h3, .h3 { font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.01em; }
.lede { font-size: var(--text-base); color: var(--ink-soft); max-width: 62ch; }
.section--ink .lede { color: rgba(243, 236, 225, 0.75); }
.muted { color: var(--ink-mute); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.005em;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--gold); color: #fff; box-shadow: 0 8px 20px -10px rgba(192, 138, 21, 0.9); }
.btn--primary:hover { background: var(--gold-deep); box-shadow: 0 14px 28px -12px rgba(192, 138, 21, 0.95); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: rgba(42, 27, 13, 0.04); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--outline-light { border-color: rgba(243, 236, 225, 0.35); color: var(--sand); }
.btn--outline-light:hover { border-color: var(--sand); background: rgba(243, 236, 225, 0.08); }
.btn--wide { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); min-height: 78px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 42px; width: auto; }
@media (max-width: 480px) { .brand img { height: 34px; } }

.nav { display: flex; align-items: center; gap: clamp(var(--space-4), 2.2vw, var(--space-8)); }
.nav > .btn { display: none; }
.nav a {
  font-size: var(--text-sm); font-weight: 500; text-decoration: none; color: var(--ink-soft);
  position: relative; padding-block: var(--space-2);
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current='page']::after { width: 100%; }
.nav a[aria-current='page'] { color: var(--ink); font-weight: 600; }

.header__actions { display: flex; align-items: center; gap: var(--space-4); }
.header__phone {
  font-size: var(--text-sm); font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: var(--space-2);
}
.header__phone:hover { color: var(--gold-deep); }
.header__phone { white-space: nowrap; }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 10px; cursor: pointer; line-height: 0;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; transition: transform 0.3s var(--ease), opacity 0.2s; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; }
  .header__actions .btn, .header__phone { display: none; }
  .nav {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: var(--space-4) var(--gutter) var(--space-8);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: var(--space-4) 0; border-bottom: 1px solid var(--line-soft); font-size: var(--text-base); }
  .nav a::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: var(--space-5); justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(var(--space-8), 5vw, var(--space-20));
  align-items: center;
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.hero__content { max-width: 40ch; }
.hero h1 { font-size: var(--text-3xl); margin-bottom: var(--space-6); }
.hero h1 em { font-style: normal; color: var(--gold-deep); }
.hero .lede { font-size: var(--text-lg); line-height: 1.45; color: var(--ink-soft); margin-bottom: var(--space-8); }
.hero .btn-row { margin-bottom: var(--space-8); }
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); font-size: var(--text-sm); font-weight: 500; color: var(--ink-soft); }
.hero__meta span { display: inline-flex; align-items: center; gap: var(--space-2); }
.hero__meta span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; left: calc(-1 * var(--space-8)); bottom: var(--space-10);
  background: var(--white); border-radius: var(--radius);
  padding: var(--space-5) var(--space-6); box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: var(--text-xl); color: var(--gold-deep); line-height: 1; }
.hero__badge span { font-size: var(--text-xs); color: var(--ink-mute); letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero__content { max-width: none; }
  .hero__media img { aspect-ratio: 16 / 11; }
  .hero__badge { left: var(--space-4); bottom: var(--space-4); padding: var(--space-4) var(--space-5); }
}

/* ---------- Stat strip ---------- */
.stats { border-block: 1px solid var(--line); background: var(--sand); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats__item { padding: clamp(var(--space-8), 4vw, var(--space-12)) var(--space-6); }
.stats__item + .stats__item { border-left: 1px solid var(--line); }
.stats__item strong {
  display: block; font-family: var(--font-display); font-size: var(--text-xl);
  color: var(--gold-deep); line-height: 1; margin-bottom: var(--space-3);
}
.stats__item h3 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.stats__item p { font-size: var(--text-sm); color: var(--ink-soft); margin: 0; }
@media (max-width: 780px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item + .stats__item { border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------- Section head ---------- */
.sec-head { display: grid; grid-template-columns: 1fr auto; gap: var(--space-6); align-items: end; margin-bottom: clamp(var(--space-8), 4vw, var(--space-16)); }
.sec-head h2 { max-width: 18ch; }
.sec-head p { margin-top: var(--space-4); }
@media (max-width: 780px) { .sec-head { grid-template-columns: 1fr; align-items: start; } }

/* ---------- Cards / items ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: clamp(var(--space-6), 3vw, var(--space-8));
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line); }
.card h3 { margin-bottom: var(--space-3); }
.card p { font-size: var(--text-sm); color: var(--ink-soft); }
.card__rate {
  display: inline-block; margin-top: var(--space-5); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep);
  background: var(--gold-tint); padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill);
}
.card__list { margin-top: var(--space-5); display: grid; gap: var(--space-2); }
.card__list li { font-size: var(--text-sm); color: var(--ink-soft); padding-left: var(--space-5); position: relative; }
.card__list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px;
  border: 1.5px solid var(--gold); border-radius: 50%;
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 5vw, var(--space-20)); align-items: center; }
.split--reverse .split__media { order: -1; }
.split--form { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
@media (max-width: 900px) { .split--form { grid-template-columns: 1fr; } }
.split--form .info-panel { position: sticky; top: 110px; }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); counter-reset: step; }
.step { padding-top: var(--space-6); border-top: 2px solid var(--line); counter-increment: step; }
.step::before {
  content: '0' counter(step);
  display: block; font-family: var(--font-display); font-size: var(--text-lg);
  color: var(--gold); margin-bottom: var(--space-4);
}
.step h3 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--ink-soft); }
.section--ink .step { border-top-color: rgba(243, 236, 225, 0.2); }
.section--ink .step p { color: rgba(243, 236, 225, 0.7); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tags li {
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-5); font-size: var(--text-sm); color: var(--ink-soft);
  background: var(--white);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.tags li:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--space-6); }
@media (max-width: 780px) { .price-grid { grid-template-columns: 1fr; } }
.price {
  border-radius: var(--radius-lg); padding: clamp(var(--space-8), 4vw, var(--space-12));
  border: 1px solid var(--line);
}
.price--feature { background: var(--espresso); color: var(--sand); border-color: transparent; }
.price--feature .price__note { color: rgba(243, 236, 225, 0.68); }
.price__amount { font-family: var(--font-display); font-size: var(--text-2xl); line-height: 1; display: flex; align-items: baseline; gap: var(--space-2); }
.price--feature .price__amount { color: var(--gold); }
.price__amount small { font-size: var(--text-base); font-family: var(--font-body); font-weight: 500; letter-spacing: 0; }
.price h3 { margin: var(--space-5) 0 var(--space-3); }
.price__note { font-size: var(--text-sm); color: var(--ink-soft); }
.price__items { margin-top: var(--space-6); display: grid; gap: var(--space-3); }
.price__items li { display: flex; justify-content: space-between; gap: var(--space-4); font-size: var(--text-sm); padding-bottom: var(--space-3); border-bottom: 1px solid rgba(243, 236, 225, 0.16); }
.price:not(.price--feature) .price__items li { border-bottom-color: var(--line-soft); color: var(--ink-soft); }
.price__items li span:last-child { font-weight: 600; white-space: nowrap; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--espresso); color: var(--sand); border-radius: var(--radius-lg); padding: clamp(var(--space-10), 6vw, var(--space-20)); text-align: center; }
.cta-band h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: rgba(243, 236, 225, 0.72); max-width: 52ch; margin: 0 auto var(--space-8); font-size: var(--text-sm); }
.cta-band .btn-row { justify-content: center; }

/* ---------- Forms ---------- */
.form-shell {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 4vw, var(--space-12)); box-shadow: var(--shadow);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 640px) { .field-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: var(--space-2); }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--text-xs); line-height: 1.3; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.field .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; font-size: var(--text-sm); color: var(--ink);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C4630' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-tint);
}
.field input[aria-invalid='true'], .field textarea[aria-invalid='true'], .field select[aria-invalid='true'] {
  border-color: #B3341F; box-shadow: 0 0 0 3px rgba(179, 52, 31, 0.12);
}
.field .err { font-size: var(--text-xs); color: #B3341F; text-transform: none; letter-spacing: 0; font-weight: 500; min-height: 1em; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { margin-top: var(--space-8); display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-5); }
.form-foot .fine { font-size: var(--text-xs); color: var(--ink-mute); max-width: 42ch; }

.form-status { margin-top: var(--space-5); font-size: var(--text-sm); border-radius: var(--radius-sm); padding: var(--space-4) var(--space-5); display: none; }
.form-status.is-visible { display: block; }
.form-status.is-error { background: rgba(179, 52, 31, 0.08); color: #8E2818; border: 1px solid rgba(179, 52, 31, 0.25); }
.form-status.is-ok { background: var(--gold-tint); color: var(--brown); border: 1px solid rgba(192, 138, 21, 0.3); }

.btn[data-loading='true'] { pointer-events: none; opacity: 0.75; }
.btn .spinner { width: 15px; height: 15px; border: 2px solid rgba(255,255,255,0.45); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
.btn[data-loading='true'] .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success { display: none; text-align: center; padding: var(--space-8) 0; }
.form-success.is-visible { display: block; }
.form-success .tick { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); display: grid; place-items: center; margin: 0 auto var(--space-5); font-size: 26px; }
.form-success h3 { margin-bottom: var(--space-3); }
.form-success p { font-size: var(--text-sm); color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }

/* ---------- Contact info ---------- */
.info-list { display: grid; gap: var(--space-6); }
.info-list dt { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: var(--space-2); }
.info-list dd { margin: 0; font-size: var(--text-base); }
.info-list a { text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.info-list a:hover { color: var(--gold-deep); border-bottom-color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--espresso); color: rgba(243, 236, 225, 0.72); padding-block: clamp(var(--space-12), 6vw, var(--space-20)) var(--space-8); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--space-10); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer img.footer__logo { height: 46px; width: auto; margin-bottom: var(--space-5); }
.footer p { font-size: var(--text-sm); max-width: 34ch; }
.footer h4 { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-bottom: var(--space-5); font-weight: 600; }
.footer ul { display: grid; gap: var(--space-3); }
.footer a { color: rgba(243, 236, 225, 0.72); text-decoration: none; font-size: var(--text-sm); transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--gold); }
.socials { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(243, 236, 225, 0.22);
  display: grid; place-items: center;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.socials a:hover { border-color: var(--gold); background: rgba(192, 138, 21, 0.14); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.footer__bar {
  margin-top: clamp(var(--space-10), 5vw, var(--space-16)); padding-top: var(--space-6);
  border-top: 1px solid rgba(243, 236, 225, 0.14);
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between;
  font-size: var(--text-xs); color: rgba(243, 236, 225, 0.5);
}

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--sand); border-bottom: 1px solid var(--line); padding-block: clamp(var(--space-12), 7vw, var(--space-24)); }
.page-hero h1 { font-size: var(--text-2xl); max-width: 20ch; margin-bottom: var(--space-5); }
.page-hero .lede { font-size: var(--text-lg); line-height: 1.45; }

/* ---------- Reveal on scroll ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js [data-reveal] { opacity: 1; transform: none; } }

/* ---------- Misc ---------- */
.prose p + p { margin-top: var(--space-5); }
.prose p { color: var(--ink-soft); }
.rule { height: 1px; background: var(--line); border: 0; }
.center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

/* ---------- Legal / policy pages ---------- */
.legal-date {
  margin-top: var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.legal { color: var(--ink-soft); font-size: var(--text-base); line-height: 1.75; }
.legal > p { margin-top: var(--space-5); }
.legal > p:first-child { margin-top: 0; }
.legal h2 {
  margin-top: var(--space-16);
  margin-bottom: var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.2;
  color: var(--ink);
  padding-top: var(--space-8);
  border-top: 1px solid var(--line);
}
.legal > h2:first-of-type { border-top: 0; padding-top: 0; margin-top: var(--space-12); }
.legal h3 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.3;
  color: var(--ink);
}
.legal ul {
  margin-top: var(--space-5);
  padding-left: var(--space-6);
  list-style: none;
}
.legal ul li {
  position: relative;
  margin-top: var(--space-3);
  padding-left: var(--space-5);
}
.legal ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.legal strong { color: var(--ink); font-weight: 600; }
.legal a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  overflow-wrap: anywhere;
}
.legal a:hover { color: var(--ink); }
.footer__bar-link { color: rgba(243, 236, 225, 0.7); text-decoration: underline; text-underline-offset: 3px; }
.footer__bar-link:hover { color: var(--gold); }
