/* ==========================================================================
   89 BUILT — presentation layer matched to 89built.com (Squarespace 7.1)
   Palette measured from his site.css custom props:
     white (page)  hsl(33.33, 17.65%, 90%)  #EAE6E1
     black         hsl(29, 100%, 0%)        #000000
     accent        hsl(57, 3%, 55%)         #908F89  ("bright" bands)
     lightAccent   hsl(57.86, 27.45%, 80%)  #DAD9BE  ("light" bands)
     darkAccent    hsl(57.21, 17.99%, 46.86%) #8D8B62 (buttons, solid header)
     divider       hsla(57.31, 41%, 32%, 1) #737030  (2px section rules)
     deep olive    #484733                            (dark band)
   Type measured from his site.css:
     headings  rama-gothic-e 600, uppercase, ls -0.03em, lh 1em
               h1 10 / h2 5.2 / h3 2.6 / h4 1.6 (Squarespace size-values)
     body/nav  Space Mono 400, lh 1.5, base 22px; max page width 1400px
   Stand-ins: Anton for Rama Gothic E (Adobe-licensed, can't self-serve) —
   Anton is narrower, so tracking is opened up (+.02em) instead of stretching.

   HOUSE RULE (from the client): photos are NEVER darkened. No scrims, no
   brightness/saturation filters, no gradient overlays on any photograph.
   ========================================================================== */

:root {
  --cream: #eae6e1;            /* hsl(33.33,17.65%,90%) */
  --ink: #000;
  --pale-olive: #dad9be;       /* hsl(57.86,27.45%,80%) */
  --olive: #8d8b62;            /* hsl(57.21,17.99%,46.86%) */
  --deep-olive: #484733;
  --divider: #737030;          /* hsla(57.31,41%,32%,1) */
  --warm-gray: #908f89;        /* hsl(57,3%,55%) */
  --btn-ink: #fff;

  --display: "Anton", "Arial Narrow", sans-serif;
  --mono: "Space Mono", ui-monospace, Menlo, monospace;

  /* Squarespace heading formula: min((N-1)*1.2vw + 1rem, (N-1)*.012*1400px + 1rem) */
  --size-h1: min(calc(9 * 1.2vw + 1rem), calc(9 * 16.8px + 1rem));         /* -> 167px */
  --size-h2: min(calc(4.2 * 1.2vw + 1rem), calc(4.2 * 16.8px + 1rem));     /* -> 86.6px */
  --size-h3: min(calc(1.6 * 1.2vw + 1rem), calc(1.6 * 16.8px + 1rem));     /* -> 42.9px */
  --size-h4: min(calc(0.6 * 1.2vw + 1rem), calc(0.6 * 16.8px + 1rem));     /* -> 26px */
  --size-marquee: min(calc(19.4 * 1.2vw + 1rem), calc(19.4 * 16.8px + 1rem)); /* -> 342px */

  --track: 0.02em;             /* Anton compensation for Rama Gothic E's wider cut */
  --max: 1400px;               /* his --maxPageWidth */
  --gutter: 4vw;               /* his --sqs-site-gutter */
  --section-pad: clamp(3.5rem, 8vw, 7rem);
}

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.375rem); /* 17px -> his 22px base */
  line-height: 1.5;
}

::selection { background: var(--divider); color: var(--cream); }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--divider);
  outline-offset: 3px;
}
.theme-black :focus-visible,
.theme-dark :focus-visible {
  outline-color: var(--cream);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6em 1em;
  font-size: 0.85rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* header is absolute over the hero only (not sticky), so nav jumps
   only need a small offset — not a sticky-bar clearance */
section[id] { scroll-margin-top: 1rem; }

/* ---------- type ---------- */

.display-2,
.display-3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;                  /* his 1em */
  letter-spacing: var(--track);
  margin: 0;
  overflow-wrap: break-word;
}
.display-2 { font-size: var(--size-h2); }
.display-3 { font-size: var(--size-h3); }

.kicker {
  max-width: 62ch;
  margin: 1.4em 0 0;
  font-size: 0.95em;
}

