/* ═══════════════════════════════════════════════════════════
   SCORPION TINT & ACCESSORIES, LLC
   Design system — charcoal / cream / ember
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Charcoal ── */
  --char-900: #1c1b19;
  --char-800: #232220;
  --char-700: #2c2a27;
  --char-600: #383531;
  --char-500: #4a4641;

  /* ── Cream ── */
  --cream-50:  #fffdf8;
  --cream-100: #f7f2e8;
  --cream-200: #efe8da;
  --cream-300: #e2d8c5;
  --cream-400: #b9ab97;

  /* ── Ember (from the logo glow) ── */
  --ember:      #ff8a1f;
  --ember-lit:  #ffb65c;
  --ember-deep: #c25a0c;
  /* Deeper cut for use on cream — the bright ember fails contrast on light. */
  --ember-ink:  #a8500b;
  --ember-ink-2:#d0691a;

  /* ═══ Semantic tokens — dark is the default ═══
     Sections carrying .tone-light override these, and every component below
     reads from them, so a section flips its whole colour scheme with one class. */
  --bg: var(--char-900);
  --surface: var(--char-800);
  --surface-2: var(--char-700);
  --text: var(--cream-100);
  --text-dim: var(--cream-400);
  --line: rgba(247, 242, 232, 0.12);
  --line-accent: rgba(255, 138, 31, 0.26);
  --accent: var(--ember);
  --accent-text: var(--ember-lit);
  --on-accent: var(--char-900);
  --grad-ember: linear-gradient(100deg, var(--ember-lit), var(--ember) 45%, var(--ember-deep));
  --card-shadow: 0 26px 60px -30px rgba(0, 0, 0, 0.9);

  /* ── Type ── */
  --f-display: 'Sora', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-serif: 'Cormorant Garamond', Georgia, serif;

  /* ── Rhythm ── */
  --wrap: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --sec-y: clamp(5rem, 11vw, 9.5rem);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;

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

/* ── Light sections ── */
.tone-light {
  --bg: var(--cream-100);
  --surface: var(--cream-50);
  --surface-2: var(--cream-200);
  --text: var(--char-800);
  --text-dim: #6f675b;
  --line: rgba(35, 34, 32, 0.13);
  --line-accent: rgba(168, 80, 11, 0.28);
  --accent: var(--ember-ink);
  --accent-text: var(--ember-ink);
  --on-accent: #fffaf2;
  --grad-ember: linear-gradient(100deg, var(--ember-ink-2), var(--ember-ink) 55%, #7d3a05);
  --card-shadow: 0 22px 50px -28px rgba(35, 34, 32, 0.35);

  background: var(--bg);
  color: var(--text);
}
.tone-light.section--warm { --bg: var(--cream-200); --surface: var(--cream-50); }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--char-900);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--ember); color: var(--char-900); }

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

/* Fixed nav would otherwise cover a section's heading when jumped to. */
section[id], [id].section { scroll-margin-top: 84px; }

/* Filter defs must stay in the render tree for Safari to resolve url(#…),
   so park them out of flow rather than using display:none. */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ═══════════════ ATMOSPHERE ═══════════════ */

.grain {
  position: fixed;
  inset: -50%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 1%); }
}

/* ═══════════════ LAYOUT ═══════════════ */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sec-y); position: relative; }

/* ═══════════════ TYPE ═══════════════ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.section__head { max-width: 660px; margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }

.section__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section__lede {
  margin-top: 1.15rem;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-dim);
  max-width: 52ch;
  font-weight: 300;
}

.grad {
  background: var(--grad-ember);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ═══════════════ SCRIPTURE ═══════════════ */

.scripture {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-text);
}

/* The verse is a brand element, so it gets set as live type rather than left
   to the logo's baked-in copy, which is unreadable once the art is scaled down.
   The rule underneath echoes the flourish in the original artwork. */
.scripture--hero {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: #f0c88a;
  text-shadow: 0 0 24px rgba(255, 170, 70, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.scripture--hero::after {
  content: '';
  width: clamp(120px, 22vw, 190px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 200, 138, 0.7), transparent);
}

.scripture--sm {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  margin-top: 1.5rem;
  opacity: 0.85;
}
.scripture--sm::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.scripture--block {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 1.25rem;
  color: var(--text-dim);
  border-left: 2px solid var(--line-accent);
  padding-left: 1.2rem;
  margin-block: 1.75rem;
}

/* ── Full-width verse band ── */
.verse {
  background: var(--char-800);
  border-block: 1px solid rgba(247, 242, 232, 0.09);
  padding-block: clamp(2.2rem, 4vw, 3.2rem);
}
.verse__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}
.verse__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 31, 0.4), transparent);
}
.verse__text {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: var(--cream-200);
  text-align: center;
  max-width: 46ch;
  /* Keeps the verse centred once the flanking rules drop out below 980px. */
  margin-inline: auto;
  line-height: 1.5;
}
.verse__ref {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ember);
}

