/* ============================================================
   A1 Auto Styling — preview site
   Built by Mode Marketing as a sales asset for prospect Beau McClymont.
   Voice: founder-led, service-first, restraint over ornament.
   ============================================================ */

/* RESET + TOKENS ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }

:root {
  /* colour — pulled from A1's existing palette: dark + dual cyan/pink accents */
  --bg: #060608;
  --bg-elev: #111114;
  --bg-elev-2: #18181d;
  --text: #ededed;
  --text-mute: #a0a0a0;
  --text-dim: #6e6e6e;
  --line: #25252b;
  --line-soft: rgba(255,255,255,0.08);

  /* primary accent — ice cyan, premium ceramic-glass cue (his #85e7ec / #d4fdff family) */
  --accent: #85e7ec;
  --accent-bright: #b4f3f6;
  --accent-deep: #38c5cc;
  --accent-glow: rgba(133, 231, 236, 0.22);

  /* secondary accent — hot pink, energy + youth (his #c36 family + livelier hue) */
  --pink: #ff3d8a;
  --pink-bright: #ff6aa3;
  --pink-deep: #cc2e6e;
  --pink-glow: rgba(255, 61, 138, 0.28);

  --warm: #f7f3ec;            /* cream highlight */

  /* type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* layout */
  --max: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
}

