/* ============================================================
   CAZARES — minimal / refined edition
   Quiet, editorial, considered. Bone & charcoal & a whisper of
   matte brass. Fraunces (display serif) + DM Sans (body) +
   Cormorant Garamond Italic (decorative italics).
   ============================================================ */

:root {
  --bone:        #F5F0E5;     /* page */
  --paper:       #FBF8F1;     /* cards / surfaces */
  --paper-deep:  #EFE8DA;
  --ink:         #1B1814;     /* warm near-black */
  --ink-2:       #2D2820;
  --muted:       #6F6A60;
  --rule:        #D8D0C0;     /* hairlines */
  --rule-soft:   #E5DEC9;
  --brass:       #B6884E;     /* matte gold accent (matches logo) */
  --brass-deep:  #856237;

  --serif:  "Fraunces", "EB Garamond", Georgia, serif;
  --italic: "Cormorant Garamond", "Fraunces", Georgia, serif;
  --sans:   "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --max:   1240px;
  --pad:   clamp(22px, 5vw, 80px);
  --gap:   clamp(40px, 7vw, 110px);

  --ease:  cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ─────────────  RESET  ───────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { list-style: none; padding: 0; margin: 0; }

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

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  background: var(--bone);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  font-feature-settings: "kern", "liga", "calt", "ss01";
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bone); }

/* paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* i18n */
body.lang-en .es { display: none; }
body.lang-es .en { display: none; }

/* ─────────────  TYPOGRAPHY  ───────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.0;
  margin: 0;
  font-feature-settings: "ss01", "kern", "liga";
  font-variation-settings: "SOFT" 50;
}
.serif-italic {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.001em;
}
.caps {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.rule {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--brass);
  vertical-align: middle;
}

/* ─────────────  NAV  ───────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 229, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand__logo {
  height: 80px;
  width: auto;
  display: block;
  transition: opacity .25s var(--ease);
}
.brand:hover .brand__logo { opacity: 0.8; }
.brand__logo--footer { height: 140px; }

/* legacy text wordmark — kept for fallback if logo image fails */
.brand__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--ink);
}
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.nav__links a {
  position: relative;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--brass-deep); }
.nav__links a:hover::after { width: 100%; }

.lang {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.lang__sep { opacity: 0.4; }
.lang__chip { transition: color .2s var(--ease); padding: 2px; }
body.lang-en .lang__chip[data-lang="en"],
body.lang-es .lang__chip[data-lang="es"] {
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
}

/* ─────────────  HERO  ───────────── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(50px, 8vw, 110px) var(--pad) clamp(36px, 5vw, 60px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__col--text { display: flex; flex-direction: column; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: clamp(28px, 5vw, 60px);
}

.hero__title {
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 350;
  margin-bottom: clamp(28px, 4vw, 48px);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.hero__title .word { display: inline-block; }
.hero__title em {
  font-size: 0.96em;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero__lede {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-2);
  max-width: 44ch;
  margin: 0 0 clamp(32px, 4vw, 50px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.hero__col--photo {
  margin: 0;
  position: relative;
}
.hero__col--photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03) brightness(0.99);
}
.hero__caption {
  position: absolute;
  bottom: -36px; left: 0;
  font-size: 0.92rem;
  color: var(--muted);
  letter-spacing: 0.005em;
}

/* marquee */
.hero__marquee {
  margin-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hero__marquee-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__marquee-track .dot { color: var(--brass); }
.hero__marquee-track .serif-italic {
  font-size: 1rem;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--ink);
}
@keyframes marquee {
  from { transform: translateX(0%); }
  to   { transform: translateX(-50%); }
}

/* ─────────────  BUTTONS  ───────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 26px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  transition: all .35s var(--ease);
}
.btn--solid {
  background: var(--ink);
  color: var(--bone);
}
.btn--solid:hover {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  color: var(--paper);
}
.btn--big { padding: 19px 34px; font-size: 0.78rem; }

.btn--text {
  border: 0;
  padding: 12px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}
.btn--text:hover { color: var(--brass-deep); border-bottom-color: var(--brass-deep); }

.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ─────────────  SECTION HEAD  ───────────── */
section { scroll-margin-top: 90px; }
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 70px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(36px, 5vw, 64px);
}
.section-num {
  font-family: var(--italic);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--brass);
  letter-spacing: 0.02em;
}
.section-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  font-weight: 350;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.section-title em {
  font-weight: 350;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
  line-height: 1.55;
}

