:root {
  --oxide: #a34432;
  --oxide-deep: #7a2e22;
  --oxide-bright: #c45a42;
  --bottle: #1f4a38;
  --bottle-mid: #2d5e48;
  --bottle-deep: #143328;
  --stone: #e4d4bb;
  --stone-warm: #f3e7d2;
  --stone-deep: #cbb89a;
  --iron: #2b2724;
  --iron-mid: #4a433d;
  --iron-edge: #6b6258;
  --chalk: #24352c;
  --chalk-dust: #e8e2d0;
  --ink: #221e1b;
  --muted: #5c534a;
  --line: rgba(43, 39, 36, 0.14);
  --shadow: 0 18px 36px rgba(20, 16, 12, 0.16);
  --display: "Newsreader", "Times New Roman", serif;
  --industrial: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --text: "Manrope", "Segoe UI", sans-serif;
  --hand: "Kalam", "Comic Sans MS", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(43, 39, 36, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(163, 68, 50, 0.05) 1px, transparent 1px),
    radial-gradient(ellipse 80% 40% at 50% 0, rgba(31, 74, 56, 0.12), transparent 55%),
    var(--stone);
  background-size: 92px 100%, 100% 28px, auto, auto;
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

main {
  overflow-x: hidden;
  width: 100%;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  overflow-wrap: anywhere;
}

h2 {
  max-width: 22rem;
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3.8vw, 3rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 40;
  padding: 10px 14px;
  background: var(--oxide);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  width: 100%;
  max-width: 100%;
  padding: 12px max(4vw, 18px);
  background: linear-gradient(180deg, #2f2a26 0%, var(--iron) 100%);
  color: var(--stone-warm);
  border-bottom: 4px solid var(--oxide);
  box-shadow: 0 10px 24px rgba(20, 12, 8, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-plate {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background:
    linear-gradient(180deg, #6a4334, var(--oxide-deep));
  border: 2px solid #d9b08a;
  box-shadow: inset 0 0 0 2px #7a3b2c;
  font-family: var(--industrial);
  line-height: 1;
}

.brand-plate b {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.brand-plate small {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--industrial);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy small {
  color: #cfc3b2;
  font-size: 0.78rem;
}

.desktop-nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 12px;
}

.desktop-nav a {
  padding: 6px 2px;
  color: #d8cec0;
  font-size: 0.82rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
  border-bottom-color: var(--oxide-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--iron-edge);
}

.lang-btn {
  min-width: 42px;
  padding: 7px 10px;
  background: transparent;
  color: #cfc3b2;
  border: 0;
}

.lang-btn.active {
  background: var(--oxide);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--iron-edge);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--stone);
}

.mobile-menu {
  flex-basis: 100%;
  display: grid;
  gap: 8px;
  padding: 8px 0 6px;
  border-top: 1px solid var(--iron-mid);
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  padding: 8px 0;
  color: var(--stone-warm);
}

.arcade {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) 14px;
  width: 100%;
  max-width: 100%;
  height: 92px;
  background: linear-gradient(180deg, var(--bottle-deep), var(--bottle));
  overflow: hidden;
}

.arcade-bay {
  position: relative;
  min-width: 0;
  border-left: 12px solid var(--iron);
  background:
    radial-gradient(ellipse 120% 92% at 50% 118%, var(--stone) 0 54%, transparent 55%),
    linear-gradient(180deg, #0f241c, var(--bottle-mid));
}

.arcade-bay .column,
.arcade .column.last {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12px;
  background:
    linear-gradient(90deg, #1a1715, var(--iron-mid) 40%, #1a1715);
  box-shadow: inset 2px 0 0 rgba(255, 255, 255, 0.08);
}

.arcade-bay .column {
  left: -12px;
}

.arcade .column.last {
  position: relative;
  width: 14px;
  background:
    linear-gradient(90deg, #1a1715, var(--iron-mid) 40%, #1a1715);
}

.arcade-bay .vault {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -2px;
  height: 72%;
  border: 3px solid rgba(163, 68, 50, 0.55);
  border-bottom: 0;
  border-radius: 120px 120px 0 0;
  box-shadow: inset 0 12px 0 rgba(232, 226, 208, 0.06);
}

.bay {
  position: relative;
  padding: 88px max(5vw, 22px);
  scroll-margin-top: 92px;
}

.bay::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 18px;
  width: 10px;
  background:
    linear-gradient(90deg, #1c1916, var(--iron-mid), #1c1916);
  box-shadow: 4px 0 0 var(--oxide-deep);
}

.stall-no {
  margin-bottom: 10px;
  color: var(--oxide);
  font-family: var(--industrial);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.chalk-kicker {
  margin: 0 0 10px;
  color: var(--bottle);
  font-family: var(--industrial);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.chalk-title,
.chalkboard-mini,
.notice-board,
.output-head .chalk-hand,
.limit-card {
  font-family: var(--hand);
}

.chalk-title {
  max-width: 24rem;
  padding: 10px 16px 14px;
  background:
    repeating-linear-gradient(0deg, rgba(232, 226, 208, 0.06) 0 2px, transparent 2px 10px),
    var(--chalk);
  color: var(--chalk-dust);
  box-shadow: inset 0 0 0 4px #1a2821, 0 8px 0 var(--iron);
}

.bay-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1.1fr) minmax(220px, 0.7fr);
  gap: 24px 36px;
  margin-bottom: 36px;
  align-items: end;
}

.bay-head.compact {
  grid-template-columns: auto minmax(0, 1fr);
}

.bay-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  padding: 56px max(5vw, 22px) 72px;
  min-width: 0;
  max-width: 100%;
}

.hero-lead,
.hero-facts {
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border: 0;
  font-weight: 700;
}

.btn.primary {
  background: var(--oxide);
  color: #fff;
  box-shadow: 4px 4px 0 var(--iron);
}

.btn.ghost,
.output-actions a,
.output-actions button {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--iron);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-facts div,
.registry-sheet dl div {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.hero-facts dt,
.registry-sheet dt {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-facts dd,
.registry-sheet dd {
  margin: 4px 0 0;
  font-weight: 600;
}

.hall-scene {
  position: relative;
  min-height: 360px;
  min-width: 0;
  max-width: 100%;
  padding: 18px 18px 48px;
  background:
    linear-gradient(180deg, var(--bottle-deep) 0 42px, transparent 42px),
    repeating-linear-gradient(90deg, var(--stone-deep) 0 38px, #d8c6a8 38px 76px);
  border: 10px solid var(--iron);
  box-shadow: var(--shadow);
}

.scene-canopy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 78px;
  margin-bottom: 18px;
}

.scene-canopy span {
  border: 3px solid var(--oxide);
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
  background: radial-gradient(ellipse at 50% 120%, var(--stone-warm), var(--bottle-mid));
}

.scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  min-width: 0;
}

.stall-plate {
  display: grid;
  place-content: center;
  min-width: 0;
  min-height: 88px;
  background: linear-gradient(180deg, #3a342f, var(--iron));
  color: #f0e6d4;
  text-align: center;
  font-family: var(--industrial);
  box-shadow: inset 0 0 0 3px #c9a06a;
}

.stall-plate small {
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.stall-plate b {
  font-size: clamp(1.3rem, 4vw, 2rem);
  letter-spacing: 0.08em;
}

.chalkboard-mini {
  grid-column: 1 / -1;
  padding: 14px 16px;
  background: var(--chalk);
  color: var(--chalk-dust);
  box-shadow: inset 0 0 0 3px #1b2820;
}

.chalkboard-mini p {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.chalkboard-mini ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scene-note {
  position: absolute;
  right: 16px;
  bottom: 10px;
  left: 16px;
  margin: 0;
  color: var(--iron);
  font-size: 0.82rem;
}

.scope-chips,
.format-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.scope-chips li {
  padding: 8px 12px;
  background: var(--stone-warm);
  border: 1px solid var(--stone-deep);
}

.bay-grid {
  display: grid;
  gap: 16px;
}

.bay-grid.six,
.bay-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bay-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prem-pair {
  margin-top: 16px;
}

.request-steps {
  margin-bottom: 28px;
}

.bay-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bay-grid article,
.code-card {
  padding: 18px;
  background: var(--stone-warm);
  border: 1px solid var(--stone-deep);
  box-shadow: 8px 8px 0 rgba(31, 74, 56, 0.1);
}

.code-card.primary-card {
  background: #efe3cc;
  outline: 3px solid var(--oxide);
  outline-offset: -3px;
}

.plate,
.mini-plate {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  padding: 4px 8px;
  background: var(--iron);
  color: var(--stone-warm);
  font-family: var(--industrial);
  letter-spacing: 0.08em;
}

.plate span,
.code-card small {
  color: var(--oxide-bright);
}

.code-card small {
  display: block;
  margin-bottom: 8px;
  font-family: var(--industrial);
  letter-spacing: 0.14em;
}

.code-card a,
.contact-email {
  display: inline-block;
  margin-top: 10px;
  color: var(--oxide-deep);
  font-weight: 700;
  border-bottom: 2px solid var(--oxide);
}

.contact-copy {
  max-width: 40rem;
  margin-bottom: 32px;
}

.plain-list,
.doc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li,
.doc-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.plain-list.stacked {
  background: var(--stone-warm);
  padding: 8px 18px;
  border: 1px solid var(--stone-deep);
}

.notice-board,
.limit-card {
  padding: 22px;
  background:
    repeating-linear-gradient(0deg, rgba(232, 226, 208, 0.07) 0 2px, transparent 2px 12px),
    var(--chalk);
  color: var(--chalk-dust);
  box-shadow: inset 0 0 0 6px #1a2821, 10px 10px 0 var(--oxide-deep);
}

.chalk-hand {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 32px;
  align-items: start;
}

.step-row {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-row li,
.process-line li {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: var(--stone-warm);
  border-left: 8px solid var(--bottle);
}

.step-row span,
.process-line b,
.step-num,
.doc-list span {
  color: var(--oxide);
  font-family: var(--industrial);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.legal-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 28px;
}

.doc-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-line p {
  margin: 0;
}

.builder-layout,
.contact-bay {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
}

.builder-form,
.contact-form {
  display: grid;
  gap: 16px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.choice-grid label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 10px;
  background: var(--stone-warm);
  border: 1px solid var(--stone-deep);
}

.choice-grid input {
  margin-top: 4px;
  accent-color: var(--oxide);
}

.field,
.contact-form label {
  display: grid;
  gap: 6px;
}

.field span b,
.contact-form label span {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  background: #f7efe2;
  border: 1px solid var(--stone-deep);
  border-radius: 0;
}

.builder-output {
  padding: 18px;
  background: var(--chalk);
  color: var(--chalk-dust);
  box-shadow: inset 0 0 0 6px #1a2821;
}

.output-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  font-family: var(--industrial);
  letter-spacing: 0.08em;
}

pre {
  min-height: 180px;
  margin: 0 0 14px;
  padding: 12px;
  overflow: auto;
  background: rgba(0, 0, 0, 0.18);
  color: var(--chalk-dust);
  white-space: pre-wrap;
  font-family: var(--text);
  font-size: 0.92rem;
}

.output-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.output-actions button,
.output-actions a {
  min-height: 42px;
  padding: 8px 14px;
  color: var(--chalk-dust);
  border-color: var(--chalk-dust);
}

.output-actions button:disabled,
.output-actions a.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.builder-output p {
  color: var(--chalk-dust);
}

.builder-output .contact-email {
  color: #f0c2b4;
  border-bottom-color: var(--oxide-bright);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.people-grid article {
  padding: 18px;
  background: var(--stone-warm);
  border-top: 6px solid var(--oxide);
}

.people-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--bottle);
  font-family: var(--industrial);
  letter-spacing: 0.1em;
}

.people-grid b {
  font-family: var(--industrial);
  font-size: 2rem;
  color: var(--oxide);
}

.registry-sheet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 24px;
  padding: 22px;
  background: var(--stone-warm);
  border: 1px solid var(--stone-deep);
}

.registry-sheet dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 0;
}

.registry-stamp {
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--oxide);
  border: 3px solid var(--oxide);
  transform: rotate(-6deg);
  font-family: var(--industrial);
}

.registry-stamp b {
  font-size: 1.4rem;
}

.date-note {
  max-width: 48rem;
  margin: 16px 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--stone-warm);
  border: 1px solid var(--stone-deep);
}

summary {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 16px 16px;
}

.contact-email {
  font-size: 1.4rem;
  font-family: var(--industrial);
  letter-spacing: 0.04em;
}

address {
  font-style: normal;
  color: var(--muted);
}

.consent {
  display: flex !important;
  grid-template-columns: none;
  gap: 10px;
  align-items: flex-start;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--bottle);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 28px max(5vw, 22px);
  background: var(--iron);
  color: var(--stone-warm);
  border-top: 8px solid var(--bottle);
}

.site-footer a {
  color: #f0c2b4;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 1240px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .header-actions {
    margin-left: 0;
    flex-shrink: 0;
  }

  .mobile-menu {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .hero,
  .split,
  .legal-wrap,
  .builder-layout,
  .contact-bay,
  .registry-sheet,
  .bay-head {
    grid-template-columns: 1fr;
  }

  .bay-grid.six,
  .bay-grid.four,
  .bay-grid.three,
  .bay-grid.two,
  .people-grid,
  .process-line,
  .hero-facts,
  .registry-sheet dl,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .header-actions {
    margin-left: 0;
    flex-shrink: 0;
  }

  .lang-btn {
    min-width: 38px;
    padding: 6px 8px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu {
    grid-column: 1 / -1;
  }

  .arcade {
    grid-template-columns: repeat(4, minmax(0, 1fr)) 12px;
    height: 72px;
  }

  .arcade-bay:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .bay::before {
    display: none;
  }

  .bay,
  .hero {
    padding: 56px 18px;
    max-width: 100%;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    gap: 8px 12px;
  }

  .brand {
    min-width: 0;
    width: 100%;
  }

  .brand-plate {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 8px;
  }

  .lang-btn {
    min-width: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .arcade {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 10px;
    height: 58px;
  }

  .arcade-bay:nth-child(n + 4) {
    display: none;
  }

  .choice-grid,
  .bay-grid.six,
  .bay-grid.four,
  .bay-grid.three,
  .bay-grid.two,
  .people-grid,
  .process-line,
  .hero-facts,
  .registry-sheet dl,
  .site-footer,
  .scene-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.32rem;
    line-height: 1.22;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-copy,
  .hall-scene,
  .hero-lead,
  .hero-actions,
  .hero-facts {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .scene-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu {
    flex-basis: 100%;
  }
}