/* TYPE ROLES ---------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 18px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--pink);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--warm);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 64;
}
.h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-bright) 50%, var(--pink-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-variation-settings: "opsz" 64, "wdth" 80;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  color: var(--warm);
  margin: 0 0 28px;
}

/* HEADER -------------------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.55);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.hdr[data-scrolled] {
  background: rgba(10,10,10,0.92);
  border-bottom-color: var(--line);
}
.hdr__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
}
.hdr__brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.hdr__logo {
  height: 32px;
  width: auto;
  display: block;
}
@media (min-width: 720px) {
  .hdr__logo { height: 38px; }
}
.hdr__nav {
  display: none;
  margin-left: auto;
  gap: 28px;
}
.hdr__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  transition: color .2s;
}
.hdr__nav a:hover { color: var(--warm); }
.hdr__cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent);
  color: #001a10;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.hdr__cta:hover { transform: translateY(-1px); box-shadow: 0 0 0 8px var(--accent-glow); }
.hdr__cta svg { width: 14px; height: 14px; }
@media (min-width: 880px) {
  .hdr__nav { display: flex; }
  .hdr__cta { margin-left: 0; }
}

/* BUTTONS ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #001418;
  box-shadow: 0 0 0 0 var(--accent-glow);
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-bright) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 12px var(--accent-glow), 0 12px 30px -10px rgba(133,231,236,0.4);
}
.btn--primary:hover::before {
  opacity: 0;
}
.btn--ghost {
  border-color: var(--line);
  color: var(--warm);
}
.btn--ghost:hover {
  background: var(--bg-elev);
  border-color: rgba(133,231,236,0.4);
}
.btn--lg {
  padding: 20px 32px;
  font-size: 16px;
}

/* HERO ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--pad) 56px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(1) brightness(0.62) contrast(1.05);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 90% at 0% 0%, rgba(133,231,236,0.06), transparent 55%),
    linear-gradient(110deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.65) 38%, rgba(10,10,10,0.45) 65%, rgba(10,10,10,0.85) 100%),
    linear-gradient(180deg, transparent 60%, rgba(10,10,10,1) 100%);
  z-index: -1;
}
.hero__content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.038em;
  color: var(--warm);
  margin: 0 0 28px;
  font-variation-settings: "opsz" 96, "wdth" 100;
  text-wrap: balance;
}
.hero__h1 em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-bright) 50%, var(--pink-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variation-settings: "opsz" 96, "wdth" 75;
}
.hero__sub {
  max-width: 620px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 0 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 56px;
}
.hero__signal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  color: var(--text-mute);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.hero__signal b {
  color: var(--warm);
  font-weight: 500;
}
.hero__sep {
  width: 4px;
  height: 4px;
  background: var(--text-dim);
  border-radius: 50%;
}

/* TRUST STRIP --------------------------------------------------- */
.strip {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip__row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (min-width: 880px) {
  .strip__row {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .strip__cell {
    border-right: 1px solid var(--line);
    padding-right: 24px;
  }
  .strip__cell:last-child { border-right: 0; padding-right: 0; }
}
.strip__cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.strip__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  color: var(--warm);
}
.strip__lbl {
  font-size: 12px;
  color: var(--pink);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 500;
}

/* SECTION SHELL ------------------------------------------------ */
section { padding: clamp(80px, 10vw, 140px) var(--pad); }
section:not(.hero):not(.strip):not(.finale) > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

/* ABOUT --------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 920px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
  }
}
.about__copy p {
  color: var(--text-mute);
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 20px;
}
.about__copy p:last-of-type { margin-bottom: 28px; }
.about__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  font-size: 13px;
  font-weight: 500;
  color: var(--warm);
  transition: border-color .2s, color .2s, background .2s;
}
.chip:hover {
  border-color: rgba(133,231,236,0.4);
  color: var(--accent);
  background: var(--bg-elev-2);
}
.chip svg { width: 14px; height: 14px; }
.about__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--bg-elev);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.about__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--warm);
}

/* SERVICES ------------------------------------------------------ */
.services { background: linear-gradient(180deg, var(--bg) 0%, #060606 100%); }
.services__head {
  text-align: left;
  margin-bottom: 56px;
  max-width: 720px;
}
.services__lede {
  color: var(--text-mute);
  font-size: 16px;
  margin: 0;
}
.services__group { margin-bottom: 56px; }
.services__group:last-of-type { margin-bottom: 0; }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, background .25s;
}
.card:hover {
  border-color: rgba(133,231,236,0.3);
  transform: translateY(-3px);
}
.card--feature {
  background: linear-gradient(180deg, var(--bg-elev-2) 0%, var(--bg-elev) 100%);
  border-color: rgba(133,231,236,0.25);
}
.card--premium {
  background:
    radial-gradient(120% 80% at 100% 0%, var(--pink-glow), transparent 60%),
    var(--bg-elev-2);
  border-color: rgba(255,61,138,0.4);
}
.card--premium:hover {
  border-color: var(--pink);
  box-shadow: 0 16px 50px -20px var(--pink-glow);
}
.card__flag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 10px;
  background: rgba(133,231,236,0.12);
  border: 1px solid rgba(133,231,236,0.4);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.card--premium .card__flag {
  background: rgba(255,61,138,0.14);
  border-color: rgba(255,61,138,0.5);
  color: var(--pink-bright);
}
.card--premium .card__price {
  color: var(--pink-bright);
}
.card--premium .card__list li::before {
  background: var(--pink);
}
.card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--warm);
  margin: 0;
}
.card__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--accent);
  margin: 0;
  line-height: 1;
}
.card__from {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-right: 6px;
  vertical-align: middle;
  font-weight: 500;
}
.card__lede {
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.card__list { display: flex; flex-direction: column; gap: 8px; }
.card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1.5px;
  background: var(--accent);
}

/* ADD-ONS ------------------------------------------------------- */
.addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .addons { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .addons { grid-template-columns: repeat(3, 1fr); }
}
.addon {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}
@media (min-width: 720px) {
  .addon { padding: 18px 22px; }
  .addon:nth-child(2n) { border-left: 1px solid var(--line); }
}
@media (min-width: 1080px) {
  .addon:nth-child(2n) { border-left: 0; }
  .addon:not(:nth-child(3n+1)) { border-left: 1px solid var(--line); }
}
.addon__name {
  font-size: 15px;
  color: var(--warm);
  font-weight: 500;
}
.addon__price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.services__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

/* PROCESS ------------------------------------------------------- */
.process { background: var(--bg-elev); }
.process__head {
  text-align: left;
  margin-bottom: 56px;
  max-width: 720px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1080px) {
  .steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}
