:root {
  --ink: #090b12;
  --ink-soft: #171b27;
  --paper: #f4f5fb;
  --paper-blue: #e8ebff;
  --cobalt: #4058ff;
  --cobalt-dark: #2838bd;
  --acid: #d9ff38;
  --line: rgba(9, 11, 18, 0.18);
  --white: #ffffff;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

a { color: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

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

::selection { background: var(--acid); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 245, 251, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner,
.hero-frame,
.hero-footer,
.section,
.site-footer,
.closing-inner {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 39px;
  height: 39px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--cobalt);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.brand-mark span { display: grid; place-items: center; }
.brand-mark span + span { background: var(--ink); color: var(--acid); }

.brand-copy {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  line-height: 1;
}

.brand-copy small {
  display: block;
  margin-top: 0.35rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-phone):hover { color: var(--cobalt-dark); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.85rem;
  background: var(--ink);
  color: var(--white);
}

.nav-phone:hover { background: var(--cobalt); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  padding: 4.75rem 0 0;
  background: var(--paper);
}

.hero-frame {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.9fr) minmax(370px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.hero-copy { padding-block: 3rem; }

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.6rem;
  color: var(--cobalt-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-rule {
  display: inline-block;
  width: 34px;
  height: 3px;
  background: var(--acid);
}

h1,
h2,
p { margin-top: 0; }

h1,
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.07em;
}

h1 {
  max-width: 700px;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 8.7vw, 8.8rem);
  line-height: 0.86;
}

h1 span { color: var(--cobalt); }
h1 em,
h2 em { color: var(--cobalt); font-style: italic; }

.hero-lede {
  max-width: 470px;
  margin-bottom: 2rem;
  color: #454b5b;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.hero-actions,
.arrival-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover { transform: translateY(-3px); }

.button-acid { background: var(--acid); color: var(--ink); }
.button-acid:hover { background: #c6ee22; }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }

.hero-coordinates {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3.5rem 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.hero-coordinates div { min-width: 150px; }
.hero-coordinates dt { margin-bottom: 0.25rem; color: #72798a; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-coordinates dd { margin: 0; font-size: 0.85rem; font-weight: 700; }

.hero-object {
  position: relative;
  min-height: 590px;
  background: var(--cobalt);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.hero-object::before,
.hero-object::after {
  position: absolute;
  z-index: 0;
  content: '';
  pointer-events: none;
}

.hero-object::before { inset: 1rem; border: 1px solid rgba(255, 255, 255, 0.38); }
.hero-object::after { right: -1.1rem; bottom: -1.1rem; width: 55%; height: 45%; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }

.object-index {
  position: absolute;
  z-index: 2;
  top: 1.15rem;
  right: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.object-index i { display: block; width: 24px; height: 1px; background: var(--acid); }

.object-photo {
  position: relative;
  z-index: 1;
  height: 520px;
  margin: 2.5rem 1.6rem 0 2rem;
  overflow: hidden;
  background: var(--ink);
}

.object-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(9, 11, 18, 0.82) 100%);
  content: '';
}

.object-photo img { width: 100%; height: 100%; object-fit: cover; }

.object-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1.2rem;
  left: 1.3rem;
  color: var(--white);
}

.object-photo figcaption span,
.tile-caption small,
.fact-label,
.image-note,
.footer-counter {
  display: block;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.object-photo figcaption strong { display: block; margin-top: 0.4rem; font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 400; line-height: 0.95; }

.object-label {
  position: absolute;
  z-index: 3;
  bottom: 0.5rem;
  left: -1.7rem;
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0.9rem;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Georgia, serif;
}

.object-label small { margin-top: 0.35rem; font-family: Arial, sans-serif; font-size: 0.5rem; font-weight: 900; letter-spacing: 0.12em; }

.object-sticker {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -2.4rem;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  transform: rotate(9deg);
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  text-align: center;
}

.object-sticker strong { display: block; font-family: Georgia, serif; font-size: 1.55rem; line-height: 0.8; }
.object-sticker span { font-size: 0.5rem; font-weight: 900; letter-spacing: 0.1em; line-height: 1.1; }

.hero-footer {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  color: #6b7180;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-counter { color: var(--ink); }
.footer-counter i { color: var(--cobalt); font-style: normal; }
.footer-accent { color: var(--cobalt-dark); }

.section { padding-block: clamp(5.5rem, 10vw, 9rem); }

.section-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.section-kicker { margin: 0; color: var(--cobalt-dark); }
.section-kicker span { color: var(--ink); }

h2 { margin-bottom: 1.2rem; font-size: clamp(3rem, 6vw, 6.4rem); line-height: 0.88; }
.section-heading p:not(.section-kicker) { max-width: 540px; margin-bottom: 0; color: #565d6d; font-size: 1.05rem; }

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  background: var(--paper-blue);
}

.gallery-controls > span:first-child { margin-right: 0.6rem; padding-left: 0.5rem; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.filter-chip { border: 1px solid transparent; background: transparent; color: var(--ink); cursor: pointer; padding: 0.5rem 0.75rem; font-size: 0.72rem; font-weight: 900; }
.filter-chip:hover, .filter-chip.is-selected { border-color: var(--ink); background: var(--white); }
.filter-status { margin-left: auto; color: #686f80; font-size: 0.68rem; }

.room-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 260px 180px;
  gap: 1rem;
}

.room-tile {
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.room-tile-wide { grid-row: 1 / 3; }
.room-tile-tall { grid-column: 2; grid-row: 1 / 3; }
.room-tile-small { grid-column: 3; grid-row: 1 / 3; }
.room-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease), filter 350ms ease; }
.room-tile::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(9,11,18,.88)); content: ''; }
.room-tile:hover img { transform: scale(1.04); filter: saturate(1.15); }

.tile-caption { position: absolute; z-index: 1; right: 1.1rem; bottom: 1rem; left: 1.1rem; }
.tile-caption small { color: var(--acid); }
.tile-caption strong { display: block; margin-top: 0.4rem; font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.6rem); font-weight: 400; line-height: 0.92; }
.tile-caption i { position: absolute; right: 0; bottom: 0; color: var(--acid); font-size: 1.25rem; font-style: normal; }
.image-note { margin: 1.2rem 0 0; color: #636a79; }
.image-note span { color: var(--cobalt); }

.ficha-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--cobalt);
  color: var(--white);
}

.ficha-section h2 em { color: var(--acid); }
.ficha-intro > p:last-child { max-width: 370px; margin-bottom: 0; color: rgba(255,255,255,.75); }
.ficha-section .section-kicker { color: var(--acid); }
.ficha-section .section-kicker span { color: var(--white); }

.facts-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.38); border-left: 1px solid rgba(255,255,255,.38); }
.fact { min-height: 180px; padding: 1.4rem; border-right: 1px solid rgba(255,255,255,.38); border-bottom: 1px solid rgba(255,255,255,.38); }
.fact-label { color: var(--acid); }
.fact strong, .fact-link { display: block; margin-top: 2rem; color: var(--white); font-family: Georgia, serif; font-size: clamp(1.25rem, 2.1vw, 2rem); font-weight: 400; line-height: 1; }
.fact-rating strong { font-size: clamp(2.7rem, 5vw, 4.5rem); }
.fact strong small { font-family: Arial, sans-serif; font-size: 0.8rem; letter-spacing: 0; }
.fact span:last-child { display: block; max-width: 240px; margin-top: 0.65rem; color: rgba(255,255,255,.7); font-size: 0.8rem; }
.fact-link { text-decoration: none; }
.fact-link:hover { color: var(--acid); }
.fact-pending { background: rgba(9,11,18,.28); }
.fact-pending strong { font-family: Arial, Helvetica, sans-serif; font-size: 1.1rem; font-weight: 800; line-height: 1.1; }

.arrive-section { padding-top: 0; background: var(--paper); }
.arrival-card { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 470px; background: var(--ink); color: var(--white); }
.arrival-copy { padding: clamp(2rem, 5vw, 4.5rem); }
.section-kicker-light { color: var(--acid); }
.section-kicker-light span { color: var(--white); }
.arrival-copy h2 em { color: var(--cobalt); }
.arrival-copy address { margin: 2.4rem 0 1.5rem; font-style: normal; font-size: 1.15rem; font-weight: 800; }
.arrival-copy address span { color: rgba(255,255,255,.6); font-size: 0.9rem; font-weight: 400; }
.arrival-copy > p:not(.section-kicker) { max-width: 380px; color: rgba(255,255,255,.65); }
.button-light { background: var(--acid); color: var(--ink); }
.button-light:hover { background: var(--white); }
.arrival-phone { padding: 0.75rem 0; color: var(--white); font-size: 0.8rem; font-weight: 900; text-decoration: none; }
.arrival-phone:hover { color: var(--acid); }

.coordinate-art { position: relative; min-height: 470px; overflow: hidden; background: var(--cobalt); }
.coordinate-art::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 58px 58px; content: ''; opacity: .5; }
.coordinate-art::after { position: absolute; top: 16%; left: -10%; width: 130%; height: 1px; transform: rotate(-25deg); background: var(--acid); box-shadow: 0 110px 0 rgba(9,11,18,.45), 0 220px 0 rgba(9,11,18,.45); content: ''; }
.coordinate-label { position: absolute; z-index: 1; color: rgba(255,255,255,.78); font-size: 0.65rem; font-weight: 900; letter-spacing: .12em; }
.coordinate-label-top { top: 1.5rem; right: 1.6rem; }.coordinate-label-bottom { bottom: 4.5rem; left: 1.6rem; }
.coordinate-line { position: absolute; z-index: 1; display: block; height: 1px; background: rgba(255,255,255,.55); transform-origin: left; }
.coordinate-line-one { top: 45%; left: 12%; width: 76%; transform: rotate(21deg); }.coordinate-line-two { top: 26%; left: 38%; width: 75%; transform: rotate(71deg); }.coordinate-line-three { top: 72%; left: 3%; width: 85%; transform: rotate(-52deg); }
.coordinate-pin { position: absolute; z-index: 2; top: 50%; left: 51%; display: grid; width: 92px; height: 92px; place-items: center; transform: translate(-50%, -50%) rotate(-8deg); background: var(--acid); color: var(--ink); box-shadow: 8px 8px 0 var(--ink); font-family: Georgia, serif; font-size: 1.8rem; }
.coordinate-pin::after { position: absolute; bottom: -12px; left: 50%; width: 22px; height: 22px; transform: translateX(-50%) rotate(45deg); background: var(--acid); content: ''; }
.coordinate-pin b { position: relative; z-index: 1; font-weight: 400; }
.coordinate-caption { position: absolute; right: 1.6rem; bottom: 1.5rem; color: var(--white); font-size: 0.65rem; font-weight: 900; letter-spacing: .12em; }

.closing { padding: clamp(6rem, 12vw, 12rem) 0; background: var(--paper-blue); }
.closing-inner { position: relative; }
.closing-inner::after { position: absolute; top: 0; right: 5%; width: 160px; height: 160px; border: 1px solid var(--cobalt); border-radius: 50%; content: 'LB'; display: grid; place-items: center; color: var(--cobalt); font-family: Georgia, serif; font-size: 3rem; transform: rotate(15deg); }
.closing h2 { max-width: 590px; margin-bottom: 2.5rem; font-size: clamp(4rem, 9vw, 9.5rem); }
.closing h2 em { color: var(--cobalt); }
.closing-phone { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .8rem; border-bottom: 2px solid var(--ink); padding-bottom: .6rem; font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.closing-phone strong { color: var(--cobalt-dark); font-size: 1.2rem; letter-spacing: 0; }
.closing-phone:hover { color: var(--cobalt-dark); }

.site-footer { display: grid; min-height: 100px; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 1.5rem; font-size: 0.68rem; font-weight: 800; }
.site-footer .brand-copy { font-size: 1.1rem; }.site-footer .brand-mark { width: 30px; height: 30px; font-size: .75rem; }.site-footer > span { color: #6b7180; }.footer-note { justify-self: end; color: #6b7180; font-weight: 400; }.back-top { text-decoration: none; }.back-top:hover { color: var(--cobalt-dark); }

.mobile-actions { display: none; }

.lightbox { width: min(920px, calc(100% - 2rem)); max-height: calc(100% - 2rem); border: 0; padding: 0; background: var(--ink); color: var(--white); }
.lightbox::backdrop { background: rgba(9, 11, 18, .9); }
.lightbox-bar { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1rem; font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.lightbox-bar button { border: 1px solid rgba(255,255,255,.5); background: transparent; color: var(--white); cursor: pointer; padding: .5rem .7rem; font-size: .68rem; font-weight: 900; text-transform: uppercase; }.lightbox-bar button:hover { border-color: var(--acid); color: var(--acid); }.lightbox img { max-height: calc(100vh - 100px); width: 100%; object-fit: contain; }

[data-reveal] { transition: opacity 650ms var(--ease), transform 650ms var(--ease); }
.js-ready [data-reveal] { opacity: 0; transform: translateY(24px); }.js-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero-frame { grid-template-columns: 1fr; gap: 2rem; }.hero-copy { padding-bottom: 0; }.hero-object { min-height: 540px; }.object-photo { height: 460px; }
  .section-heading, .ficha-section, .arrival-card { grid-template-columns: 1fr; }.ficha-section { gap: 2.5rem; }.coordinate-art { min-height: 360px; }.room-grid { grid-template-columns: 1.1fr .9fr; grid-template-rows: 260px 220px; }.room-tile-wide { grid-row: 1 / 3; }.room-tile-tall { grid-column: 2; grid-row: 1; }.room-tile-small { grid-column: 2; grid-row: 2; }
  .site-footer { grid-template-columns: auto 1fr auto; }.footer-note { grid-column: 1 / -1; grid-row: 2; justify-self: start; }
}

@media (max-width: 700px) {
  html { scroll-behavior: auto; }
  .header-inner, .hero-frame, .hero-footer, .section, .site-footer, .closing-inner { width: min(100% - 2rem, var(--max)); }
  .header-inner { min-height: 68px; }.menu-toggle { display: inline-flex; width: 45px; height: 45px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; }.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; transition: transform 180ms ease; }.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: absolute; top: 68px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--ink); background: var(--paper); box-shadow: 0 16px 20px rgba(9,11,18,.1); }.menu-open .site-nav { display: flex; }.site-nav a { padding: 1rem; border-bottom: 1px solid var(--line); }.site-nav .nav-phone { margin: .75rem 1rem 1rem; justify-content: center; border-bottom: 0; }
  .hero { padding-top: 2.5rem; }.hero-frame { min-height: 0; }.hero-copy { padding-top: 0; }.eyebrow { margin-bottom: 1.2rem; } h1 { font-size: clamp(3.8rem, 18vw, 6.5rem); }.hero-lede { font-size: 1rem; }.hero-coordinates { margin-top: 2.5rem; gap: 1rem; }.hero-coordinates div { min-width: 135px; }.hero-object { min-height: 430px; padding: 1rem; }.object-photo { height: 360px; margin: 2.7rem 1rem 0; }.object-label { left: -.4rem; }.object-sticker { right: -.9rem; transform: scale(.82) rotate(9deg); }.hero-footer { align-items: flex-start; flex-direction: column; gap: .45rem; padding-block: 1rem; }.footer-accent { align-self: flex-end; }
  .section { padding-block: 5rem; }.section-heading { gap: 1.25rem; margin-bottom: 2.4rem; }.section-kicker { font-size: .64rem; } h2 { font-size: clamp(3.3rem, 16vw, 5.3rem); }.gallery-controls { align-items: flex-start; }.gallery-controls > span:first-child { flex-basis: 100%; margin-bottom: .2rem; }.filter-status { flex-basis: 100%; margin: .25rem 0 0; }.room-grid { display: flex; flex-direction: column; gap: .75rem; }.room-tile { height: 260px; }.room-tile-wide { height: 330px; }.facts-board { grid-template-columns: 1fr; }.fact { min-height: 145px; }.fact strong, .fact-link { margin-top: 1.4rem; }.arrival-card { min-height: 0; }.arrival-copy { padding: 2rem 1.25rem 2.5rem; }.coordinate-art { min-height: 330px; }.coordinate-caption { right: 1rem; left: 1rem; font-size: .58rem; }.closing { padding-block: 6rem; }.closing-inner::after { top: 1rem; right: 0; width: 92px; height: 92px; font-size: 1.8rem; }.closing h2 { font-size: clamp(4.1rem, 20vw, 7rem); }.closing-phone { gap: .45rem; font-size: .65rem; }.closing-phone strong { font-size: 1rem; }
  .site-footer { display: flex; min-height: 0; flex-wrap: wrap; align-items: flex-start; gap: 1rem; padding-block: 2.2rem 6rem; }.site-footer > span { width: 100%; }.footer-note { width: 100%; }.back-top { margin-left: auto; }.mobile-actions { position: fixed; z-index: 35; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); background: var(--acid); }.mobile-actions a { padding: .95rem .6rem; text-align: center; font-size: .7rem; font-weight: 900; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }.mobile-actions a + a { border-left: 1px solid var(--ink); background: var(--ink); color: var(--white); }
}

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

/* v4 mobile containment pass */
@media (max-width: 700px) {
  .hero-copy, .hero-frame, .hero-lede, .hero-actions, .hero-coordinates, .hero-object, .closing-inner {
    min-width: 0;
    max-width: 100%;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 16vw, 5.4rem);
    line-height: .86;
    overflow-wrap: anywhere;
  }
  .hero-actions, .arrival-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .button, .arrival-actions .button {
    width: 100%;
    max-width: 100%;
  }
  .hero-coordinates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
  }
  .hero-coordinates div {
    min-width: 0;
  }
  .closing h2 {
    max-width: 100%;
    font-size: clamp(3.8rem, 18vw, 6.5rem);
    overflow-wrap: anywhere;
  }
  .closing-phone {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }
  .closing-phone strong {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  h1 {
    width: 100%;
    font-size: clamp(2.75rem, 13vw, 4.8rem);
    letter-spacing: -.055em;
    line-height: .9;
  }
  .hero-lede {
    width: 100%;
    max-width: 100%;
    font-size: .9rem;
    line-height: 1.5;
  }
}