/* ═══════════════ FLAG ═══════════════ */

.flag-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-block: 1.6rem;
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.flag {
  width: 42px;
  height: auto;
  flex: none;
  border-radius: 2px;
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.45);
  outline: 1px solid var(--line);
}
.flag-line--sm { margin: 1.5rem 0 0; font-size: 0.62rem; letter-spacing: 0.2em; }
.flag-line--sm .flag { width: 32px; }

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  --btn-py: 0.85rem;
  --btn-px: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.btn--lg { --btn-py: 1.05rem; --btn-px: 2.2rem; font-size: 0.86rem; }
.btn--sm { --btn-py: 0.6rem; --btn-px: 1.1rem; font-size: 0.72rem; }
.btn--full { width: 100%; }

.btn--solid {
  background: var(--grad-ember);
  color: var(--on-accent);
  box-shadow: 0 6px 26px -8px rgba(194, 90, 12, 0.5);
}
.btn--solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.4), transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -10px rgba(194, 90, 12, 0.7);
}
.btn--solid:hover::after { transform: translateX(130%); }

.btn--ghost {
  color: var(--text);
  border-color: var(--line-accent);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-text);
  background: rgba(255, 138, 31, 0.08);
  transform: translateY(-2px);
}

/* ═══════════════ NAV ═══════════════ */

/* Solid charcoal at all times. It can't fade to transparent over the cream hero
   the way it did over a dark one — the brand mark is a glow on a dark plate and
   would fall apart on cream. A standing charcoal bar also anchors the light
   page and carries the charcoal through the top of every section. */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding-block: 1.05rem;
  background: rgba(26, 25, 23, 0.94);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(247, 242, 232, 0.09);
  transition: padding 0.45s var(--ease), box-shadow 0.45s var(--ease),
              background 0.45s var(--ease);
}
.nav.is-stuck {
  background: rgba(22, 21, 19, 0.97);
  padding-block: 0.65rem;
  box-shadow: 0 14px 40px -20px rgba(28, 27, 25, 0.55);
}

.nav__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand { display: flex; align-items: center; gap: 0.55rem; }
.nav__mark {
  height: 46px;
  width: auto;
  transition: height 0.45s var(--ease);
}
.nav.is-stuck .nav__mark { height: 38px; }

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  font-family: var(--f-display);
  font-weight: 800;
  font-style: italic;
  color: var(--cream-100);
}
.nav__wordmark-main { font-size: 1.15rem; letter-spacing: 0.02em; }
.nav__wordmark-sub {
  font-size: 0.68rem;
  letter-spacing: 0.44em;
  color: var(--ember);
  font-weight: 600;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav__link {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream-400);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(100deg, var(--ember-lit), var(--ember));
  transition: width 0.4s var(--ease);
}
.nav__link:hover { color: var(--cream-50); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--ember); }

.nav__cta { margin-left: 0.4rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 50%;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--cream-100);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s ease, width 0.35s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════ HERO ═══════════════ */

/* Charcoal hero. The logo is a glow on a dark ground, so this is simply its
   native environment — it needs no containing shape here, and the cream picks
   up immediately below at the dune line. */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(6.5rem, 13vh, 9rem) var(--gutter) clamp(5rem, 12vh, 7rem);
  overflow: hidden;
  background:
    radial-gradient(80% 55% at 50% 40%, rgba(255, 138, 31, 0.10), transparent 62%),
    radial-gradient(90% 55% at 50% 106%, rgba(194, 90, 12, 0.22), transparent 66%),
    linear-gradient(180deg, var(--char-900) 0%, var(--char-800) 48%, #241c14 100%);
}