/* ─────────────  WORK  ───────────── */
.work {
  padding: clamp(50px, 7vw, 100px) 0 clamp(50px, 6vw, 90px);
}
.work__lead, .work__row, .work__meta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.work__figure {
  margin: 0;
  position: relative;
}
.work__figure img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: filter .8s var(--ease), transform 1.2s var(--ease);
}
.work__figure:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.012);
}
.work__figure figcaption {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.work__figure figcaption .serif-italic {
  font-size: 1rem;
  color: var(--ink);
}
.work__lead .work__figure img { aspect-ratio: 16/9; }
.work__lead { margin-bottom: 36px; }

.work__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(40px, 5vw, 70px);
}
.work__row .work__figure img { aspect-ratio: 4/5; }

.work__meta {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.work__meta dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.work__meta div { display: flex; flex-direction: column; gap: 8px; }
.work__meta dt {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.work__meta dd {
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.3;
}

/* Selected Work — quiet portfolio strip under the featured project */
.work__more {
  max-width: var(--max);
  margin: clamp(70px, 9vw, 130px) auto 0;
  padding: 0 var(--pad);
}
.work__more-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(28px, 3vw, 44px);
}
.work__more-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 350;
  letter-spacing: -0.018em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "SOFT" 60, "opsz" 96;
}
.work__more-title em { font-weight: 350; }

.work__more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.work__figure--tall img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .work__more-grid { grid-template-columns: repeat(2, 1fr); }
  .work__more-grid .work__figure--tall:nth-child(3) {
    grid-column: 1 / -1;
  }
  .work__more-grid .work__figure--tall:nth-child(3) img { aspect-ratio: 16/9; }
}

@media (max-width: 720px) {
  .work__more-grid { grid-template-columns: 1fr; }
  .work__more-grid .work__figure--tall img { aspect-ratio: 4/5; }
  .work__more-grid .work__figure--tall:nth-child(3) img { aspect-ratio: 4/5; }
}

/* ─────────────  SERVICES  ───────────── */
.services { padding: clamp(40px, 5vw, 80px) 0 clamp(50px, 7vw, 100px); }
.services__list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
}
.services__list li {
  display: grid;
  grid-template-columns: 90px 1fr 2fr;
  align-items: baseline;
  gap: clamp(16px, 4vw, 60px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--rule);
  transition: padding .35s var(--ease);
}
.services__list li:last-child { border-bottom: 1px solid var(--rule); }
.services__list li:hover {
  padding-left: 8px;
  padding-right: -8px;
}
.service__num {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brass);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.service__name {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 350;
  letter-spacing: -0.018em;
  line-height: 0.96;
  font-variation-settings: "SOFT" 70, "opsz" 144;
}
.service__copy {
  font-size: 1.02rem;
  color: var(--muted);
  margin: 0;
  max-width: 50ch;
  line-height: 1.6;
}

/* ─────────────  APPROACH  ───────────── */
.approach { padding: clamp(40px, 5vw, 80px) 0 clamp(50px, 7vw, 100px); }
.approach__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 5vw, 70px) clamp(40px, 6vw, 90px);
}
.principle {
  display: flex; flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}
.principle__num {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brass);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.principle__title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 350;
  font-family: var(--serif);
  letter-spacing: -0.018em;
  line-height: 1.05;
  font-variation-settings: "SOFT" 50, "opsz" 96;
}
.principle p {
  font-size: 1.02rem;
  color: var(--muted);
  margin: 0;
  max-width: 46ch;
  line-height: 1.6;
}

/* ─────────────  CONTACT  ───────────── */
.contact {
  padding: clamp(40px, 5vw, 80px) 0 clamp(60px, 8vw, 120px);
  background: linear-gradient(to bottom, transparent 0%, var(--paper-deep) 100%);
}
.contact__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

