:root {
  --navy: #071120;
  --navy-2: #0d1a2c;
  --black: #030405;
  --paper: #f4f5f4;
  --muted: #8d939b;
  --ink: #171b20;
  --gold: #dfa959;
  --gold-2: #dfa959;
  --cyan: #42d6d2;
  --line: rgba(7, 17, 32, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { scroll-padding-top: 112px; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
section, main [id] { scroll-margin-top: 112px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, .method-step {
  font-family: Syncopate, Arial, sans-serif;
  font-weight: 700;
}
em {
  color: var(--gold);
  font-family: "Libre Baskerville", Baskerville, Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #071022;
  color: #fff;
  transition: opacity .45s ease, visibility .45s ease;
}
.page-loader img { width: 118px; height: auto; }
.page-loader span {
  font-family: Syncopate, Arial, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.page-loader::after {
  width: 150px;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.16);
  content: "";
  box-shadow: inset 52px 0 0 var(--gold);
  animation: loaderBar 1.05s ease-in-out infinite alternate;
}
body:not(.is-loading) .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 32px 34px;
  color: #fff;
  transition: top .25s ease, background .25s ease, box-shadow .25s ease;
  animation: headerIn .75s ease both;
}
.site-header.scrolled {
  top: 0;
  background: rgba(7, 17, 32, .82);
  border-radius: 0;
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.logo { display: inline-grid; line-height: .82; text-transform: uppercase; }
.logo-image img { display: block; width: clamp(88px, 7vw, 118px); height: auto; }
.site-header .logo-image img { filter: brightness(0) invert(1) grayscale(1); }
.footer .logo-image img, .legal-header .logo-image img { filter: none; }
.logo strong { font-family: "Libre Baskerville", Baskerville, Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.8rem); font-weight: 700; letter-spacing: -0.08em; }
.logo span { margin-top: 6px; font-family: Syncopate, Arial, sans-serif; font-size: .42rem; font-weight: 700; letter-spacing: .08em; }
.nav { display: flex; justify-content: center; gap: clamp(14px, 1.5vw, 26px); font-family: Syncopate, Arial, sans-serif; font-size: .62rem; font-weight: 700; text-transform: lowercase; }
.nav a { opacity: .78; transition: color .2s ease, opacity .2s ease; }
.nav a:hover { color: var(--gold-2); opacity: 1; }
.pill {
  border-radius: 999px;
  padding: 13px 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .67rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
}
.pill-light { background: #fff; color: var(--navy); }
.menu { display: none; border: 0; background: transparent; padding: 8px; }
.menu span { display: block; width: 25px; height: 2px; margin: 5px; background: #fff; }

.framed {
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  perspective: 1200px;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: -2%;
  z-index: -2;
  background: linear-gradient(90deg, rgba(4,8,14,.95) 0 42%, rgba(4,8,14,.2)), url("assets/gz2026/hero-bg.png") center/cover;
}
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 65% 30%, rgba(240,198,109,.22), transparent 20rem), linear-gradient(180deg, transparent 70%, rgba(0,0,0,.32));
  content: "";
}
.hero-copy {
  width: min(560px, 46%);
  margin-left: clamp(56px, 7vw, 104px);
  color: #fff;
  transform: translate3d(var(--text-x, 0), var(--text-y, 0), 0) rotateX(var(--text-rx, 0deg)) rotateY(var(--text-ry, 0deg)) scale(var(--text-scale, 1));
  transform-style: preserve-3d;
  will-change: transform;
  animation: heroCopyIn .9s ease .18s both;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4.45vw, 4.55rem);
  line-height: .94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 em { display: inline-block; font-size: 1.08em; letter-spacing: -0.04em; }
.hero p { max-width: 470px; margin: 20px 0 0; color: rgba(255,255,255,.64); font-size: 1rem; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 25px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: #fff; color: var(--navy); }
.button-outline { border: 1px solid rgba(255,255,255,.64); color: #fff; }
.hero-cube {
  position: absolute;
  right: clamp(-120px, -5vw, -48px);
  bottom: clamp(-110px, -8vw, -52px);
  width: min(68vw, 900px);
  max-height: 92vh;
  object-fit: contain;
  filter: drop-shadow(0 34px 60px rgba(0,0,0,.5)) drop-shadow(0 0 28px rgba(223,169,89,.14));
  animation: cubeIn 1s cubic-bezier(.2,.8,.2,1) .28s both;
}

.section { padding: 36px max(24px, calc((100vw - 1200px)/2 + 18px)); }
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
  padding-top: 16px;
  color: #a5a9ae;
  font-family: Syncopate, Arial, sans-serif;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-label span { color: #90969d; }
.section-label i { width: 82px; height: 1px; background: currentColor; opacity: .55; }
.section-label strong { color: inherit; }
.on-dark { color: rgba(255,255,255,.45); }
.gold-label { color: var(--gold); }
.gold-label span { color: currentColor; }

.what { padding-top: 54px; padding-bottom: 76px; }
.what-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 46px 70px; max-width: 920px; margin: 0 auto; }
.mini-card { display: grid; grid-template-columns: 68px 1fr; gap: 22px; align-items: center; }
.mini-card .what-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 12px;
  background: #e7eefb;
}
.mini-card .what-icon img { width: 42px; height: 42px; object-fit: contain; }
.mini-card h3 { margin: 0 0 12px; font-family: Syncopate, Arial, sans-serif; font-size: .78rem; line-height: 1.15; text-transform: uppercase; }
.mini-card p { margin: 0; color: #69717a; font-size: .94rem; line-height: 1.55; }

.dark-section { background: #000; color: #fff; }
.focus { padding: 46px max(24px, calc((100vw - 1200px)/2 + 18px)) 112px; }
.focus h2 {
  max-width: 960px;
  margin: 88px auto 0;
  text-align: center;
  font-family: Syncopate, Arial, sans-serif;
  font-size: clamp(1.7rem, 2.65vw, 2.65rem);
  line-height: 1.22;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.services { background: #f0f1f1; padding-top: 36px; padding-bottom: 44px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1120px; margin: 0 auto; }
.service-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 18px;
  padding: 34px 26px;
  box-shadow: 0 20px 50px rgba(12,20,30,.08);
}
.service-card span { display: none; }
.service-card h3 { margin: 0; font-size: 1.55rem; letter-spacing: -0.03em; }
.service-card h3::after { display: block; width: 34px; height: 3px; margin-top: 12px; background: var(--cyan); content: ""; }
.service-card p { max-width: 250px; color: inherit; line-height: 1.65; font-size: .9rem; opacity: .72; }
.service-card a, .service-more { font-size: .73rem; font-weight: 700; }
.service-more {
  display: inline-flex;
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.service-more:hover { color: var(--gold); }
.dark-card { background: var(--navy); color: #fff; }
.light-card { background: #fff; color: var(--ink); }
.service-image {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 22px;
  width: 86%;
  height: 330px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 22px 42px rgba(0,0,0,.14);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 5, .72);
  backdrop-filter: blur(12px);
}
.service-modal__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(223,169,89,.24);
  border-radius: 18px;
  padding: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(circle at 78% 12%, rgba(223,169,89,.18), transparent 24rem),
    radial-gradient(circle at 14% 86%, rgba(66,214,210,.12), transparent 22rem),
    linear-gradient(135deg, #06101d, #0a1423 54%, #101825);
  color: #fff;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
  transform: translateY(18px) scale(.98);
  transition: transform .28s ease;
}
.service-modal.is-open .service-modal__panel { transform: translateY(0) scale(1); }
.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.service-modal__eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: Syncopate, Arial, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.service-modal h2 {
  max-width: 620px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.service-modal__intro {
  max-width: 610px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.76);
  font-size: 1.02rem;
  line-height: 1.75;
}
.service-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}
.service-modal__grid > div,
.service-modal__result {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 24px;
  background: rgba(255,255,255,.055);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.service-modal h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-modal ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}
.service-modal li,
.service-modal__result p {
  color: rgba(255,255,255,.68);
  font-size: .95rem;
  line-height: 1.6;
}
.service-modal__result { margin-top: 22px; }
.service-modal__result p { margin: 0; }
.service-modal__cta { margin-top: 24px; }
body.modal-open { overflow: hidden; }

.portfolio { background: #fff; padding-top: 28px; padding-bottom: 44px; }
.portfolio-grid { display: flex; gap: 16px; align-items: stretch; max-width: 1120px; margin: 0 auto; }
.project-card {
  position: relative;
  min-height: 520px;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 20px;
  padding: 24px;
  color: #fff;
  background: #dfe5e9;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  isolation: isolate;
  transition: flex .35s ease, transform .25s ease, filter .25s ease;
}
.project-card.lazy-bg { background-image: linear-gradient(135deg, #dfe5e9, #b7c0c9); }
.project-card.lazy-bg.is-loaded { background-image: var(--image); }
.project-card:hover { flex: 2.15 1 0; transform: translateY(-6px); }
.portfolio-grid:hover .project-card:not(:hover) { flex: .72 1 0; filter: saturate(.72) brightness(.9); }
.project-card::before { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.74)); content: ""; }
.project-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  font-weight: 700;
  content: "->";
}
.project-card h3 { margin: 0 0 8px; font-size: 1.65rem; line-height: .98; letter-spacing: -0.04em; }
.project-card p { max-width: 270px; margin: 0 0 20px; color: rgba(255,255,255,.8); font-size: .78rem; line-height: 1.55; }
.project-card a { align-self: stretch; border-radius: 999px; padding: 12px 16px; background: rgba(255,255,255,.92); color: var(--navy); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.badge { position: absolute; top: 18px; left: 18px; border: 1px solid rgba(255,255,255,.46); border-radius: 999px; padding: 9px 13px; color: #e5f76c; font-size: .72rem; font-weight: 700; }

.method { min-height: 150vh; padding: 56px max(24px, calc((100vw - 1200px)/2 + 18px)); }
.method-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.method-intro { position: sticky; top: 140px; }
.method-intro h2 { margin: 0 0 24px; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -0.05em; text-transform: uppercase; }
.method-intro p { max-width: 390px; color: rgba(255,255,255,.58); line-height: 1.75; }
.method-steps { display: grid; gap: 58px; padding-bottom: 35vh; }
.method-step {
  min-height: 150px;
  color: rgba(255,255,255,.38);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
}
.method-step span { display: block; color: var(--gold); font-size: .78rem; letter-spacing: .2em; }
.method-step p { max-width: 440px; color: rgba(255,255,255,.52); font-size: .9rem; line-height: 1.7; letter-spacing: 0; text-transform: none; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.method-step.active { color: #fff; transform: translateX(-12px); }
.method-step.active p { opacity: 1; transform: translateY(0); }

.experience { min-height: 640px; display: block; background: #f8f8f7; text-align: left; padding-top: 42px; }
.experience-copy { width: 620px; max-width: calc(100vw - 48px); margin: 0 auto; padding-top: 34px; }
.experience h2 { width: 620px; max-width: 100%; margin: 0 0 58px; font-size: clamp(1.78rem, 2.05vw, 2.25rem); line-height: 1.2; letter-spacing: .035em; text-transform: uppercase; }
.experience h2 br { display: block; }
.experience h2::after { display: block; width: 96px; height: 2px; margin: 36px 0 0; background: var(--gold); content: ""; }
.experience-text { width: 620px; max-width: 100%; margin: 0; text-align: justify; }
.experience p { margin: 0 0 24px; color: #a7abb0; font-size: .98rem; font-weight: 700; line-height: 1.34; }

.contact-band { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; padding: 104px 24px 108px; color: #fff; text-align: center; background: var(--navy); }
.contact-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .76; }
.contact-band::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,32,.92), rgba(7,17,32,.2)); content: ""; }
.contact-band .section-label { position: absolute; z-index: 2; top: 34px; left: max(24px, calc((100vw - 1200px)/2 + 18px)); }
.contact-content { position: relative; z-index: 2; width: min(920px, 100%); display: grid; gap: 30px; justify-items: center; }
.contact-band h2, .contact-band a, .contact-form { position: relative; z-index: 2; }
.contact-band h2 { margin: 22px 0 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.05em; text-transform: uppercase; }
.contact-band a { color: rgba(255,255,255,.7); font-weight: 700; }
.contact-form {
  width: min(760px, 100%);
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(7,17,32,.72);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
  text-align: left;
}
.contact-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form span {
  color: rgba(255,255,255,.72);
  font-family: Syncopate, Arial, sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 13px 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.contact-form select option { color: #071022; }
.contact-form textarea { resize: vertical; min-height: 112px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(223,169,89,.85);
  background: rgba(255,255,255,.12);
}
.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.contact-form__status {
  min-height: 20px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: .88rem;
  text-align: center;
}
.contact-band .contact-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229,183,97,.72);
  border-radius: 999px;
  padding: 0 26px;
  background: var(--gold);
  color: #08111f;
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease;
}
.contact-band .contact-cta:hover { background: var(--gold-2); transform: translateY(-2px); }

.claim { display: grid; min-height: 360px; place-items: center; text-align: center; background: #fff; }
.claim h2 { color: #b8bbc0; font-size: clamp(1.35rem, 2.65vw, 2.35rem); line-height: 1.45; letter-spacing: .03em; text-transform: uppercase; }
.claim h2 span { display: block; white-space: nowrap; }
.claim h2 em { margin-left: .35em; }

.footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 44px;
  padding: 58px max(24px, calc((100vw - var(--max))/2)) 26px;
  background: #071022;
  color: #fff;
}
.footer p { max-width: 260px; color: rgba(255,255,255,.48); line-height: 1.75; font-size: .82rem; }
.footer h4 { margin: 0 0 20px; color: rgba(255,255,255,.58); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; }
.footer a, .footer span { display: block; margin: 10px 0; color: rgba(255,255,255,.62); font-size: .8rem; }
.footer-logo { margin-bottom: 18px; }
.social { display: flex; gap: 16px; margin-top: 20px; }
.social a { display: inline-flex; width: auto; min-height: 32px; align-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 0 14px; }
.footer-bottom { grid-column: 1/-1; display: flex; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom span:last-child { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom span:last-child a { margin: 0; }

.legal-page { background: #f8f8f7; color: var(--ink); }
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px max(24px, calc((100vw - var(--max))/2));
  background: #071022;
  color: #fff;
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 76px 24px 110px;
}
.legal-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: Syncopate, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.legal-content h1, .legal-content h2 {
  font-family: Syncopate, Arial, sans-serif;
  text-transform: uppercase;
}
.legal-content h1 {
  margin: 0 0 34px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}
.legal-content h2 {
  margin: 42px 0 12px;
  font-size: .96rem;
  letter-spacing: .06em;
}
.legal-content p {
  color: #626971;
  font-size: 1rem;
  line-height: 1.75;
}
.legal-content a { color: var(--gold); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  html { scroll-padding-top: 92px; }
  section, main [id] { scroll-margin-top: 92px; }
  .site-header { grid-template-columns: auto 1fr auto; padding: 18px 24px; }
  .nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7,17,32,.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
  }
  body.nav-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu { display: block; justify-self: end; }
  .site-header .pill { display: none; }
  .framed { width: 100%; margin-top: 0; border-radius: 0; }
  .hero { min-height: 730px; align-items: start; padding-top: 145px; }
  .hero-copy { width: auto; margin: 0 28px; }
  .kicker { margin-bottom: 44px; }
  .hero-cube { width: min(112vw, 780px); right: -30%; bottom: -5%; }
  .what-grid, .service-grid, .method-wrap, .experience, .footer { grid-template-columns: 1fr; }
  .experience-copy { width: 720px; max-width: calc(100vw - 48px); margin: 0 auto; }
  .portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .method { min-height: auto; }
  .method-intro { position: static; }
  .method-steps { padding-bottom: 0; }
}

@media (max-width: 620px) {
  .framed { width: 100%; margin-top: 0; border-radius: 0; }
  .site-header { top: 0; width: 100%; }
  .logo strong { font-size: 2.2rem; }
  .hero { min-height: 690px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4.1rem); }
  .hero h1 span { white-space: normal; }
  .hero-cube { width: 680px; right: -300px; bottom: -10px; opacity: .86; }
  .what-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .mini-card { grid-template-columns: 58px 1fr; }
  .mini-card .what-icon { width: 56px; height: 56px; }
  .mini-card .what-icon img { width: 36px; height: 36px; }
  .claim h2 span { white-space: normal; }
  .service-card { min-height: 520px; }
  .project-card { min-height: 430px; }
  .focus h2 { margin-top: 46px; text-align: left; font-size: 1.5rem; }
  .experience h2 { font-size: 1.55rem; }
  .footer-bottom { display: block; }
  .service-modal { padding: 14px; }
  .service-modal__panel { max-height: calc(100vh - 28px); }
  .service-modal__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}

@keyframes headerIn {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translate3d(var(--text-x, 0), var(--text-y, 0), 0) rotateX(var(--text-rx, 0deg)) rotateY(var(--text-ry, 0deg)) scale(var(--text-scale, 1)); }
}

@keyframes cubeIn {
  from { opacity: 0; transform: translate3d(80px, 28px, 0) scale(.96); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes loaderBar {
  from { box-shadow: inset 28px 0 0 var(--gold); }
  to { box-shadow: inset 150px 0 0 var(--gold); }
}
