:root {
  --asphalt: #10141a;
  --asphalt-2: #171d25;
  --kerb: #2c323a;
  --cream: #fff2d5;
  --cream-2: #f7dfac;
  --red: #d63b3b;
  --blue: #77c4d3;
  --chrome: #c8d0d8;
  --amber: #f4b24e;
  --ink: #111318;
  --muted: #aeb8c4;
  --line: rgba(255,255,255,.18);
  --shadow: 0 30px 90px rgba(0,0,0,.38);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--asphalt);
  color: var(--cream);
  overflow-x: hidden;
}
a { color: inherit; }
a, button, input, textarea { font: inherit; }
button, .button, .lane-nav a, .social-entry a, .social-card a, .kerb-footer a { min-height: 44px; }
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 10;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }
.kicker {
  margin: 0 0 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: 12px;
}
.road-opening {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  grid-template-rows: auto 1fr auto;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(18px, 4vw, 56px);
  overflow: hidden;
  isolation: isolate;
}
.road-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 20%, rgba(119,196,211,.22), transparent 28%),
    linear-gradient(122deg, #07090c 0%, var(--asphalt) 42%, #1c252f 67%, #06080b 100%);
}
.road-scene::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -15%;
  top: 47%;
  height: clamp(190px, 27vw, 360px);
  transform: rotate(-7deg);
  background: linear-gradient(90deg, #1b222a, #303842 47%, #151a20);
  border-block: 10px solid #0b0e12;
  box-shadow: var(--shadow);
}
.road-scene::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 57%;
  height: 10px;
  transform: rotate(-7deg);
  background: repeating-linear-gradient(90deg, var(--amber) 0 70px, transparent 70px 124px);
  opacity: .95;
}
.lane { position: absolute; border-radius: 999px; background: rgba(255,255,255,.11); }
.lane-a { width: 34vw; height: 1px; top: 25%; left: 52%; transform: rotate(-21deg); }
.lane-b { width: 28vw; height: 1px; bottom: 15%; left: 2%; transform: rotate(17deg); }
.pole { position: absolute; width: 10px; height: 170px; border-radius: 999px; opacity: .9; }
.pole-red { right: 12%; top: 12%; background: var(--red); transform: rotate(24deg); }
.pole-blue { right: 14%; top: 10%; background: var(--blue); transform: rotate(24deg); }
.street-plate {
  align-self: start;
  max-width: 880px;
  padding-top: clamp(40px, 8vw, 96px);
}
h1 {
  margin: 0;
  font-size: clamp(54px, 14vw, 178px);
  line-height: .78;
  max-width: 900px;
  text-transform: uppercase;
  letter-spacing: -.08em;
  text-wrap: balance;
}
.intro {
  max-width: 620px;
  margin: 26px 0 0;
  color: #d9e3ea;
  font-size: clamp(18px, 2.4vw, 25px);
}
.lane-nav {
  grid-column: 1 / 3;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1040px;
}
.lane-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  backdrop-filter: blur(10px);
}
.lane-nav span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-weight: 950;
}
.address-pin {
  align-self: center;
  justify-self: end;
  width: min(100%, 330px);
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 10%;
  transform: rotate(-8deg);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 38px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--cream), var(--amber));
  border: 10px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.address-pin > * { transform: rotate(8deg); }