.step {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color .2s, transform .2s;
}
.step:hover {
  border-color: rgba(133,231,236,0.25);
  transform: translateY(-2px);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--pink);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.step__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--warm);
  margin: 0 0 12px;
}
.step p {
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
.step a {
  color: var(--accent);
  border-bottom: 1px dotted var(--accent);
}

/* SERVICE AREA -------------------------------------------------- */
.area { padding-bottom: clamp(80px, 10vw, 140px); }
.area__head {
  text-align: left;
  margin-bottom: 56px;
  max-width: 720px;
}
.area__lede {
  color: var(--text-mute);
  font-size: 16px;
  margin: 0;
}
.area__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) {
  .area__grid { grid-template-columns: repeat(3, 1fr); }
}
.area__zone {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  background: var(--bg-elev);
}
.area__city {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--warm);
  margin: 0 0 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.area__base {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-bright);
  font-weight: 500;
  padding: 3px 8px;
  border: 1px solid rgba(255,61,138,0.5);
  border-radius: 999px;
  background: rgba(255,61,138,0.12);
}
.area__zone--featured {
  background:
    radial-gradient(110% 80% at 100% 0%, var(--pink-glow), transparent 60%),
    var(--bg-elev-2);
  border-color: rgba(255,61,138,0.35);
}
.area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.area__list li {
  font-size: 14.5px;
  color: var(--text-mute);
  position: relative;
  padding-right: 14px;
}
.area__list li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: 2px;
  color: var(--text-dim);
}

/* FINAL CTA ----------------------------------------------------- */
.finale {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  background:
    radial-gradient(60% 80% at 50% 100%, rgba(133,231,236,0.06), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.finale__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.finale__h2 {
  margin-bottom: 18px;
}
.finale__lede {
  color: var(--text-mute);
  font-size: 17px;
  margin: 0 0 36px;
}
.finale__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* FOOTER -------------------------------------------------------- */
.ftr {
  background: #060606;
  border-top: 1px solid var(--line);
  padding: 72px var(--pad) 28px;
}
.ftr__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .ftr__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.ftr__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr__logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.ftr__tagline {
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
  margin: 0;
}
.ftr__col { display: flex; flex-direction: column; gap: 10px; }
.ftr__h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 6px;
  font-weight: 500;
}
.ftr__col a, .ftr__col p {
  color: var(--text-mute);
  font-size: 14px;
  margin: 0;
  transition: color .2s;
}
.ftr__col a:hover { color: var(--warm); }
.ftr__legal {
  max-width: var(--max);
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
@media (min-width: 720px) {
  .ftr__legal { flex-direction: row; justify-content: space-between; gap: 24px; }
}

/* MARQUEE ------------------------------------------------------- */
.marquee {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  align-items: center;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--warm);
  white-space: nowrap;
  font-variation-settings: "opsz" 60;
}
.marquee__item span:nth-child(odd) { color: var(--warm); }
.marquee__item span:nth-child(even) { color: var(--accent); }
.marquee__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  box-shadow: 0 0 24px var(--pink), 0 0 60px var(--pink-glow);
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* GSAP-PAIRED REVEAL STATES ------------------------------------- */
/* Elements with [data-reveal] start hidden; GSAP brings them in. */
[data-reveal] { opacity: 0; will-change: opacity, transform; }
.no-js [data-reveal] { opacity: 1; }

/* Hero word-reveal — each word in its own span.
   padding-bottom gives descender breathing room (y, g, p, j, q) inside the
   overflow-hidden mask; matching negative margin-bottom keeps layout flush.
   GSAP also sets overflow:visible after the entrance animation completes. */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}
.word-wrap .word { display: inline-block; will-change: transform; }

/* GALLERY ------------------------------------------------------- */
.gallery {
  background: var(--bg);
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.gallery__head {
  text-align: left;
  max-width: 720px;
  margin-bottom: 56px;
}
.gallery__lede {
  color: var(--text-mute);
  font-size: 16px;
  margin: 0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1080px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.gallery__tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.gallery__tile:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: 0 16px 40px -16px var(--pink-glow);
}
.gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform .6s ease;
}
.gallery__tile:hover img {
  transform: scale(1.04);
}
.gallery__tile figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  padding: 8px 12px;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--warm);
  text-align: center;
}
.gallery__foot {
  margin-top: 36px;
  display: flex;
  justify-content: flex-start;
}

/* MOTION RESPECT ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