.hero__sun {
  position: absolute;
  left: 50%; bottom: 10%;
  width: min(720px, 100vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 178, 92, 0.13), rgba(194, 90, 12, 0.07) 46%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* ── Logo stage ── */
.hero__stage {
  position: relative;
  width: min(560px, 86vw);
  display: grid;
  place-items: center;
}

/* Soft ember bloom behind the mark, so it sits in light rather than on a flat
   field. No hard edge — on charcoal it needs no containing shape. */
.hero__stage::before {
  content: '';
  position: absolute;
  inset: -22% -12%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 138, 31, 0.17) 32%, rgba(255, 150, 50, 0.06) 58%, transparent 76%);
  filter: blur(26px);
  z-index: -1;
  animation: breathe 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%,100% { opacity: 0.82; transform: scale(1); }
  50%     { opacity: 1;    transform: scale(1.05); }
}

.hero__logo { width: 100%; }

/* ── Dunes ──
   Sand tones layered light-to-cream so the hero settles into the section below
   instead of stopping at an edge. */
.dunes {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(190px, 32vh, 360px);
  pointer-events: none;
  line-height: 0;
}
.dunes svg { position: absolute; bottom: 0; width: 100%; display: block; }
/* Graded charcoal -> sand -> cream, so the dark hero hands off to the light
   section below instead of stopping at a hard line. */
.dunes__far  { height: 100%; fill: rgba(140, 104, 62, 0.32); }
.dunes__mid  { height: 72%;  fill: rgba(196, 168, 126, 0.82); }
.dunes__near { height: 46%;  fill: var(--cream-100); }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 5.4vw, 3.5rem);
  line-height: 1.07;
  letter-spacing: -0.035em;
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--text);
}

.hero__sub {
  margin-top: 1.25rem;
  max-width: 54ch;
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  font-weight: 300;
  color: var(--text-dim);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2rem;
  margin-top: 2.5rem;
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__trust li { display: flex; align-items: center; gap: 0.6rem; }
.hero__trust .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.hero__scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, var(--ember-deep));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ember);
  animation: scrollDrop 2.2s var(--ease) infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); }
  60%,100% { transform: translateY(100%); }
}
.hero__scroll-text {
  font-family: var(--f-display);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ═══════════════ PAGE HEADER ═══════════════
   Inner pages get this in place of the home page's hero. Charcoal, so the
   fixed nav always has dark ground beneath it on every page. */

.pagehead {
  position: relative;
  overflow: hidden;
  padding: clamp(8rem, 15vh, 11rem) var(--gutter) clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(255, 138, 31, 0.10), transparent 62%),
    linear-gradient(180deg, var(--char-900), var(--char-800));
}
.pagehead::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 31, 0.35), transparent);
}
.pagehead__inner { max-width: 760px; margin-inline: auto; position: relative; z-index: 1; }
.pagehead__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--cream-50);
}
.pagehead__lede {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  font-weight: 300;
  color: var(--cream-400);
}
.pagehead .scripture--hero { color: #f0c88a; margin-bottom: 1.2rem; }
.pagehead .scripture--hero::after {
  background: linear-gradient(90deg, transparent, rgba(240, 200, 138, 0.7), transparent);
}

/* Breadcrumb */
.crumb {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--char-500);
}
.crumb a { color: var(--cream-400); transition: color 0.3s ease; }
.crumb a:hover { color: var(--ember); }
.crumb span { color: var(--ember); }

/* ═══════════════ TEASER CTA ═══════════════ */

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  text-align: center;
  background:
    radial-gradient(70% 130% at 50% 50%, rgba(255, 138, 31, 0.12), transparent 65%),
    var(--char-900);
}
.cta-band__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.4vw, 2.9rem);
  letter-spacing: -0.03em;
  color: var(--cream-50);
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band__sub {
  margin-top: 1rem;
  color: var(--cream-400);
  font-weight: 300;
  max-width: 48ch;
  margin-inline: auto;
}
.cta-band__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}
.cta-band .btn--ghost { color: var(--cream-50); border-color: rgba(255, 138, 31, 0.4); }

/* Centred section head, for pages that want it */
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .section__lede { margin-inline: auto; }

.section__more { margin-top: 2.5rem; text-align: center; }

/* ═══════════════ SERVICE DETAIL ROWS ═══════════════ */