.pin-number {
  font-size: clamp(68px, 9vw, 118px);
  font-weight: 1000;
  line-height: .75;
  letter-spacing: -.08em;
}
.address-pin strong { display: block; font-size: 18px; }
.social-entry {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-entry a,
.button,
.social-card a,
.kerb-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.social-entry a {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.35);
}
.social-entry a:hover, .lane-nav a:hover, .button:hover, .social-card a:hover { transform: translateY(-2px); }
.route-section, .hours-strip, .map-window, .message-board {
  padding: clamp(64px, 10vw, 132px) clamp(18px, 5vw, 72px);
}
.section-copy, .hours-heading, .message-head {
  max-width: 820px;
  margin-bottom: clamp(26px, 5vw, 54px);
}
h2 {
  margin: 0;
  font-size: clamp(38px, 7vw, 92px);
  line-height: .9;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.section-copy p:not(.kicker), .hours-board p, .find-copy p, .message-head + p {
  color: #d7dfe6;
  font-size: clamp(17px, 2vw, 20px);
}
.cut-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 390px) 1fr;
  gap: clamp(20px, 4vw, 58px);
  align-items: stretch;
  min-height: 540px;
}
.cut-map::before {
  content: "";
  position: absolute;
  inset: 12% 0 15%;
  z-index: -1;
  transform: skewY(-4deg);
  background: linear-gradient(90deg, #222a33, #11171e 70%);
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), var(--shadow);
}
.mirror-note {
  align-self: center;
  position: sticky;
  top: 24px;
  min-height: 320px;
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(119,196,211,.22), rgba(255,255,255,.08)),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.22), transparent 35%);
  border: 1px solid rgba(255,255,255,.28);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.mirror-note span { color: var(--blue); text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: 12px; }
