/* ============================================================
   Ian Hoyt personal site
   Palette pulled from the "ih" monogram + Wilbur + Windsock
   ============================================================ */

:root {
  --ink:      #0E0D0C;   /* warm near-black */
  --ink-2:    #16130F;   /* raised surface  */
  --ink-3:    #211C16;   /* card / border   */
  --cream:    #F5EEDF;   /* warm paper      */
  --cream-2:  #FBF6EC;
  --muted:    #A99F90;   /* warm grey text  */
  --muted-2:  #726A5E;
  --rust:     #D64A30;   /* ih monogram     */
  --rust-lo:  #B23A24;
  --amber:    #F38020;   /* windsock        */
  --wilbur:   #FDF2DC;   /* wilbur cream    */

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --radius: 22px;

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

/* ---------------- reset ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--rust); color: #fff; }

/* ---------------- grain overlay ---------------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------- shared type ---------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--rust);
  box-shadow: 0 0 0 0 rgba(214,74,48,0.6); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(214,74,48,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(214,74,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,74,48,0); }
}
.tx-rust { color: var(--rust); }

.section-head__kicker {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rust); display: flex; align-items: center; gap: 0.7rem;
}
.section-head__kicker span {
  color: var(--muted-2); font-size: 0.7rem;
  border: 1px solid var(--ink-3); border-radius: 999px; padding: 0.15rem 0.55rem;
}

/* ---------------- buttons ---------------- */
.btn {
  --pad-y: 0.85rem; --pad-x: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--rust); color: #fff; }
.btn--primary:hover { background: var(--cream); color: var(--ink); }
.btn--ghost { border-color: var(--ink-3); color: var(--cream); background: transparent; }
.btn--ghost:hover { border-color: var(--cream); background: rgba(245,238,223,0.05); }
.btn--sm { --pad-y: 0.55rem; --pad-x: 1rem; font-size: 0.85rem; border: 1px solid var(--ink-3); }
.btn--sm:hover { border-color: var(--rust); color: var(--rust); }
.btn--lg { --pad-y: 1.1rem; --pad-x: 2rem; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 500; color: var(--cream);
  position: relative;
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--rust); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem var(--gutter);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14,13,12,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--ink-3); padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.nav__mark { width: 30px; height: 30px; object-fit: contain; }
.nav__name { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; font-size: 1.05rem; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: 0.92rem; color: var(--muted); font-weight: 500;
  position: relative; transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--rust); transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  padding: clamp(6.5rem, 12vh, 8.5rem) var(--gutter) 0;
  display: flex; flex-direction: column; overflow: hidden;
}
.hero__glow {
  position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px; pointer-events: none;
  background: radial-gradient(circle, rgba(214,74,48,0.22), transparent 62%);
  filter: blur(20px);
}
/* ATC radar scope */
.radar {
  position: absolute; top: 50%; right: clamp(-300px, -9vw, -130px);
  transform: translateY(-50%);
  width: min(92vh, 860px); aspect-ratio: 1; pointer-events: none; z-index: 0;
  -webkit-mask-image: radial-gradient(circle, #000 52%, transparent 76%);
  mask-image: radial-gradient(circle, #000 52%, transparent 76%);
}
.radar__grid { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.radar__rings circle { fill: none; stroke: var(--rust); stroke-width: 1; opacity: 0.17; }
.radar__lines line { stroke: var(--rust); stroke-width: 1; opacity: 0.10; }
.radar__ticks { fill: none; stroke: var(--rust); stroke-width: 8; stroke-dasharray: 0.35 0.65; opacity: 0.22; }
.radar__center { fill: var(--amber); opacity: 0.7; }

.radar__sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(214, 74, 48, 0.42) 0deg,
    rgba(214, 74, 48, 0.14) 24deg,
    rgba(214, 74, 48, 0.02) 62deg,
    rgba(214, 74, 48, 0) 96deg,
    rgba(214, 74, 48, 0) 360deg);
  -webkit-mask-image: radial-gradient(circle, #000 52%, transparent 76%);
  mask-image: radial-gradient(circle, #000 52%, transparent 76%);
  transform-origin: 50% 50%;
  animation: radar-sweep 7s linear infinite;
}
/* crisp leading beam edge */
.radar__sweep::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 50%; height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(243, 128, 32, 0.55), transparent);
}
@keyframes radar-sweep { to { transform: rotate(360deg); } }

.blip {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber); transform: translate(-50%, -50%);
  box-shadow: 0 0 10px 2px rgba(243, 128, 32, 0.6);
}
.blip::after {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 1px solid var(--amber); opacity: 0;
  animation: ping 4s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(4.2); opacity: 0; }
}
.blip--1 { left: 41%; top: 31%; }
.blip--1::after { animation-delay: 0.2s; }
.blip--2 { left: 30%; top: 63%; }
.blip--2::after { animation-delay: 1.6s; }
.blip--3 { left: 55%; top: 72%; }
.blip--3::after { animation-delay: 2.7s; }
.blip--4 { left: 48%; top: 46%; }
.blip--4::after { animation-delay: 3.4s; }