/* contact details aside */
.contact__details dl {
  display: flex; flex-direction: column;
  gap: 22px;
}
.contact__details div { display: flex; flex-direction: column; gap: 6px; }
.contact__details dt {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__details dd {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: -0.005em;
}
.contact__details a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.contact__details a:hover { color: var(--brass-deep); border-color: var(--brass-deep); }

/* form — minimalist underline-only inputs */
.contact__form {
  display: flex; flex-direction: column;
  gap: clamp(18px, 2vw, 22px);
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 50px);
  position: relative;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label,
.field legend {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: 10px 0;
  width: 100%;
  appearance: none;
  transition: border-color .25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--brass);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%239C7E4E' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}

.field--service { border: 0; padding: 0; margin: 0; min-width: 0; }
.field--service legend { margin-bottom: 12px; }

.pills {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.pills label { cursor: pointer; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills span {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  transition: all .2s var(--ease);
  background: var(--paper);
}
.pills label:hover span { border-color: var(--brass); color: var(--brass-deep); }
.pills input:checked + span {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.contact__submit {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  flex-wrap: wrap;
}
.contact__fineprint {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

.contact__success {
  border: 1px solid var(--brass);
  background: rgba(156, 126, 78, 0.06);
  padding: 22px 28px;
  text-align: center;
}
.contact__success p {
  font-size: 1.4rem;
  margin: 0;
  color: var(--ink);
  font-family: var(--italic);
  font-style: italic;
}

/* ─────────────  FOOTER  ───────────── */
.footer {
  border-top: 1px solid var(--rule);
  background: var(--paper-deep);
  padding: clamp(40px, 5vw, 70px) 0 clamp(20px, 3vw, 32px);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.brand--footer { gap: 6px; }
.brand--footer .brand__name { font-size: 1.4rem; }

.footer__motto {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ink);
  margin: 0;
}
.footer__row--meta {
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────  RESPONSIVE  ───────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__col--photo { order: -1; }
  .hero__col--photo img { aspect-ratio: 16/12; }
  .hero__caption { position: static; margin-top: 14px; }
  .work__row { grid-template-columns: repeat(2, 1fr); }
  .work__meta dl { grid-template-columns: repeat(2, 1fr); }
  .approach__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .services__list li { grid-template-columns: 60px 1fr; }
  .services__list li .service__copy { grid-column: 2 / -1; }
  .section-head { grid-template-columns: 80px 1fr; }
}

@media (max-width: 720px) {
  .nav__inner { flex-wrap: wrap; gap: 12px; padding: 14px var(--pad); }
  .nav__links { gap: 18px; flex-wrap: wrap; font-size: 0.7rem; }
  .brand__sub { display: none; }
  .brand__logo { height: 60px; }
  .brand__logo--footer { height: 100px; }
  .hero__title { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .work__row { grid-template-columns: 1fr; }
  .work__meta dl { grid-template-columns: 1fr; gap: 18px; }
  .field-row { grid-template-columns: 1fr; }
  .contact__submit { flex-direction: column; align-items: stretch; }
  .contact__submit .btn { justify-content: center; }
  .footer__row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head { grid-template-columns: 1fr; }
  .section-num { font-size: 1rem; }
  .services__list li { grid-template-columns: 40px 1fr; padding: 22px 0; }
}

/* ─────────────  REVEAL (only when JS-ready)  ───────────── */
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
body.js-ready .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
body.js-ready .reveal.delay-1 { transition-delay: 0.1s; }
body.js-ready .reveal.delay-2 { transition-delay: 0.2s; }
body.js-ready .reveal.delay-3 { transition-delay: 0.3s; }

/* hero intro */
.hero__eyebrow, .hero__title, .hero__lede, .hero__actions, .hero__col--photo {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1.1s var(--ease) forwards;
}
.hero__eyebrow      { animation-delay: 0.05s; }
.hero__title        { animation-delay: 0.20s; }
.hero__lede         { animation-delay: 0.40s; }
.hero__actions      { animation-delay: 0.55s; }
.hero__col--photo   { animation-delay: 0.30s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .hero__marquee-track { animation: none; }
}