.mirror-note strong { display: block; margin-top: 26px; font-size: clamp(36px, 4.8vw, 64px); line-height: .92; letter-spacing: -.05em; }
.mirror-note p { color: #edf7fb; font-size: 19px; }
.marker-list {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(16px, 3vw, 34px) 0;
}
.route-marker {
  width: min(100%, 760px);
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.065);
  color: var(--cream);
  text-align: left;
  padding: 18px 22px 18px 76px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.route-marker:nth-child(even) { justify-self: end; }
.route-marker strong { display: block; font-size: clamp(26px, 3.5vw, 42px); line-height: 1; letter-spacing: -.04em; }
.route-marker small { display: block; color: #cdd8e1; font-size: 16px; margin-top: 8px; }
.marker-dot {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border-radius: 50%;
  background: var(--kerb);
  border: 7px solid var(--chrome);
}
.route-marker.is-active {
  border-color: rgba(244,178,78,.92);
  background: linear-gradient(135deg, rgba(244,178,78,.24), rgba(119,196,211,.12));
}
.route-marker.is-active .marker-dot { background: var(--red); border-color: var(--amber); }
.hours-strip {
  display: grid;
  grid-template-columns: minmax(250px, 500px) 1fr;
  gap: clamp(22px, 5vw, 72px);
  background: linear-gradient(180deg, #151b22, #0b0e12);
  border-block: 1px solid var(--line);
}
.hours-board {
  border-radius: 36px;
  background: var(--cream);
  color: var(--ink);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.hours-board p { color: #26303a; margin-top: 0; }
dl { display: grid; gap: 14px; margin: 24px 0 0; }
dl div { border-top: 1px solid rgba(17,19,24,.18); padding-top: 14px; }
dt { font-weight: 950; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: #6c3d12; }
dd { margin: 4px 0 0; color: #141a20; font-size: 18px; }
.map-window { background: radial-gradient(circle at 70% 20%, rgba(214,59,59,.18), transparent 32%), #10141a; }
.map-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(260px, .95fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
}
.mini-map {
  min-height: 500px;
  border-radius: 46px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(35deg, transparent 44%, rgba(244,178,78,.95) 44% 46%, transparent 46%),
    linear-gradient(128deg, #202832 0 48%, #303a45 48% 56%, #141a20 56% 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.road-name {
  position: absolute;
  left: 10%;
  top: 18%;
  transform: rotate(-28deg);
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .12em;
}
.map-pin {
  position: absolute;
  left: 48%;
  top: 42%;
  width: 132px;
  height: 132px;
  border-radius: 50% 50% 50% 10%;
  transform: rotate(-20deg);
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: 44px;
  font-weight: 1000;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.map-pin::after { content: ""; position: absolute; inset: 22px; border: 3px solid rgba(255,255,255,.4); border-radius: inherit; }
.cross-road {
  position: absolute;
  width: 58%;
  height: 22px;
  background: #0d1116;
  right: -8%;
  bottom: 18%;
  transform: rotate(18deg);
  border-radius: 999px;
}
.find-copy { max-width: 520px; }
.find-copy p { margin-bottom: 22px; }
.button.secondary { border: 1px solid var(--line); color: var(--cream); background: rgba(255,255,255,.08); }
.button.primary { border: 0; color: var(--ink); background: var(--amber); cursor: pointer; }
.message-board { background: linear-gradient(180deg, #0b0e12, #171d25); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr)) minmax(320px, 1.2fr);
  gap: 16px;
  align-items: stretch;
}
.social-card {
  min-height: 260px;
  border-radius: 34px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.social-card span { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; color: #eff8fb; }
.social-card strong { font-size: clamp(26px, 3.2vw, 38px); line-height: 1; margin: 10px 0 18px; letter-spacing: -.04em; }
.social-card a { align-self: flex-start; color: var(--ink); background: var(--cream); }
.instagram { background: linear-gradient(145deg, #6427aa, #d63b3b 54%, #f4b24e); }
.facebook { background: linear-gradient(145deg, #143d7a, #77c4d3); }
.enquiry-form {
  grid-row: span 2;
  border-radius: 34px;
  background: var(--cream);
  color: var(--ink);
  padding: clamp(20px, 3vw, 34px);
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow);
}
label { font-weight: 950; color: #262a2f; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(17,19,24,.25);
  border-radius: 18px;
  background: #fffaf0;
  color: var(--ink);
  padding: 12px 14px;
  min-width: 0;
}
textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; margin-top: 8px; }
.form-actions .secondary { color: var(--ink); border-color: rgba(17,19,24,.25); background: transparent; }
.form-status { min-height: 24px; margin: 0; color: #1f5c24; font-weight: 800; }
.kerb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #07090c;
  border-top: 6px solid var(--amber);
  color: #d7dfe6;
}
.kerb-footer p { margin: 0; }
.kerb-footer div { display: flex; gap: 10px; flex-wrap: wrap; }
.kerb-footer a { border: 1px solid var(--line); background: rgba(255,255,255,.06); }
@media (max-width: 1024px) {
  .road-opening { grid-template-columns: 1fr; min-height: auto; }
  .address-pin { justify-self: start; width: min(70vw, 300px); }
  .lane-nav { grid-column: 1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-entry { position: static; grid-column: 1; }
  .cut-map, .hours-strip, .map-card, .contact-grid { grid-template-columns: 1fr; }
  .mirror-note { position: relative; top: auto; min-height: auto; }
  .social-card { min-height: 220px; }
  .enquiry-form { grid-row: auto; }
}
@media (max-width: 620px) {
  h1 { font-size: clamp(50px, 21vw, 88px); }
  h2 { font-size: clamp(36px, 14vw, 58px); }
  .road-opening { padding: 18px; }
  .street-plate { padding-top: 42px; }
  .lane-nav { grid-template-columns: 1fr; }
  .lane-nav a { border-radius: 22px; }
  .address-pin { width: min(88vw, 270px); padding: 28px; }
  .route-section, .hours-strip, .map-window, .message-board { padding: 58px 18px; }
  .cut-map::before { inset: 5% -8px 8%; border-radius: 26px; }
  .route-marker, .route-marker:nth-child(even) { justify-self: stretch; width: 100%; padding-left: 64px; }
  .marker-dot { left: 16px; }
  .mini-map { min-height: 360px; border-radius: 32px; }
  .map-pin { width: 104px; height: 104px; font-size: 36px; }
  .form-actions { justify-content: stretch; }
  .form-actions .button, .form-actions button { flex: 1 1 180px; }
}
@media (max-width: 390px) {
  .intro, .section-copy p:not(.kicker), .hours-board p, .find-copy p { font-size: 16px; }
  .route-marker strong { font-size: 25px; }
  .route-marker small { font-size: 15px; }
  .social-card { min-height: 190px; }
  .kerb-footer { align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .road-scene::after { animation: laneSweep 1s linear both; animation-timeline: view(); }
    @keyframes laneSweep { from { transform: rotate(-7deg) translateX(-6%); } to { transform: rotate(-7deg) translateX(6%); } }
  }
}
