:root {
  --ink: #17120f;
  --paper: #eee5d5;
  --cream: #fff5e6;
  --amber: #d47b2a;
  --red: #b94532;
  --river: #10283a;
  --wood: #2c1c14;
  --line: rgba(23, 18, 15, 0.18);
  --light-line: rgba(255, 245, 230, 0.24);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Archivo Black", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}
body::selection { background: var(--amber); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: -52px;
  left: 14px;
  z-index: 1000;
  padding: 12px 14px;
  background: var(--cream);
}
.skip-link:focus { top: 14px; }

.site-header {
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  z-index: 10;
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 12px;
  color: var(--cream);
  border: 1px solid rgba(255, 245, 230, 0.28);
  background: rgba(23, 18, 15, 0.58);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-grid;
  grid-template-columns: 38px auto;
  gap: 11px;
  align-items: center;
  width: max-content;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--amber);
  font-family: var(--display);
  font-size: 17px;
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.brand small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
  opacity: 0.82;
}
.site-header nav {
  display: flex;
  gap: 32px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-header nav a,
.call-button,
.hero-actions a,
.plate-row,
.text-button,
.road-image span,
.visit-card a {
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, border-color 180ms ease;
}
.site-header nav a:hover { opacity: 0.68; }
.call-button {
  justify-self: end;
  min-width: 74px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.call-button:hover { transform: translateY(-2px); }

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--river);
  color: var(--cream);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 22, 0.82), rgba(10, 18, 22, 0.24) 58%, rgba(10, 18, 22, 0.38)),
    linear-gradient(0deg, rgba(10, 18, 22, 0.74), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(860px, 90vw);
  padding: 23vh 0 14vh 7.4vw;
}
.eyebrow {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 840px;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.86;
}
.hero-copy > p:last-of-type {
  width: min(470px, 86vw);
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.56;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 245, 230, 0.48);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-actions a:first-child {
  background: var(--red);
  border-color: var(--red);
}
.hero-actions a:hover { transform: translateY(-2px); }
.route-card {
  position: absolute;
  right: 5.2vw;
  bottom: 9vh;
  z-index: 1;
  width: 310px;
  padding: 25px;
  background: rgba(255, 245, 230, 0.92);
  color: var(--ink);
  border-left: 5px solid var(--amber);
}
.route-card span {
  display: block;
  margin-bottom: 15px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.route-card strong {
  font-size: 22px;
  line-height: 1.25;
}

.road-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.road-strip span {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.road-strip span:last-child { border-right: 0; }

.intro,
.plates-section,
.road-section,
.visit {
  padding-left: 7.4vw;
  padding-right: 7.4vw;
}
.intro {
  display: grid;
  grid-template-columns: 0.36fr 1fr 0.52fr;
  gap: 6vw;
  padding-top: 126px;
  padding-bottom: 124px;
}
.intro h2,
.section-head h2,
.road-copy h2,
.visit h2 {
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.98;
}
.intro p:last-child,
.road-copy p {
  margin: 10px 0 0;
  color: rgba(23, 18, 15, 0.68);
  font-size: 15px;
  line-height: 1.68;
}

.plates-section {
  padding-top: 132px;
  padding-bottom: 146px;
  background: var(--wood);
  color: var(--cream);
}
.section-head {
  max-width: 820px;
  margin-bottom: 58px;
}
.plates-grid {
  display: grid;
  grid-template-columns: 0.54fr 0.46fr;
  gap: 34px;
}
.plate-photo {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}
.plate-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plate-photo button,
.road-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 245, 230, 0.62);
  background: rgba(23, 18, 15, 0.38);
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.plate-panel {
  min-height: 640px;
  border: 1px solid var(--light-line);
}
.plate-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--light-line);
}
.plate-tabs button {
  min-height: 62px;
  border: 0;
  border-right: 1px solid var(--light-line);
  background: transparent;
  color: rgba(255, 245, 230, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.plate-tabs button:last-child { border-right: 0; }
.plate-tabs button.active {
  background: var(--red);
  color: var(--cream);
}
.plate-detail {
  min-height: 325px;
  padding: 38px;
  border-bottom: 1px solid var(--light-line);
}
.plate-detail span,
.plate-detail p:first-of-type {
  display: block;
  color: rgba(255, 245, 230, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.plate-detail h3 {
  margin: 28px 0 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
}
.plate-detail p:last-child {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 245, 230, 0.76);
  font-size: 15px;
  line-height: 1.62;
}
.plate-row {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border: 0;
  border-bottom: 1px solid var(--light-line);
  background: transparent;
  color: rgba(255, 245, 230, 0.68);
  text-align: left;
}
.plate-row:last-child { border-bottom: 0; }
.plate-row strong { font-size: 14px; font-weight: 700; }
.plate-row span,
.plate-row i {
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.plate-row i { opacity: 0; }
.plate-row:hover,
.plate-row.selected {
  background: rgba(255, 245, 230, 0.06);
  color: var(--cream);
}
.plate-row:hover i,
.plate-row.selected i { opacity: 1; }

.road-section {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 7vw;
  padding-top: 150px;
  padding-bottom: 150px;
}
.road-copy { align-self: center; }
.text-button {
  margin-top: 34px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.text-button:hover { opacity: 0.68; }
.road-image {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--wood);
  overflow: hidden;
}
.road-image img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: transform 700ms ease;
}
.road-image:hover img { transform: scale(1.025); }

.visit {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 7vw;
  padding-top: 136px;
  padding-bottom: 146px;
  background: var(--river);
  color: var(--cream);
}
.visit-card {
  align-self: end;
  padding: 32px;
  border: 1px solid rgba(255, 245, 230, 0.38);
  background: rgba(23, 18, 15, 0.20);
}
.visit-card p {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.12;
  text-transform: uppercase;
}
.visit-card a {
  display: block;
  width: max-content;
  margin-top: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}
.visit-card a:hover { opacity: 0.72; }
.visit-card small {
  display: block;
  margin-top: 32px;
  color: rgba(255, 245, 230, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding: 44px 7.4vw 84px;
  background: var(--ink);
  color: var(--cream);
}
footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}
footer div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 13px;
}
.footer-brand .brand-mark {
  width: 32px;
  height: 32px;
}

.mobile-dock { display: none; }
dialog { border: 0; padding: 0; }
dialog::backdrop {
  background: rgba(10, 18, 22, 0.72);
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 30px;
  line-height: 1;
}
.call-dialog {
  width: min(540px, 92vw);
  padding: 48px;
  background: var(--cream);
  color: var(--ink);
}
.call-dialog h2 {
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 0.98;
}
.call-dialog p:not(.eyebrow) {
  max-width: 360px;
  margin: 24px 0;
  line-height: 1.6;
}
.call-dialog a {
  display: block;
  margin: 30px 0 12px;
  font-family: var(--display);
  font-size: 24px;
}
.call-dialog small { color: rgba(23, 18, 15, 0.64); }
.photo-dialog {
  width: min(920px, 94vw);
  background: var(--ink);
  color: var(--cream);
}
.photo-dialog img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}
.photo-dialog p {
  margin: 0;
  padding: 14px 18px 18px;
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms ease, transform 800ms ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 780px) {
  .site-header {
    left: 14px;
    right: 14px;
    top: 12px;
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }
  .brand { grid-template-columns: 32px auto; gap: 9px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 10px; }
  .site-header nav { display: none; }
  .call-button { min-width: 62px; min-height: 42px; }
  .hero { min-height: 100svh; }
  .hero > img { object-position: 62% center; }
  .hero-copy {
    width: auto;
    padding: 22vh 20px 188px;
  }
  .hero h1 {
    max-width: 350px;
    font-size: clamp(48px, 14vw, 66px);
    line-height: 0.88;
  }
  .hero-copy > p:last-of-type { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .route-card {
    left: 20px;
    right: 20px;
    bottom: 86px;
    width: auto;
    padding: 18px;
  }
  .road-strip { grid-template-columns: 1fr 1fr; }
  .road-strip span {
    min-height: 62px;
    font-size: 10px;
    border-bottom: 1px solid var(--line);
  }
  .intro,
  .plates-grid,
  .road-section,
  .visit,
  footer {
    grid-template-columns: 1fr;
  }
  .intro,
  .plates-section,
  .road-section,
  .visit {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 92px;
    padding-bottom: 92px;
  }
  .intro { gap: 24px; }
  .intro h2,
  .section-head h2,
  .road-copy h2,
  .visit h2 {
    font-size: 42px;
  }
  .plate-photo {
    min-height: 430px;
  }
  .plate-panel {
    min-height: auto;
    margin-top: 18px;
  }
  .plate-tabs button {
    min-height: 56px;
    font-size: 10px;
  }
  .plate-detail {
    min-height: 250px;
    padding: 28px 22px;
  }
  .plate-detail h3 { font-size: 35px; }
  .plate-row { padding: 17px 14px; }
  .road-section { gap: 34px; }
  .road-image img { aspect-ratio: 0.92; }
  .visit-card { padding: 24px; }
  footer {
    gap: 28px;
    padding: 40px 20px 102px;
  }
  footer div { align-items: flex-start; }
  .mobile-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: 68px;
    background: rgba(23, 18, 15, 0.96);
    color: var(--cream);
    border-top: 1px solid var(--light-line);
    backdrop-filter: blur(12px);
  }
  .mobile-dock a,
  .mobile-dock button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-right: 1px solid var(--light-line);
    background: transparent;
    color: inherit;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .mobile-dock button {
    border-right: 0;
    background: var(--red);
  }
  .call-dialog { padding: 44px 28px 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
