:root {
  --void: #07080c;
  --void-2: #101218;
  --void-3: #181b22;
  --fog: #efece6;
  --fog-2: #d8d3c8;
  --mute: #8e8980;
  --ember: #e85d2c;
  --ember-2: #ff7a45;
  --line: rgba(239, 236, 230, 0.12);
  --line-strong: rgba(239, 236, 230, 0.22);
  --danger: #e07070;
  --ok: #7dcea0;
  --header-h: 72px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --wrap: min(1240px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--void);
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  color: var(--fog);
  background: var(--void);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  min-height: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3, p {
  margin: 0;
  overflow-wrap: anywhere;
  max-width: 100%;
}

ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--ember);
  color: #fff;
  padding: 8px 12px;
  z-index: 200;
}
.skip-link:focus { top: 12px; }

.cursor { display: none; }

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

.wrap {
  width: 100%;
  max-width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

.eyebrow {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
  margin-bottom: 14px;
}

.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.02;
  text-transform: uppercase;
}

.italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -.02em;
}

.lead {
  color: var(--mute);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: min(42ch, 100%);
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(7,8,12,.55), transparent);
}
body.nav-open .site-header,
.site-header.is-solid {
  background: color-mix(in srgb, var(--void) 86%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: 100%;
  max-width: min(1360px, calc(100% - 32px));
  margin-inline: auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.logo-mark { display: flex; color: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.logo-text em {
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .55;
  margin-top: 4px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.nav a {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--ember);
  transition: right .35s var(--ease);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-size: .82rem;
  letter-spacing: .04em;
  color: #fff;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  border-radius: 50%;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1px;
  background: #fff;
}
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 24px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(40deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-40deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); color: inherit; }
.btn-gold {
  background: var(--ember);
  color: #fff;
}
.btn-gold:hover { background: var(--ember-2); color: #fff; }
.btn-ghost {
  border-color: rgba(255,255,255,.28);
  color: #fff;
  background: transparent;
}
.btn-ghost-dark {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--fog);
}
.btn-block { width: 100%; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  isolation: isolate;
  max-width: 100%;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: saturate(1.05) contrast(1.06);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,8,12,.78) 0%, rgba(7,8,12,.28) 48%, rgba(7,8,12,.35) 100%),
    linear-gradient(180deg, rgba(7,8,12,.28) 0%, rgba(7,8,12,.08) 38%, rgba(7,8,12,.82) 100%);
}

.hero-frame {
  width: 100%;
  max-width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 20px) 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  min-height: 100svh;
  min-width: 0;
  position: relative;
}
.hero-frame > * {
  min-width: 0;
  max-width: 100%;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(239,236,230,.55);
}

.hero-center {
  display: block;
  margin-top: auto;
  padding-top: 8vh;
  container-type: inline-size;
}

.hero h1 {
  font-size: clamp(1.7rem, 8.2cqi, 5rem);
  max-width: 100%;
  width: 100%;
  white-space: normal;
  word-break: break-word;
}
.hero h1 .italic {
  display: block;
  font-size: .42em;
  color: var(--ember);
  margin: .08em 0 .04em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 28px;
  border-top: 1px solid rgba(239,236,230,.14);
  padding-top: 22px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  font-size: .78rem;
  color: rgba(239,236,230,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-meta strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: -.03em;
  text-transform: none;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.ticker {
  background: var(--ember);
  color: #1a0c08;
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 32s linear infinite;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  min-width: 0;
  max-width: 100%;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  max-width: 16ch;
}

.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 720px;
}
.bento a {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  isolation: isolate;
}
.bento a:first-child { grid-row: 1 / span 2; }
.bento img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.1s var(--ease);
}
.bento a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(7,8,12,.82));
}
.bento a:hover img { transform: scale(1.06); }
.bento h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -.04em;
  text-transform: uppercase;
  font-weight: 800;
}
.bento p {
  color: rgba(239,236,230,.7);
  font-size: .92rem;
  margin-top: 6px;
  max-width: 36ch;
}
.bento-index {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ember);
}

.stage {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,8,12,.78), rgba(7,8,12,.2) 55%);
}
.stage-inner {
  width: 100%;
  max-width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
  min-width: 0;
}
.stage h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.8rem);
  max-width: 18ch;
  margin: 12px 0 20px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 22px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 10px;
  color: var(--mute);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 8px 28px 0 0;
  position: relative;
}
.step::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--line-strong);
  margin-bottom: 22px;
}
.step b {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ember);
  font-size: 1.8rem;
  font-weight: 500;
}
.step h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-size: 1.2rem;
  margin: 10px 0 8px;
}
.step p { color: var(--mute); font-size: .95rem; font-weight: 300; }

.quote-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 12px;
}
.quote {
  background: var(--void-2);
  border: 1px solid var(--line);
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.quote:first-child {
  background: var(--fog);
  color: var(--void);
  border: 0;
}
.quote:first-child p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.2;
  font-style: italic;
}
.quote footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
}
.quote:first-child footer { color: rgba(7,8,12,.5); }

.paper {
  background: var(--fog);
  color: var(--void);
}
.paper .lead,
.paper .muted,
.paper .stat span { color: #6b665e; }
.paper .eyebrow { color: var(--ember); }
.paper .stat { border-color: rgba(7,8,12,.12); }
.paper .stats { border-color: rgba(7,8,12,.12); }

.cta-band {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  max-width: 16ch;
}

.page-hero {
  padding: calc(var(--header-h) + 72px) 0 28px;
  min-width: 0;
  container-type: inline-size;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 7.5cqi, 3.6rem);
  max-width: 100%;
  line-height: 1.08;
}