.svc {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
/* Alternate which side the image sits on down the page. */
.svc--flip .svc__media { order: 2; }

.svc__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  box-shadow: 0 32px 70px -45px rgba(35, 34, 32, 0.6);
}
.svc__ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 100% at 30% 0%, rgba(255, 138, 31, 0.12), transparent 60%),
    repeating-linear-gradient(135deg, rgba(35, 34, 32, 0.075) 0 12px, transparent 12px 24px),
    var(--surface-2);
}
.svc__ph::after {
  content: attr(data-label);
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  text-align: center;
  padding: 0 1rem;
}
.svc__text p { color: var(--text-dim); font-weight: 300; margin-top: 1.1rem; }
.svc__text .card__list { margin-block: 1.6rem; }
.svc__text .btn { margin-top: 0.4rem; }

/* ═══════════════ FAQ ═══════════════ */

.faq { display: grid; gap: 0.9rem; max-width: 820px; margin-inline: auto; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 0 1.5rem;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.faq__item[open] { border-color: var(--line-accent); box-shadow: var(--card-shadow); }

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 2.2rem 1.25rem 0;
  position: relative;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
/* Plus sign that rotates into a minus when the item opens. */
.faq__item summary::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 13px; height: 13px;
  margin-top: -6px;
  background:
    linear-gradient(var(--accent), var(--accent)) center/13px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center/1.5px 13px no-repeat;
  transition: transform 0.35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__item p {
  padding-bottom: 1.35rem;
  color: var(--text-dim);
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 62ch;
}

/* ═══════════════ MARQUEE ═══════════════ */

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-block: 1.15rem;
  position: relative;
}
/* Gradient overlays rather than a mask: a mask would fade the strip's own
   background out too, exposing the charcoal body colour at both edges. */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 14%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee__track span {
  font-family: var(--f-display);
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee__track .sep { color: var(--accent); font-size: 0.65rem; letter-spacing: 0; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ═══════════════ CARDS ═══════════════ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.card {
  position: relative;
  padding: clamp(1.9rem, 3.2vw, 2.6rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(120% 90% at 50% 0%, rgba(255, 138, 31, 0.10), transparent 62%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-7px);
  border-color: var(--line-accent);
  box-shadow: var(--card-shadow);
}
.card:hover::before { opacity: 1; }

.card__num {
  position: absolute;
  top: 1.5rem; right: 1.7rem;
  font-family: var(--f-display);
  font-size: 3.6rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: var(--text);
  opacity: 0.07;
  transition: opacity 0.5s var(--ease), color 0.5s var(--ease);
}
.card:hover .card__num { color: var(--accent); opacity: 0.18; }

.card__icon {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid var(--line-accent);
  background: rgba(255, 138, 31, 0.07);
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}
.card__icon svg { width: 30px; height: 30px; }
.card:hover .card__icon { background: rgba(255, 138, 31, 0.14); transform: scale(1.05); }

.card__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.card__body { color: var(--text-dim); font-weight: 300; font-size: 0.95rem; }

.card__list { margin-block: 1.5rem; display: grid; gap: 0.6rem; }
.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.82;
}
.card__list li::before {
  content: '';
  flex: none;
  width: 5px; height: 5px;
  margin-top: 0.62em;
  border-radius: 50%;
  background: var(--accent);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.card__link span { transition: transform 0.35s var(--ease); }
.card__link:hover span { transform: translateX(5px); }

/* ═══════════════ STATS ═══════════════ */

.stats {
  background:
    radial-gradient(80% 140% at 50% 50%, rgba(255,138,31,0.07), transparent 65%),
    var(--char-900);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.2rem 1rem;
  text-align: center;
}
.stat { position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 15%;
  width: 1px; height: 70%;
  background: linear-gradient(180deg, transparent, rgba(255,138,31,0.28), transparent);
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(100deg, var(--ember-lit), var(--ember) 45%, var(--ember-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label {
  margin-top: 0.6rem;
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-400);
}

/* ═══════════════ GALLERY ═══════════════ */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  position: relative;
}
.gallery__item--wide { grid-column: span 2; aspect-ratio: 8 / 3; }

.gallery__ph {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 100% at 30% 0%, rgba(255, 138, 31, 0.12), transparent 60%),
    repeating-linear-gradient(135deg, rgba(35, 34, 32, 0.075) 0 12px, transparent 12px 24px),
    var(--surface-2);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.gallery__ph::after {
  content: attr(data-label);
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  text-align: center;
  padding: 0 1rem;
}
.gallery__item:hover .gallery__ph { transform: scale(1.05); filter: brightness(1.04); }

/* Real photography. The containers already set the aspect ratio, so cover
   crops rather than letterboxing whatever shape the source photo is. */
.gallery__img,
.svc__img,
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Apparel / brand board — shown whole, not cropped, so the detail callouts
   down the right side stay readable. */
.apparel {
  max-width: 1000px;
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}
.apparel img { width: 100%; height: auto; display: block; }

.gallery__img { transition: transform 0.7s var(--ease); }
.gallery__item { position: relative; background: var(--surface-2); }
.gallery__item:hover .gallery__img { transform: scale(1.05); }

/* Warm the photos very slightly toward the ember palette so a mixed set of
   stock shots still reads as one gallery. */
.gallery__img, .svc__img, .about__img { filter: saturate(0.92) contrast(1.03); }

.gallery__note { margin-top: 1.4rem; font-size: 0.82rem; color: var(--text-dim); }
.gallery__note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8em;
  color: var(--accent);
  background: rgba(255, 138, 31, 0.1);
  padding: 0.2em 0.5em;
  border-radius: 4px;
}

/* ═══════════════ PROCESS ═══════════════ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.step {
  padding: 2rem 1.6rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.step:hover {
  border-color: var(--line-accent);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
}
.step__n {
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.step h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.step p { font-size: 0.9rem; color: var(--text-dim); font-weight: 300; }

/* ═══════════════ ABOUT ═══════════════ */

.about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__media { position: relative; }
.about__frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 90px -55px rgba(35, 34, 32, 0.7);
}
.about__ph {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(255, 138, 31, 0.12), transparent 60%),
    repeating-linear-gradient(135deg, rgba(35, 34, 32, 0.05) 0 14px, transparent 14px 28px),
    var(--surface-2);
}
.about__ph::after {
  content: attr(data-label);
  font-family: var(--f-display);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about__badge {
  position: absolute;
  right: -14px; bottom: 30px;
  width: 108px; height: 108px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--grad-ember);
  color: var(--on-accent);
  box-shadow: 0 14px 40px -14px rgba(168, 80, 11, 0.6);
  font-family: var(--f-display);
}
.about__badge-top { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; }
.about__badge-num { font-size: 1.6rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }

.about__text p { color: var(--text-dim); font-weight: 300; margin-top: 1.1rem; }

/* ═══════════════ CONTACT ═══════════════ */

.section--contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--char-800), var(--char-900));
}
.contact__glow {
  position: absolute;
  left: 50%; top: -20%;
  width: min(1000px, 130vw);
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255,138,31,0.11), transparent 66%);
  filter: blur(50px);
  pointer-events: none;
}