.quiet-link {
  font-family: var(--mono);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.quiet-link:hover { text-decoration-thickness: 2px; }

.mono-note {
  flex-basis: 100%;
  margin: 1.4em 0 0;
  font-size: 0.78em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- buttons (his: darkAccent solid, 10px radius, Space Mono 700) ---------- */

.btn {
  display: inline-block;
  background: var(--olive);
  color: var(--btn-ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  padding: 1rem 1.3rem;         /* his --primary-button-padding */
  border-radius: 10px;          /* his --primary-button-rounded radius */
  border: 0;
  transition: background-color 0.2s;
}
.btn:hover { background: var(--deep-olive); }

.btn-head { padding: 0.65rem 1rem; font-size: 0.8rem; }

/* ---------- header (cream, big logo, mono nav, rounded 2px social icons) ---------- */

/* His header sits transparently over the hero photo (Squarespace fixed/gradient
   header) — ours overlays the hero absolutely; the photo stays untouched. */
.site-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}

.head-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand { display: block; }
.brand img {
  width: auto;
  height: 150px;              /* his masthead logo caps at 169px / 84px mobile */
}

.site-nav {
  display: flex;
  justify-content: center;    /* his layout: navCenter */
  flex-wrap: wrap;
  gap: 0.4rem 1.7rem;
}

.navlink {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.3em 0;
}
.navlink:hover { text-decoration: underline; text-underline-offset: 5px; }

.head-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.socials {
  display: flex;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 2px solid var(--ink);   /* his: rounded-square, solid, 2px */
  border-radius: 9px;
  color: var(--ink);
  transition: background-color 0.2s, color 0.2s;
}
.socials svg { width: 16px; height: 16px; }
.socials a:hover { background: var(--ink); color: var(--cream); }

@media (max-width: 899px) {
  .head-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.8rem;
  }
  .brand img { height: 84px; }
  .head-actions .socials { display: none; }   /* socials stay available in the footer */
}

/* ---------- sections ---------- */

.page-section {
  padding: var(--section-pad) 0;
}

.theme-white  { background: var(--cream);      color: var(--ink); }
.theme-light  { background: var(--pale-olive); color: var(--ink); }
.theme-bright { background: var(--warm-gray);  color: var(--ink); }
.theme-dark   { background: var(--deep-olive); color: var(--cream); }
.theme-black  { background: var(--ink);        color: var(--cream); }

/* his section divider: full-bleed 2px rule, hsla(57.31,41%,32%) */
.has-divider { border-bottom: 2px solid var(--divider); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }

/* ---------- hero — full-bleed valley photo, like his homepage opening ---------- */
/* The golden-hour aerial runs edge to edge at full brightness (no scrims, no
   filters); the header floats over the sky and the marquee rides the lower third. */

.hero {
  position: relative;
  min-height: 92vh;
  background: url("images/home-tempimage-pphgto.webp") center 35% / cover no-repeat;
  border-bottom: 2px solid var(--divider);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* His hero fades to cream at the top so the logo and nav pop — a brightening
   wash over the sky only, never a darkening of the photo. */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(
    to bottom,
    rgba(234, 230, 225, 0.96) 0%,
    rgba(234, 230, 225, 0.55) 40%,
    rgba(234, 230, 225, 0) 100%
  );
  pointer-events: none;
}

/* His hero also fades to black along the bottom edge — the giant translucent
   marquee text rides above the fade so it glows against the darkened ground.
   (His own treatment of his own image, mirrored faithfully.) */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 65%,
    rgba(0, 0, 0, 0.88) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-marquee {
  width: 100%;
  padding: 0 0 5vh;
  position: relative;
  z-index: 1;
}

.hero .marquee-item {
  color: rgba(234, 230, 225, 0.68);   /* translucent cream over the landscape, like his */
}

@media (max-width: 899px) {
  .hero { min-height: 72vh; background-position: 42% 40%; }
}

/* ---------- marquee — the scrolling 89 BUILT strip ---------- */
/* His block: text-style heading-1 at size-value 20.4, item spacing .6em,
   direction left, speed 1 (~60px/s), padding 3% 0, riding the hero photo. */

.marquee { overflow: hidden; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 90s linear infinite;
}

.marquee-group {
  display: flex;
  flex: 0 0 auto;
}

.marquee-item {
  font-family: var(--display);
  font-size: var(--size-marquee);
  line-height: 1.1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding-right: 0.6em;          /* his --marquee-item-spacing */
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 1199px) { .marquee-track { animation-duration: 70s; } }
@media (max-width: 699px)  { .marquee-track { animation-duration: 45s; } }

/* ---------- statement ---------- */

.statement .display-echo {
  margin-top: 0.55em;
  color: var(--deep-olive);
}

.statement-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-top: 3rem;
}

