/* GTA16 — gta16.com */

:root {
  --ink: #07070a;
  --ink-2: #0d0d11;
  --navy: #0a1122;
  --navy-2: #101a31;
  --paper: #f2ede3;
  --paper-ink: #16140f;
  --paper-ink-2: #6f685b;
  --text: #efe8da;
  --text-2: #b8af9e;
  --text-3: #8d8574;
  --gold: #d6ad5c;
  --gold-hi: #f5dfa6;
  --gold-lo: #9a6b25;
  --line: rgba(214, 173, 92, .3);
  --line-soft: rgba(239, 232, 218, .1);
  --display: 'Poiret One', 'Didot', 'Bodoni 72', serif;
  --serif: 'Newsreader', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --gutter: clamp(16px, 3.4vw, 48px);
  --max: 1440px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --gold-grad: linear-gradient(100deg, #8d5f1e 0%, #f3d992 16%, #c38e43 32%, #fff0c8 48%, #b98538 64%, #f1d18a 80%, #8d5f1e 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 300 17px/1.6 var(--serif);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
p, h1, h2, h3 { margin: 0; }
button { font: inherit; color: inherit; }
::selection { background: rgba(214, 173, 92, .35); color: #fff; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 10px 14px; font: 500 14px/1 var(--sans); text-decoration: none;
}
.skip:focus { top: 12px; }
:focus-visible { outline: 1px solid var(--gold-hi); outline-offset: 4px; }

/* ---------- Top bar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  height: 68px; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s;
}
.topbar::before {
  content: ''; position: absolute; inset: 0 0 -40px 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(4, 4, 6, .55), rgba(4, 4, 6, 0));
  transition: opacity .45s;
}
.topbar.is-solid {
  background: rgba(7, 7, 10, .74);
  border-color: var(--line-soft);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}
.topbar.is-solid::before { opacity: 0; }

.menu-btn, .drawer-close {
  justify-self: start; width: 44px; height: 44px; margin-left: -10px;
  display: grid; place-content: center; gap: 6px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.menu-btn span { display: block; width: 20px; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.menu-btn span:last-child { width: 13px; }
.menu-btn:hover span:last-child { width: 20px; }

.wordmark {
  font: 400 23px/1 var(--display);
  letter-spacing: .34em; text-indent: .34em;
  text-decoration: none; color: var(--text);
}
.top-link {
  justify-self: end;
  font: 400 14px/1 var(--serif); letter-spacing: .02em;
  text-decoration: none; color: var(--text);
  padding: 10px 0;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size .4s var(--ease);
}
.top-link:hover { background-size: 100% 1px; }

/* ---------- Drawer ---------- */
.scrim {
  position: fixed; inset: 0; z-index: 60; background: rgba(0, 0, 0, .45);
  opacity: 0; transition: opacity .45s var(--ease);
}
.scrim.is-open { opacity: 1; }
.drawer {
  position: fixed; inset: 0 auto 0 0; z-index: 70;
  width: min(420px, 100vw);
  background: var(--paper); color: var(--paper-ink);
  padding: 22px 34px 34px;
  display: flex; flex-direction: column;
  transform: translateX(-101%);
  transition: transform .6s var(--ease), visibility 0s .6s;
  visibility: hidden;
  overflow-y: auto;
}
.drawer.is-open { transform: none; visibility: visible; transition: transform .6s var(--ease); }
.drawer-close { justify-self: auto; align-self: flex-end; margin: 0 -10px 0 0; position: relative; }
.drawer-close span { position: absolute; left: 12px; top: 21px; width: 20px; height: 1px; background: currentColor; transform: rotate(45deg); }
.drawer-close span:last-child { transform: rotate(-45deg); }

.drawer-nav { list-style: none; margin: 46px 0 0; padding: 0; }
.drawer-nav > li { border-bottom: 1px solid rgba(22, 20, 15, .1); }
.drawer-nav a, .sub-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 16px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font: 300 30px/1.15 var(--serif); letter-spacing: -.01em;
  text-decoration: none; color: var(--paper-ink);
  transition: color .3s, padding-left .4s var(--ease);
}
.drawer-nav > li > a:hover, .sub-toggle:hover { color: var(--gold-lo); padding-left: 6px; }
.chev { width: 9px; height: 9px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(-45deg); transition: transform .35s var(--ease); margin-right: 6px; }
.sub-toggle[aria-expanded="true"] .chev { transform: rotate(45deg); }
.sub { list-style: none; margin: 0 0 14px; padding: 0 0 0 2px; }
.sub a { font-size: 19px; padding: 7px 0; color: var(--paper-ink-2); }
.sub a:hover { color: var(--paper-ink); }

.drawer-foot { margin-top: auto; padding-top: 40px; }
.drawer-label { font: 500 10.5px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--paper-ink-2); }
.drawer-cos { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 14px; }
.drawer-cos a { font: 400 15px/1.3 var(--serif); text-decoration: none; color: var(--paper-ink); border-bottom: 1px solid rgba(22, 20, 15, .25); }
.drawer-cos a:hover { border-color: var(--paper-ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  height: 100vh; height: 100svh; min-height: 600px;
  background: #050506 url('/assets/video/hero-poster.jpg') 62% 50% / cover no-repeat;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 50%;
}
.hero-shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(0deg, rgba(5, 5, 6, .9) 0%, rgba(5, 5, 6, .45) 26%, rgba(5, 5, 6, 0) 52%),
    linear-gradient(90deg, rgba(5, 5, 6, .55) 0%, rgba(5, 5, 6, .15) 38%, rgba(5, 5, 6, 0) 60%);
}
.hero-copy {
  position: absolute; z-index: 2;
  left: var(--gutter); right: var(--gutter);
  bottom: clamp(150px, 22vh, 230px);
}
.deco {
  font: 400 clamp(44px, 6.7vw, 120px)/.96 var(--display);
  text-transform: uppercase; letter-spacing: .015em;
  color: var(--gold);
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, .5));
}
.deco span {
  display: block;
  background: var(--gold-grad);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: sheen 14s linear infinite;
}
@keyframes sheen { from { background-position: 0% 0; } to { background-position: -220% 0; } }