.contact {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__list { margin-top: 2.4rem; display: grid; gap: 1.35rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-accent);
  background: rgba(255, 138, 31, 0.06);
  color: var(--ember);
}
.contact__ico svg { width: 18px; height: 18px; }
.contact__k {
  display: block;
  font-family: var(--f-display);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-400);
  margin-bottom: 0.15rem;
}
.contact__v { font-size: 0.98rem; color: var(--cream-100); transition: color 0.3s ease; }
a.contact__v:hover { color: var(--ember-lit); }

/* ── Call / Text, side by side ──
   These sit above the form deliberately. Someone ready to book will phone or
   text; the form is for after hours and for people who'd rather not call. */
.direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.direct__btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-accent);
  background: rgba(255, 138, 31, 0.06);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.direct__btn:hover {
  transform: translateY(-2px);
  border-color: var(--ember);
  background: rgba(255, 138, 31, 0.12);
  box-shadow: 0 14px 34px -20px rgba(255, 138, 31, 0.8);
}
.direct__btn--call {
  background: var(--grad-ember);
  border-color: transparent;
  color: var(--char-900);
}
.direct__btn--call:hover { background: var(--grad-ember); }

.direct__ico { flex: none; display: grid; place-items: center; }
.direct__ico svg { width: 22px; height: 22px; }

.direct__txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.direct__txt strong {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.direct__txt em {
  font-style: normal;
  font-size: 0.8rem;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.direct__btn--text { color: var(--cream-100); }

.contact__or {
  text-align: center;
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-400);
  margin-bottom: 1.2rem;
}

/* ── Sticky Call / Text bar (phones only) ──
   One thumb-press to the shop from any page. */
.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  gap: 1px;
  background: rgba(247, 242, 232, 0.12);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -10px 30px -12px rgba(0, 0, 0, 0.6);
}
.callbar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 0.5rem;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-ember);
  color: var(--char-900);
}
.callbar__btn--alt { background: var(--char-800); color: var(--cream-50); }
.callbar__btn svg { width: 18px; height: 18px; }