.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto; flex: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__copy { max-width: 40ch; }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.7rem, 5.6vw, 4.7rem); line-height: 0.96;
  letter-spacing: -0.03em; margin: 1.2rem 0 1.4rem;
}
.hero__sub { color: var(--muted); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero__roles {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-top: 2.4rem;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero__roles li { position: relative; padding-left: 1.1rem; }
.hero__roles li::before { content: "→"; position: absolute; left: 0; color: var(--rust); }

/* portrait */
.hero__portrait { position: relative; justify-self: center; }
.portrait-card {
  position: relative; width: clamp(240px, 30vw, 360px); aspect-ratio: 3/4;
  border-radius: var(--radius); overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8), 0 0 0 1px var(--ink-3);
  animation: float 7s ease-in-out infinite;
}
.portrait-card img { width: 100%; height: 100%; object-fit: cover; }
.portrait-card__badge {
  position: absolute; right: -14px; bottom: -14px; width: 74px; height: 74px;
  background: var(--cream); border-radius: 18px; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.6);
}
.portrait-card__badge img { width: 42px; height: 42px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.portrait-tag {
  position: absolute; font-family: var(--font-mono); font-size: 0.72rem;
  background: rgba(22,19,15,0.85); border: 1px solid var(--ink-3);
  backdrop-filter: blur(8px); padding: 0.45rem 0.8rem; border-radius: 999px;
  white-space: nowrap; color: var(--cream);
}
.portrait-tag--1 { top: -3%; left: -6%; animation: float 6s ease-in-out infinite; }
.portrait-tag--2 { bottom: 12%; right: -6%; animation: float 8s ease-in-out infinite reverse; }

/* keyword ticker */
.ticker {
  position: relative; z-index: 2;
  margin-top: clamp(2.5rem, 6vh, 4rem); border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3); padding: 1rem 0; overflow: hidden;
  width: 100vw; margin-left: calc(var(--gutter) * -1);
  background: var(--ink);
}
.ticker__track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem); letter-spacing: -0.01em; color: var(--cream);
}
.ticker__track i { color: var(--rust); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   BRANDS
   ============================================================ */
.brands { padding: clamp(4rem, 9vh, 7rem) 0 clamp(2rem, 5vh, 4rem); }
.brands__label {
  text-align: center; font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 2.5rem;
}
.brands__marquee {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.brands__track { display: flex; align-items: center; gap: clamp(3rem, 7vw, 6rem); width: max-content; animation: marquee 30s linear infinite; }
.brands__track img {
  height: clamp(22px, 2.7vw, 31px); width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}
.brands__track img:hover { opacity: 1; }

/* ============================================================
   BUILDING / VENTURES
   ============================================================ */
.building { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vh, 8rem) var(--gutter); }
.section-head { max-width: 62ch; margin-bottom: clamp(3rem, 6vh, 5rem); }
.section-head__title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.04; margin: 1.2rem 0 1.1rem;
}
.section-head__lead { color: var(--muted); font-size: 1.1rem; max-width: 52ch; }

.ventures { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.4rem); }
.venture {
  position: relative; border: 1px solid var(--ink-3); border-radius: var(--radius);
  overflow: hidden; background: var(--ink-2); display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.venture:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--rust) 45%, var(--ink-3)); }
.venture__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.venture__media > .venture__photo,
.venture--wilbur .venture__media > img:first-of-type {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease);
}
.venture:hover .venture__photo,
.venture:hover .venture--wilbur img:first-of-type { transform: scale(1.05); }
.venture--wilbur .venture__media > img:first-of-type { width: 100%; height: 100%; object-fit: cover; }
.venture:hover .venture--wilbur .venture__media > img:first-of-type { transform: scale(1.05); }

.venture__screen {
  position: absolute; right: 5%; bottom: 7%; width: 60%; height: auto;
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.9); object-fit: contain;
  transition: transform 0.7s var(--ease);
}
.venture:hover .venture__screen { transform: translateY(-6px); }