.arrow-link {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 26px;
  font: 400 15px/1 var(--serif); letter-spacing: .01em;
  color: var(--text); text-decoration: none;
}
.arrow { position: relative; width: 46px; height: 1px; background: currentColor; transition: width .45s var(--ease); }
.arrow::after {
  content: ''; position: absolute; right: 0; top: -3.5px; width: 8px; height: 8px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg);
}
.arrow-link:hover .arrow { width: 70px; }

.hero-foot {
  position: absolute; z-index: 2;
  left: var(--gutter); right: var(--gutter); bottom: max(28px, env(safe-area-inset-bottom));
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.hero-brand, .footer-brand { display: flex; align-items: center; gap: 16px; }
.seal { width: 54px; height: 54px; color: var(--gold-hi); flex: none; }
.hero-name { font: 400 17px/1 var(--display); letter-spacing: .34em; }
.tagline { margin-top: 7px; font: 300 15px/1.3 var(--serif); color: var(--text-2); }
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font: 500 10px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-2); text-decoration: none;
}
.scroll-cue i { position: relative; width: 1px; height: 44px; background: rgba(239, 232, 218, .2); overflow: hidden; }
.scroll-cue i::after { content: ''; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--gold-hi); animation: drip 2.4s var(--ease) infinite; }
@keyframes drip { to { top: 100%; } }