/* ── Form ── */
.form {
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  border-radius: var(--r-lg);
  border: 1px solid rgba(247, 242, 232, 0.12);
  background: rgba(44, 42, 39, 0.7);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 1.1rem;
  box-shadow: 0 40px 90px -50px rgba(0,0,0,0.9);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field { display: grid; gap: 0.5rem; }
.field > span {
  font-family: var(--f-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-400);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(247, 242, 232, 0.14);
  background: rgba(28, 27, 25, 0.65);
  color: var(--cream-100);
  font-size: 0.95rem;
  font-family: var(--f-body);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(185, 171, 151, 0.6); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ember);
  background: rgba(255, 138, 31, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.12);
}
.field input.is-error,
.field textarea.is-error { border-color: #e0503a; }

.select { position: relative; }
.select svg {
  position: absolute;
  right: 0.9rem; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--ember);
  pointer-events: none;
}
.select select option { background: var(--char-700); color: var(--cream-100); }

.form__note {
  font-size: 0.83rem;
  color: var(--ember-lit);
  min-height: 1.2em;
  text-align: center;
}

/* ═══════════════ FOOTER ═══════════════ */

.footer {
  position: relative;
  background: var(--char-900);
  padding-top: clamp(4rem, 8vw, 6rem);
  border-top: 1px solid rgba(247, 242, 232, 0.09);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.footer__logo { width: 235px; margin: -0.4rem 0 1rem -0.5rem; }

.footer__tag {
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-400);
  margin-bottom: 0.9rem;
}
.footer h4 {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-100);
  margin-bottom: 1.1rem;
}
.footer__nav, .footer__contact { display: grid; gap: 0.65rem; align-content: start; }
.footer__nav a, .footer__contact a, .footer__contact p {
  font-size: 0.9rem;
  color: var(--cream-400);
  transition: color 0.3s ease;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--ember); }

.footer__icons { display: flex; gap: 0.6rem; }
.footer__icons a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(247, 242, 232, 0.14);
  color: var(--cream-400);
  transition: all 0.35s var(--ease);
}
.footer__icons svg { width: 17px; height: 17px; }
.footer__icons a:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: rgba(255, 138, 31, 0.08);
  transform: translateY(-2px);
}

.footer__bar { border-top: 1px solid rgba(247, 242, 232, 0.09); padding-block: 1.4rem; }
.footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--cream-400);
}
.footer__bar-inner .scripture { font-size: 0.82rem; letter-spacing: 0.2em; }

/* ═══════════════ REVEAL ═══════════════ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 980px) {
  .about, .contact, .svc { grid-template-columns: 1fr; }
  /* Image back above the text once the row stacks. */
  .svc--flip .svc__media { order: 0; }
  .about__frame { aspect-ratio: 16 / 10; }
  .about__badge { width: 88px; height: 88px; right: 16px; bottom: -20px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; aspect-ratio: 16 / 7; }
  .verse__rule { display: none; }
}

/* The brand lockup + 6 links + CTA stop fitting well before the general
   mobile breakpoint, so the nav collapses on its own schedule. */
@media (max-width: 1080px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6.5rem var(--gutter) 2.5rem;
    background: rgba(28, 27, 25, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(247, 242, 232, 0.1);
    transform: translateY(-102%);
    transition: transform 0.55s var(--ease);
    z-index: -1;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__link {
    padding-block: 1rem;
    border-bottom: 1px solid rgba(247, 242, 232, 0.1);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }
  .nav__cta { margin: 1.5rem 0 0; }
}

@media (max-width: 760px) {
  /* Sticky call bar appears; pad the page so it never covers the footer. */
  .callbar { display: flex; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }

  .direct { grid-template-columns: 1fr; }

  .stat + .stat::before { display: none; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }

  /* Bottom of the hero gets tight once the trust row wraps — drop the cue. */
  .hero__scroll { display: none; }
  .hero__trust { gap: 0.55rem 1.2rem; font-size: 0.62rem; margin-top: 2rem; }
  .dunes { height: clamp(150px, 24vh, 240px); }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
  .btn--lg { --btn-px: 1.7rem; }
  .hero__actions { width: 100%; flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ═══════════════ MOTION PREFERENCE ═══════════════ */

@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;
  }
  .reveal { opacity: 1; transform: none; }
}