.venture__role {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); background: rgba(14,13,12,0.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(245,238,223,0.18);
  padding: 0.3rem 0.7rem; border-radius: 999px;
}

.venture__body { padding: clamp(1.7rem, 2.5vw, 2.4rem); display: flex; flex-direction: column; flex: 1; }
.venture__wordmark { height: 30px; width: auto; max-width: 62%; object-fit: contain; object-position: left; margin-bottom: 1.1rem; }
.venture__wordmark--windsock { height: 26px; }
.venture__tag {
  font-family: var(--font-display); color: var(--cream); font-weight: 600;
  margin: 0 0 0.9rem; font-size: clamp(1.2rem, 1.6vw, 1.5rem); letter-spacing: -0.01em; line-height: 1.15;
}
.venture__desc { color: var(--muted); margin-bottom: 1.8rem; flex: 1; }

.venture--wilbur { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.venture--windsock .venture__media { background: linear-gradient(180deg, #0d0c0b, #0a0a0a); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vh, 6rem) var(--gutter); }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__media img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--ink-3);
  aspect-ratio: 4/5; object-fit: cover; object-position: center 30%;
}
.about__stamp {
  position: absolute; right: -22px; bottom: -22px; width: 116px; height: 116px;
  background: var(--ink); border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--ink-3);
}
.about__stamp svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; fill: var(--muted); }
.about__stamp svg text { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.02em; }
.about__stamp > img { width: 40px; height: 40px; }
@keyframes spin { to { transform: rotate(360deg); } }

.about__headline {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem); line-height: 1.08; margin: 1.1rem 0 1.3rem;
}
.about__text { color: var(--muted); font-size: 1.1rem; margin-bottom: 2.2rem; }
.about__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about__col h4 {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 0.9rem;
}
.about__col li { padding: 0.5rem 0; border-top: 1px solid var(--ink-3); color: var(--cream); font-size: 0.95rem; }
.about__col li em { color: var(--muted-2); font-style: normal; }

/* facts */
.facts { margin-top: clamp(4rem, 9vh, 7rem); }
.facts__label {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.6rem; text-align: center;
}
.facts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.fact {
  border: 1px solid var(--ink-3); border-radius: var(--radius); padding: 1.8rem;
  background: var(--ink-2); display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.fact:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--rust) 40%, var(--ink-3)); }
.fact__num { font-size: 1.8rem; color: var(--rust); line-height: 1; }
.fact p { color: var(--cream); font-size: 1.05rem; }
.fact--link .fact__cta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--rust); margin-top: auto; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { position: relative; padding: clamp(5rem, 12vh, 9rem) var(--gutter); overflow: hidden; }
.contact__glow {
  position: absolute; left: 50%; bottom: -40%; transform: translateX(-50%);
  width: 80vw; height: 60vw; max-width: 900px;
  background: radial-gradient(circle, rgba(214,74,48,0.28), transparent 60%);
  filter: blur(30px); pointer-events: none;
}
.contact__inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.contact__title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.03em;
  font-size: clamp(2.1rem, 5.5vw, 4rem); line-height: 1.02; margin: 1.3rem auto 2.2rem; max-width: 18ch;
}
.contact__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--ink-3); padding: clamp(2.5rem, 5vh, 4rem) var(--gutter) 2rem; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__mark { width: 44px; height: 44px; }
.footer__name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.footer__note { color: var(--muted-2); font-size: 0.9rem; }
.footer__links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer__links a:hover { color: var(--rust); }
.footer__base {
  max-width: var(--maxw); margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--ink-3); display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted-2);
}

/* ============================================================
   REVEAL animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; padding-bottom: 2rem; }
  .hero__portrait { order: -1; justify-self: start; }
  .portrait-tag--1 { left: auto; right: -4%; }
  .radar {
    top: 34%; right: auto; left: 50%; transform: translate(-50%, -50%);
    width: min(120vw, 640px); opacity: 0.55;
  }
  .ventures { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .facts__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    gap: 0; background: var(--ink-2); border-bottom: 1px solid var(--ink-3); padding: 1rem var(--gutter);
  }
  .nav__links.is-open a { padding: 0.85rem 0; border-bottom: 1px solid var(--ink-3); }
  .nav__toggle {
    display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px;
  }
  .nav__toggle span { width: 24px; height: 2px; background: var(--cream); transition: transform 0.3s var(--ease), opacity 0.3s; }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .about__cols { grid-template-columns: 1fr; }
  .venture__screen { position: static !important; width: 100%; margin-top: -20%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