/* ---------- latest video ---------- */

.latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 899px) {
  .latest-grid { grid-template-columns: 1fr; }
}

.facade {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}
.facade img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.facade iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.facade-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px; /* optical centering of the triangle */
  transition: transform 0.2s;
}
.facade-play:hover { transform: scale(1.06); }

.latest-info > * + * { margin-top: 1rem; }
.latest-info p { margin: 0; }
.latest-info .btn { margin-top: 1.6rem; }
.latest-info .quiet-link { display: inline-block; font-size: 0.9em; }

.pill-new,
.pill-when {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.35em 0.9em;
}
.pill-new { background: var(--pale-olive); }

.latest-title {
  font-family: var(--display);
  font-size: var(--size-h3);
  line-height: 1.05;
  letter-spacing: var(--track);
}

.latest-meta { font-size: 0.85em; }
.latest-sub  { font-size: 0.85em; }

/* ---------- video grid + shorts ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem) clamp(1.25rem, 2vw, 2rem);
}
@media (max-width: 999px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 559px) { .video-grid { grid-template-columns: 1fr; } }

.card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--pale-olive);
}
.thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease; /* his hover effect: fade */
}
.card:hover .thumb img { opacity: 0.82; }

.dur {
  position: absolute;
  right: 0; bottom: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2em 0.6em;
}

.card-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.12;
  letter-spacing: var(--track);
  margin: 0.85rem 0 0.3rem;
}
.card:hover .card-body h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.card-meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--divider);
}

.card-all,
.merch-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 2px solid var(--divider);
  padding: 2rem 1.25rem;
  min-height: 200px;
  transition: background-color 0.2s;
}
.card-all:hover,
.merch-all:hover { background: var(--pale-olive); }
.card-all .big,
.merch-all .big {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: var(--track);
}
.card-all .sub,
.merch-all .sub { font-size: 0.8rem; }

.shorts-head { margin-top: clamp(3rem, 7vw, 5rem); }

.shorts-row {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--divider) transparent;
}
.shorts-row .card { flex: 0 0 190px; }
.shorts-row .thumb { aspect-ratio: 9 / 16; }
.shorts-row .card-body h3 { font-size: 1.05rem; }

.convert-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 2px solid var(--divider);
}
.convert-bar .line { margin: 0; font-size: 0.9em; max-width: 52ch; }

/* ---------- odometer — deep-olive band, huge numerals ---------- */

.odo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem 2rem;
  text-align: center;
}
@media (max-width: 899px) { .odo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.odo { display: flex; flex-direction: column; gap: 0.75rem; }

.odo .num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  line-height: 1;
  letter-spacing: var(--track);
}

.odo .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(234, 230, 225, 0.75);
}

/* ---------- story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 899px) {
  .story-grid { grid-template-columns: 1fr; }
}

.story p { margin: 0 0 1.3em; font-size: 0.92em; }
.story .opener { font-size: 1em; }
.story .quiet-link { font-size: 0.85em; }

.generations {
  list-style: none;
  margin: 2.2em 0;
  padding: 0;
}
.generations li {
  display: flex;
  gap: 1.1rem;
  padding: 0.95em 0;
  border-top: 2px solid var(--divider);
}
.generations li:last-child { border-bottom: 2px solid var(--divider); }
.generations .mile {
  flex: 0 0 4.5em;
  font-weight: 700;
  font-size: 0.75em;
  letter-spacing: 0.1em;
  padding-top: 0.35em;
}
.generations .gen-body { font-size: 0.85em; }
.generations .gen-body strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.45em;
  letter-spacing: var(--track);
  line-height: 1.1;
  margin-bottom: 0.2em;
}
.generations .gen-body span { display: block; }

.story-photos figure { margin: 0 0 2rem; }
.story-photos figcaption {
  margin-top: 0.6em;
  font-size: 0.72em;
  letter-spacing: 0.05em;
  color: var(--divider);
}

/* ---------- gallery slideshow (his: 75vh crossfade, inset in a black frame) ---------- */