/* entrance */
.hero-copy .deco span, .hero-copy .arrow-link, .hero-foot { opacity: 0; transform: translateY(18px); }
.hero-copy .deco span { animation: rise 1.4s var(--ease) .25s forwards, sheen 14s linear infinite; }
.hero-copy .deco span + span { animation-delay: .45s, 0s; }
.hero-copy .arrow-link { animation: rise 1.4s var(--ease) .8s forwards; }
.hero-foot { animation: rise 1.4s var(--ease) 1s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Shared section bits ---------- */
.section-head { max-width: var(--max); margin: 0 auto clamp(40px, 6vw, 72px); padding: 0 var(--gutter); }
.eyebrow { font: 500 11px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.h2 {
  margin-top: 20px; max-width: 22ch; text-wrap: balance;
  font: 300 clamp(34px, 4.8vw, 68px)/1.06 var(--serif);
  letter-spacing: -.015em; color: var(--text);
}

/* only hide for the fade-in when JS is running */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Portfolio ---------- */
.portfolio {
  position: relative; isolation: isolate;
  padding: clamp(96px, 12vw, 168px) 0 clamp(90px, 11vw, 150px);
  background: radial-gradient(120% 80% at 50% 0%, var(--navy-2) 0%, var(--navy) 55%, #070b17 100%);
}
.portfolio::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: url('/assets/img/deco.svg') 50% 0 / max(1600px, 100%) auto no-repeat;
  opacity: .5;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .35) 60%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .35) 60%, transparent 100%);
}
.tombs {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
}
.tomb { min-width: 0; }
.tomb:nth-child(2) { transition-delay: .08s; }
.tomb:nth-child(3) { transition-delay: .16s; }
.tomb:nth-child(4) { transition-delay: .24s; }

.tomb-card {
  position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; isolation: isolate;
  background: #000; color: #fff; text-decoration: none;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8);
}
.tomb-media { position: absolute; inset: 0; transform: scale(1.02); transition: transform 1.4s var(--ease), filter .7s var(--ease); filter: brightness(.74) saturate(.95); }
.tomb-media video, .tomb-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tomb-card:hover .tomb-media, .tomb-card:focus-visible .tomb-media { transform: scale(1.08); filter: brightness(.9) saturate(1.05); }
.tomb-still { animation: drift 22s ease-in-out infinite alternate; }
@keyframes drift { from { transform: scale(1.04) translate(0, 0); } to { transform: scale(1.12) translate(-1.5%, -1%); } }
.tomb-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(70% 55% at 50% 50%, rgba(0, 0, 0, .34), rgba(0, 0, 0, 0) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, 0) 38%),
    linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 26%);
}
.tomb-frame { position: absolute; inset: 12px; z-index: 2; pointer-events: none; border: 1px solid rgba(245, 223, 166, .42); transition: inset .6s var(--ease), border-color .6s; }
.tomb-frame::before { content: ''; position: absolute; inset: 4px; border: 1px solid rgba(245, 223, 166, .16); }
.tomb-card:hover .tomb-frame { inset: 16px; border-color: rgba(245, 223, 166, .7); }
.tomb-top {
  position: absolute; z-index: 3; top: 30px; left: 0; right: 0; text-align: center;
  font: 400 11px/1 var(--display); letter-spacing: .5em; text-indent: .5em; color: var(--gold-hi);
}
.tomb-logo { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; padding: 0 12%; }
.tomb-deal {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 30px; text-align: center;
  font: 400 10.5px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: rgba(255, 255, 255, .86);
}
.tomb-deal .rule { display: block; width: 26px; height: 1px; margin: 11px auto; background: var(--gold); opacity: .8; }