.gallery {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 12px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  filter: saturate(.9) contrast(1.05);
}
.gallery-side { display: grid; gap: 12px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  width: 100%;
}
.split > * { min-width: 0; }
.split img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}
@media (min-width: 861px) {
  .split-rev { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
  .split-rev img { order: 2; }
}

.checklist { display: grid; gap: 12px; margin-top: 24px; }
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--fog-2);
}
.checklist li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: 8px;
  flex: 0 0 7px;
  background: var(--ember);
  border-radius: 50%;
}
.contact-lines a { color: #fff; border-bottom: 1px solid var(--ember); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.card {
  background: var(--void-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  min-width: 0;
}
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 20px; display: grid; gap: 8px; }
.card h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-size: 1.25rem;
}
.card p, .card li { color: var(--mute); font-size: .92rem; }

.review-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.review {
  background: var(--void-2);
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  gap: 16px;
}
.stars { color: var(--ember); letter-spacing: .14em; font-size: .8rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.place {
  background: var(--void-2);
  border: 1px solid var(--line);
  overflow: hidden;
  min-width: 0;
}
.place iframe { width: 100%; height: 240px; border: 0; display: block; filter: grayscale(1) contrast(1.1); }
.place-body { padding: 24px; display: grid; gap: 8px; }
.place h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-size: 1.6rem;
}

.form-panel {
  background: var(--void-2);
  border: 1px solid var(--line);
  padding: 28px;
}
.lead-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: grid; gap: 6px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--void);
  border-radius: 0;
  padding: 14px 14px;
  min-height: 50px;
  color: var(--fog);
}
.lead-form textarea { min-height: 120px; resize: vertical; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 1px solid var(--ember);
  border-color: var(--ember);
}
.form-note { font-size: .78rem; color: var(--mute); letter-spacing: 0; text-transform: none; }
.form-note a { border-bottom: 1px solid var(--ember); }
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.prose { max-width: 62ch; display: grid; gap: 16px; color: var(--fog-2); font-weight: 300; }
.prose a { border-bottom: 1px solid var(--ember); }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.badge {
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer {
  background: #05060a;
  border-top: 1px solid var(--line);
  padding: 72px 0 120px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1fr 1fr;
  gap: 36px;
}
.footer-kicker {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--ember);
}
.footer-title {
  font-family: var(--display);
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: -.05em;
  font-weight: 800;
  margin: 10px 0 14px;
}
.footer-copy, .footer-list { color: var(--mute); font-size: .92rem; font-weight: 300; }
.footer-list { display: grid; gap: 8px; }
.footer-list a:hover { color: #fff; }
.footer-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--ember);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--mute);
}

.mobile-bar { display: none; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 90; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,6,10,.72); }
.modal-sheet {
  position: relative;
  width: min(520px, calc(100% - 24px));
  margin: 8vh auto 0;
  background: var(--void-2);
  border: 1px solid var(--line);
  padding: 32px 26px 26px;
  max-height: 86svh;
  overflow: auto;
}
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
}
.modal-lead { color: var(--mute); margin: 8px 0 18px; }
.modal-sheet h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -.04em;
  font-size: 2rem;
}

.toast {
  width: var(--wrap);
  margin: calc(var(--header-h) + 16px) auto 0;
  padding: 12px 16px;
  font-weight: 500;
}
.toast-ok { background: color-mix(in srgb, var(--ok) 18%, var(--void)); color: var(--ok); }
.toast-err { background: color-mix(in srgb, var(--danger) 16%, var(--void)); color: var(--danger); }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  animation: rise .9s var(--ease) forwards;
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

body.nav-open { overflow: hidden; }

@media (max-width: 1100px) {
  .hero-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento, .stats, .steps, .footer-grid, .cards { grid-template-columns: 1fr 1fr; }
  .bento { min-height: 0; grid-template-rows: none; }
  .bento a:first-child { grid-row: auto; min-height: 380px; }
  .quote-grid, .split, .cta-band, .gallery, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .header-phone { display: none; }
}

@media (max-width: 860px) {
  :root { --wrap: min(1240px, calc(100% - 28px)); --header-h: 64px; }
  body { cursor: auto; }
  .cursor { display: none; }

  .nav-toggle { display: inline-block; }
  .header-cta { display: none; }
  .site-header { mix-blend-mode: normal; }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--void);
    flex-direction: column;
    justify-content: center;
    padding: 88px 28px 120px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 55;
  }
  .nav a {
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
    text-transform: uppercase;
  }
  body.nav-open .nav { transform: none; }

  .section { padding: 72px 0; }
  .section-head, .hero-bottom { grid-template-columns: 1fr; display: grid; }
  .form-row, .review-list, .cards, .stats, .steps, .footer-grid, .bento {
    grid-template-columns: 1fr;
  }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero h1 { font-size: 1.8rem; letter-spacing: -.02em; }
  .hero-frame { min-height: 100svh; padding-bottom: 96px; }
  .hero-top span:last-child { display: none; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .lead { max-width: 100%; font-size: .95rem; }
  .hero-bottom .lead { padding-right: 0; }
  .page-hero h1 { font-size: 1.65rem; max-width: 100%; letter-spacing: -.02em; }
  .logo-text em { letter-spacing: .08em; font-size: .55rem; }
  .bento h3 { font-size: 1.4rem; }
  .nav { gap: 18px; }

  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    background: #05060a;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
  }
  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: none;
    flex: 1 1 33%;
    height: 44px;
    text-align: center;
    background: var(--void-3);
    color: #fff;
    font-size: .7rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .mobile-bar a.is-gold { background: var(--ember); }
  .site-footer { padding-bottom: 130px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .card-body, .quote, .review, .form-panel { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; animation: none; }
  .btn:hover { transform: none; }
  .hero-media video { display: none; }
  .hero-media {
    background: #07080c url("../img/hero-poster.jpg") center / cover no-repeat;
  }
}