.gallery-band {
  background: var(--ink);
  /* measured on his live site at 1280w: image inset exactly 38px on all
     four sides = a uniform 3vw frame */
  padding: clamp(16px, 3vw, 80px);
}

.slideshow {
  position: relative;
  height: 75vh;
  min-height: 340px;
  max-height: 780px;
  overflow: hidden;
  background: var(--pale-olive);
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1); /* his fade timing */
}
.slide.is-active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;   /* full brightness, no scrims — ever */
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.slide-arrow:hover { background: var(--ink); color: var(--cream); }
.slide-prev { left: 1.25rem; }
.slide-next { right: 1.25rem; }

.slide-dots {
  position: absolute;
  left: 0; right: 0; bottom: 1.1rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}
.slide-dot {
  width: 13px; height: 13px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: transparent;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.slide-dot[aria-current="true"] { background: var(--cream); }

/* ---------- merch ---------- */

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 2vw, 2rem);
}
@media (max-width: 999px) { .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 559px) { .merch-grid { grid-template-columns: 1fr; } }

.merch-item {
  display: block;
  color: inherit;
  text-decoration: none;
}

.merch-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.merch-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.merch-item:hover .merch-photo img { opacity: 0.85; }

.merch-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: var(--track);
  margin: 0.9rem 0 0.35rem;
}
.merch-item:hover .merch-body h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.merch-price {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.merch-sizes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.7rem 0 0;
  padding: 0;
}
.merch-sizes li {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  padding: 0.15em 0.55em;
}

/* ---------- email band (pale olive, like his list section) ---------- */

.email-band { text-align: center; }
.email-band .kicker {
  margin: 1.2em auto 0;
  letter-spacing: 0.04em;
}
.email-band .btn { margin-top: 2.2rem; }

/* ---------- footer — his exact shape: dark olive band, socials left,
   creed center, cream CONTACT US right, small copyright line ---------- */

.site-foot {
  background: var(--deep-olive);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.6rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2.5rem 3rem;
}

.foot-socials {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.55rem;
}
.site-foot .socials a {
  border-color: var(--cream);
  color: var(--cream);
}
.site-foot .socials a:hover { background: var(--cream); color: var(--ink); }

.creed {
  margin: 0 auto;
  max-width: 44ch;
  text-align: center;
}
.creed p {
  margin: 0;
  font-weight: 700;
  font-size: 0.95em;
  line-height: 1.7;
}
.creed cite {
  display: block;
  margin-top: 1em;
  font-style: normal;
  font-size: 0.78em;
}

.foot-cta { text-align: center; }
.btn-contact {
  background: var(--cream);
  color: var(--ink);
  font-size: 0.85rem;
  padding: 1.1rem 2rem;
  border-radius: 4px;
}
.btn-contact:hover { background: var(--pale-olive); }

.foot-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6em 2em;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-size: 0.7em;
}
@media (max-width: 899px) {
  .foot-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .foot-socials { grid-template-columns: repeat(4, auto); }
  .foot-base { justify-content: center; text-align: center; }
}

/* ---------- scroll-in animation (his global animations: fade, ease) ---------- */

.anim-pre {
  opacity: 0;
  transform: translateY(25px);   /* his tmpl-anim-fade-up */
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-pre.anim-in {
  opacity: 1;
  transform: none;
}

/* ---------- reduced motion: pause or kill ALL motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }   /* strip parks as a giant title */
  .slide { transition: none; }          /* dots/arrows still swap slides */
  .anim-pre { opacity: 1; transform: none; transition: none; }
  .thumb img,
  .merch-photo img,
  .facade-play,
  .btn,
  .socials a,
  .slide-arrow,
  .skip-link { transition: none; }
  .facade-play:hover { transform: none; }
}