/* company lockups, sized from the card width */
.tomb-logo > span { font-size: clamp(15px, 1.55vw, 23px); color: #fff; filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .55)); }
.lg-ractr { display: inline-flex; align-items: center; gap: .55em; font: 800 1em/1 var(--sans); font-stretch: 125%; font-variation-settings: 'wdth' 125; letter-spacing: .2em; margin-right: -.2em; }
.lg-ractr i { width: .95em; height: .95em; border-radius: 50%; border: .15em solid #f4c38b; display: grid; place-items: center; }
.lg-ractr i::after { content: ''; width: .28em; height: .28em; border-radius: 50%; background: #f4c38b; }
.tomb-logo .lg-ractr { font-size: clamp(18px, 1.9vw, 28px); }
.lg-fk { font: 800 1em/1 var(--sans); letter-spacing: -.01em; }
.tomb-logo .lg-fk { font-size: clamp(22px, 2.3vw, 34px); }
.lg-fk b { font-weight: 800; color: #fbbf24; }
.lg-planck { display: inline-flex; align-items: center; gap: .55em; font: 500 1em/1 var(--sans); letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.lg-planck svg { width: 1.7em; height: 1.7em; flex: none; }
.tomb-logo .lg-planck { font-size: clamp(13px, 1.3vw, 20px); }
.lg-planck b { font-weight: 900; letter-spacing: .03em; }
.lg-ameka { display: inline-flex; align-items: center; gap: .7em; font: 500 1em/1 var(--sans); letter-spacing: .34em; margin-right: -.34em; }
.lg-ameka svg { width: 1.9em; height: auto; flex: none; }
.tomb-logo .lg-ameka { font-size: clamp(17px, 1.75vw, 26px); }

.tomb-caption { padding: 22px 2px 0; }
.tomb-caption h3 { font: 400 23px/1.2 var(--serif); letter-spacing: -.005em; }
.tomb-caption p { margin-top: 8px; font: 300 15.5px/1.55 var(--serif); color: var(--text-2); }
.tomb-url {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font: 500 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--gold);
}
.tomb-url svg { width: 13px; height: 13px; transition: transform .35s var(--ease); }
.tomb-url:hover svg { transform: translate(2px, -2px); }

/* ---------- Focus ---------- */
.focus { padding: clamp(96px, 12vw, 160px) 0; background: var(--ink); border-top: 1px solid var(--line-soft); }
.focus-grid {
  list-style: none; margin: 0 auto; padding: 0 var(--gutter); max-width: var(--max);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0;
}
.focus-grid li { padding: 34px clamp(18px, 2vw, 32px) 8px; border-left: 1px solid var(--line); scroll-margin-top: 100px; }
.focus-grid li:first-child { border-left: 0; padding-left: 0; }
.num {
  display: block; font: 400 clamp(48px, 5vw, 72px)/1 var(--display);
  background: var(--gold-grad); background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.focus-grid h3 { margin-top: 26px; font: 400 24px/1.2 var(--serif); }
.focus-grid p { margin-top: 12px; font: 300 16px/1.6 var(--serif); color: var(--text-2); }
.focus-cos { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.focus-grid .focus-cos { margin-top: 18px; }
.focus-cos a { font: 500 11px/1.6 var(--sans); letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .3s; }
.focus-cos a:hover { border-color: var(--gold); }

/* ---------- About ---------- */
.about { padding: clamp(96px, 12vw, 170px) var(--gutter); background: var(--ink-2); border-top: 1px solid var(--line-soft); }
.about-inner { max-width: 1120px; margin: 0 auto; }
.statement {
  margin-top: 26px; text-wrap: balance;
  font: 300 clamp(30px, 3.9vw, 56px)/1.14 var(--serif); letter-spacing: -.015em;
}
.about-cols { margin-top: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); max-width: 980px; }
.about-cols p { font: 300 18px/1.65 var(--serif); color: var(--text-2); }
.founder { margin-top: 44px; font: 400 italic 18px/1.4 var(--serif); color: var(--text-2); }
.founder a { color: var(--gold-hi); text-decoration: none; border-bottom: 1px solid var(--line); font-style: normal; }
.founder a:hover { border-color: var(--gold-hi); }

/* ---------- Contact ---------- */
.cta { position: relative; overflow: hidden; isolation: isolate; padding: clamp(110px, 14vw, 200px) var(--gutter); text-align: center; background: #050506; }
.cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background: url('/assets/video/hero-poster.jpg') 64% 50% / cover no-repeat;
  opacity: .42; filter: blur(2px) saturate(.9);
  -webkit-mask-image: radial-gradient(65% 75% at 50% 50%, #000 20%, transparent 100%);
  mask-image: radial-gradient(65% 75% at 50% 50%, #000 20%, transparent 100%);
}
.cta-inner { max-width: 760px; margin: 0 auto; }
.deco-sm { margin-top: 26px; font-size: clamp(42px, 6.4vw, 96px); }
.cta-copy { margin-top: 22px; font: 300 19px/1.5 var(--serif); color: var(--text-2); }
.btn-gold {
  display: inline-block; margin-top: 38px; padding: 18px 34px;
  font: 500 12px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; text-decoration: none;
  color: var(--gold-hi); border: 1px solid var(--gold);
  background: linear-gradient(var(--gold), var(--gold)) 0 0 / 0 100% no-repeat;
  transition: background-size .55s var(--ease), color .4s;
}
.btn-gold:hover { background-size: 100% 100%; color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--line-soft); padding: 64px var(--gutter) 40px; }
.footer-top, .footer-legal { max-width: var(--max); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-cols { display: flex; gap: clamp(40px, 7vw, 110px); }
.footer-h { font: 500 10.5px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-cols a { display: block; padding: 5px 0; font: 300 15.5px/1.4 var(--serif); text-decoration: none; color: var(--text-2); transition: color .3s; }
.footer-cols a:hover { color: var(--text); }
.footer-legal { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 12px 40px; flex-wrap: wrap; font: 300 13px/1.55 var(--serif); color: var(--text-3); }
.disclosure { max-width: 640px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .tombs { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 48px; }
  .tomb-logo > span { font-size: clamp(16px, 2.6vw, 24px); }
  .tomb-logo .lg-ractr { font-size: clamp(18px, 3.2vw, 30px); }
  .tomb-logo .lg-fk { font-size: clamp(22px, 3.8vw, 36px); }
  .tomb-logo .lg-ameka { font-size: clamp(17px, 3vw, 28px); }
  .focus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .focus-grid li:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar { height: 60px; }
  .wordmark { font-size: 20px; }
  .hero-copy { bottom: 132px; }
  .deco { font-size: clamp(38px, 11.2vw, 64px); }
  .hero-foot { bottom: max(24px, env(safe-area-inset-bottom)); }
  .seal { width: 44px; height: 44px; }
  .tagline { font-size: 14px; }
  .scroll-cue span { display: none; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 5, 6, .94) 0%, rgba(5, 5, 6, .7) 30%, rgba(5, 5, 6, .15) 58%, rgba(5, 5, 6, 0) 70%),
      linear-gradient(180deg, rgba(5, 5, 6, .35) 0%, rgba(5, 5, 6, 0) 16%);
  }

  .tombs {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px;
    padding-bottom: 6px; scroll-padding: 0 var(--gutter); scrollbar-width: none;
  }
  .tombs::-webkit-scrollbar { display: none; }
  .tomb { flex: 0 0 84%; scroll-snap-align: start; }
  .tomb-logo > span { font-size: 19px; }
  .tomb-logo .lg-ractr { font-size: 24px; }
  .tomb-logo .lg-fk { font-size: 30px; }
  .tomb-logo .lg-ameka { font-size: 22px; }

  .focus-grid { grid-template-columns: 1fr; row-gap: 0; }
  .focus-grid li, .focus-grid li:first-child, .focus-grid li:nth-child(3) { border-left: 0; padding: 30px 0; border-top: 1px solid var(--line); }
  .about-cols { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .hero-copy .deco span, .hero-copy .arrow-link, .hero-foot, .js .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
}
