:root {
  --ink: #070707;
  --charcoal: #11100e;
  --charcoal-2: #191511;
  --gold: #e6b63f;
  --gold-dark: #bb8422;
  --gold-light: #ffd76a;
  --paper: #fbfaf7;
  --white: #ffffff;
  --muted: #d8d0c2;
  --line: rgba(230, 182, 63, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  background: var(--paper);
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

a,
button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 3rem;
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.78), rgba(3, 3, 3, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 6, 6, 0.92);
  border-bottom: 1px solid rgba(230, 182, 63, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  align-self: start;
  width: 7.45rem;
  min-height: 3.2rem;
  min-width: 0;
  font-weight: 900;
  font-size: 1rem;
}

.brand img {
  position: absolute;
  top: -0.2rem;
  left: 0;
  z-index: 2;
  width: 7.1rem;
  height: 7.1rem;
  border-radius: 50%;
  border: 1px solid rgba(230, 182, 63, 0.62);
  background: rgba(6, 6, 6, 0.72);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 215, 106, 0.08);
  transform: translateY(0.5rem);
  transition: width 180ms ease, height 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 215, 106, 0.2);
  transform: translateY(0.5rem) rotate(-1.5deg);
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.96rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.2rem;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  will-change: transform;
}

.nav-cta {
  padding: 0 1.15rem;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.nav-cta svg,
.button svg {
  flex: 0 0 auto;
}

.screen {
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
}

#taps,
#visit {
  scroll-margin-top: 4.2rem;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/hero-bar.jpg");
  background-position: center center;
  background-size: cover;
  filter: brightness(1.32) saturate(1.08) contrast(1.02);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.44) 36%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.3) 100%),
    radial-gradient(circle at 72% 64%, rgba(230, 182, 63, 0.16), transparent 28rem);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
  height: 11vh;
  background: var(--paper);
  clip-path: polygon(0 62%, 46% 86%, 100% 42%, 100% 100%, 0 100%);
}

.hero-content {
  width: min(1180px, calc(100% - 6rem));
  margin: 0 auto;
  padding-top: 5rem;
}

.hero-copy {
  width: min(720px, 100%);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.54);
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.75rem;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 215, 106, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-status span:not(.status-dot) {
  color: var(--gold-light);
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #49e27b;
  box-shadow: 0 0 0 4px rgba(73, 226, 123, 0.14);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-family: var(--display);
  font-size: 6rem;
  line-height: 0.94;
  font-weight: 900;
  color: var(--gold-light);
  text-wrap: balance;
}

h2 {
  font-family: var(--display);
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 900;
  text-wrap: balance;
}

.hero-lede {
  margin-top: 1.15rem;
  width: min(650px, 100%);
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  line-height: 1.22;
  font-weight: 800;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.3rem;
}

.visit-actions .button {
  min-width: 11.25rem;
}

.visit-actions .button-icon {
  width: 3.25rem;
  min-width: 3.25rem;
  padding-inline: 0;
}

.button {
  min-width: 13rem;
  padding: 1rem 1.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button svg,
.nav-cta svg,
.taplist-link svg,
.map-directions svg,
.contact-panel svg {
  transition: transform 180ms var(--ease);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.button:focus-visible svg,
.nav-cta:hover svg,
.nav-cta:focus-visible svg,
.map-directions:hover svg,
.map-directions:focus-visible svg {
  transform: translateX(2px);
}

.button:active,
.nav-cta:active,
.map-directions:active {
  transform: translateY(0) scale(0.98);
}

.scroll-cue:active {
  transform: translateX(-50%) scale(0.98);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-dark:hover,
.button-dark:focus-visible {
  box-shadow: 0 18px 50px rgba(187, 132, 34, 0.34);
}

.button-ghost {
  color: var(--gold-light);
  border-color: rgba(255, 215, 106, 0.9);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.button-dark {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button-outline {
  color: var(--ink);
  border-color: rgba(7, 7, 7, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(187, 132, 34, 0.8);
  background: var(--white);
}

.button-taps,
.button-directions,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.button-taps::after,
.button-directions::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  transform: skewX(-18deg);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

@media (prefers-reduced-motion: no-preference) {
  .button-taps::after,
  .button-directions::after,
  .nav-cta::after {
    animation: cta-sheen 4.6s var(--ease) infinite;
  }
}

@keyframes cta-sheen {
  0%,
  62% {
    translate: 0 0;
    opacity: 0;
  }

  72% {
    opacity: 1;
  }

  100% {
    translate: 380% 0;
    opacity: 0;
  }
}

.button-icon {
  min-width: 3.25rem;
  padding-inline: 1rem;
}

.native-share[hidden] {
  display: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem 2rem;
  margin: 2rem 0 0;
  color: var(--white);
}

.hero-facts div {
  display: grid;
  gap: 0.2rem;
}

.hero-facts dt {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 3.1rem;
  z-index: 2;
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  transform: translateX(-50%);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  border-color: var(--gold-light);
  background: rgba(0, 0, 0, 0.42);
}

@keyframes cue-bounce {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 5px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-snap-type: y proximity;
  }

  .hero-media {
    animation: hero-drift 22s ease-in-out infinite alternate;
  }

  .status-dot::after {
    animation: status-pulse 2.4s ease-out infinite;
  }

  .scroll-cue svg {
    animation: cue-bounce 1.8s var(--ease) infinite;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.055) translate3d(-0.8%, -0.6%, 0);
  }
}

@keyframes status-pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(3.2);
  }
}

.section-shell {
  width: min(1180px, calc(100% - 6rem));
  margin: 0 auto;
}

.tap-section {
  display: grid;
  align-items: center;
  padding: 5rem 0 3rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(230, 182, 63, 0.12), transparent 24rem),
    var(--paper);
}

.tap-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(320px, 0.87fr);
  grid-template-areas:
    "copy photo"
    "table photo"
    "actions actions";
  gap: 1.4rem;
}

.tap-grid > *,
.visit-grid > * {
  min-width: 0;
}

.tap-copy {
  grid-area: copy;
  align-self: end;
}

.tap-copy p,
.visit-copy > p {
  margin-top: 0.8rem;
  color: #3a342b;
  font-size: 1.15rem;
  font-weight: 600;
}

.tap-photo {
  grid-area: photo;
  align-self: stretch;
  min-height: 31rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tap-photo,
.visit-photo,
.taplist,
.map-block {
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.tap-photo img,
.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 220ms var(--ease);
}

.tap-photo:hover,
.tap-photo:focus-within,
.visit-photo:hover,
.visit-photo:focus-within,
.taplist:hover,
.taplist:focus-within,
.map-block:hover,
.map-block:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(28, 20, 8, 0.18);
}

.tap-photo:hover img,
.tap-photo:focus-within img,
.visit-photo:hover img,
.visit-photo:focus-within img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.taplist {
  grid-area: table;
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(15, 15, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(28, 20, 8, 0.08);
}

.taplist::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 220ms var(--ease), transform 420ms var(--ease);
}

.taplist:hover,
.taplist:focus-within {
  border-color: rgba(187, 132, 34, 0.34);
}

.taplist:hover::before,
.taplist:focus-within::before {
  opacity: 1;
  transform: translateX(35%);
}

.taplist-kicker {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.taplist h3 {
  margin: 0;
  color: #17130f;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.02;
  font-weight: 900;
}

.taplist-note {
  color: #4a4135;
  font-size: 1rem;
  font-weight: 700;
}

.taplist-facts {
  display: grid;
  gap: 0.45rem;
}

.taplist-facts span {
  display: flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 0.85rem;
  color: #1b1813;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.8);
  font-weight: 800;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.taplist-facts span:hover {
  border-color: rgba(187, 132, 34, 0.3);
  background: rgba(255, 255, 255, 0.94);
  transform: translateX(2px);
}

.taplist-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 3.1rem;
  margin-top: 0.25rem;
  padding: 0 1rem;
  color: var(--gold-light);
  border-radius: var(--radius);
  background: var(--ink);
  font-weight: 900;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.taplist-link:hover,
.taplist-link:focus-visible {
  color: var(--white);
  background: #15110c;
  box-shadow: 0 14px 30px rgba(7, 7, 7, 0.18);
  transform: translateY(-1px);
}

.taplist-link:hover svg,
.taplist-link:focus-visible svg {
  transform: translateX(3px);
}

.tap-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  padding-top: 0.15rem;
  text-align: center;
}

.tap-actions .button {
  min-width: 12rem;
}

.tap-actions p {
  display: none;
  width: 100%;
  color: #665844;
  font-size: 0.88rem;
  font-weight: 700;
}

.visit-section {
  display: grid;
  align-items: center;
  padding: 4.5rem 0 1.75rem;
  color: var(--white);
  background:
    linear-gradient(180deg, var(--ink), var(--charcoal) 62%, #0c0907),
    var(--ink);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  grid-template-areas:
    "copy photo"
    "contact map"
    "footer footer";
  gap: 1rem 2rem;
  align-items: center;
}

.visit-copy {
  grid-area: copy;
}

.visit-copy h2 {
  color: var(--white);
}

.visit-copy h2 span,
.visit-copy h2 strong {
  color: var(--gold-light);
}

.visit-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.visit-photo {
  grid-area: photo;
  height: 16rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.confidence-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid var(--line);
}

.confidence-list li {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  min-height: 7rem;
  padding: 1rem 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-weight: 700;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.confidence-list li:hover {
  background: rgba(255, 215, 106, 0.06);
}

.confidence-list li + li {
  border-left: 1px solid var(--line);
}

.confidence-list svg {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--gold-light);
  transition: transform 180ms var(--ease);
}

.confidence-list li:hover svg {
  transform: translateY(-2px);
}

.contact-panel {
  grid-area: contact;
  display: grid;
  gap: 1rem;
  padding-top: 0.5rem;
  font-style: normal;
}

.contact-panel a,
.contact-panel span {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 800;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--gold-light);
  transform: translateX(2px);
}

.contact-panel a:hover svg,
.contact-panel a:focus-visible svg {
  transform: translateX(-2px);
}

.contact-panel svg {
  flex: 0 0 auto;
  color: var(--gold-light);
}

.map-block {
  position: relative;
  grid-area: map;
  min-height: 9.75rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #171717;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.map-canvas {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: rgba(255, 255, 255, 0.78);
  background: #171717;
  font-weight: 800;
}

.map-canvas iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.map-directions {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0 1rem;
  color: var(--ink);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.map-directions:hover,
.map-directions:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.site-footer {
  grid-area: footer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding-top: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: var(--white);
  font-weight: 900;
}

.footer-brand img {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border: 1px solid rgba(230, 182, 63, 0.34);
  border-radius: 50%;
}

.footer-brand span,
.site-footer p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-width: 0;
}

.footer-links a {
  position: relative;
  color: var(--gold-light);
  font-weight: 900;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 1.5rem;
  }

  .hero-content,
  .section-shell {
    width: min(100% - 3rem, 980px);
  }

  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .hero-lede {
    font-size: 1.65rem;
  }

  .tap-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "table"
      "actions";
  }

  .visit-grid {
    grid-template-areas:
      "copy"
      "photo"
      "contact"
      "map"
      "footer";
  }

  .tap-photo,
  .visit-photo {
    min-height: 0;
    height: 27rem;
  }

  .visit-photo {
    display: none;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .brand span {
    display: none;
  }

  .brand {
    width: 6.3rem;
    min-height: 2.9rem;
  }

  .brand img {
    width: 5.95rem;
    height: 5.95rem;
    transform: translateY(0.38rem);
  }

  .nav-cta {
    min-height: 2.9rem;
    padding-inline: 0.9rem;
    font-size: 0.9rem;
  }

  .screen,
  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-content {
    padding-top: 4rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-lede {
    font-size: 1.35rem;
  }

  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .tap-section,
  .visit-section {
    padding-block: 4.5rem;
  }

  .tap-photo {
    height: 22rem;
  }

  .taplist {
    padding: 1rem;
  }

  .taplist h3 {
    font-size: 1.7rem;
  }

  .taplist-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .confidence-list {
    grid-template-columns: 1fr 1fr;
  }

  .confidence-list li + li {
    border-left: 0;
  }

  .confidence-list li:nth-child(even) {
    border-left: 1px solid rgba(185, 129, 34, 0.32);
  }

  .confidence-list li:nth-child(n + 3) {
    border-top: 1px solid rgba(185, 129, 34, 0.32);
  }

  .visit-section .confidence-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit-section .confidence-list li {
    min-height: 5.6rem;
    padding: 0.75rem 0.55rem;
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .visit-section .confidence-list li + li,
  .visit-section .confidence-list li:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .visit-section .confidence-list li:nth-child(n + 3) {
    border-top: 0;
  }

  .visit-actions {
    grid-template-columns: 1fr 1fr auto;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .visit-actions .button {
    min-height: 3rem;
    width: 100%;
  }

  .map-block {
    min-height: 8rem;
  }

}

@media (max-width: 540px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

  .brand {
    width: 5.5rem;
    min-height: 2.75rem;
  }

  .brand img {
    width: 5.2rem;
    height: 5.2rem;
    transform: translateY(0.25rem);
  }

  .hero-content,
  .section-shell {
    width: calc(100% - 2rem);
  }

  .tap-grid,
  .visit-grid {
    gap: 0.65rem;
    align-content: start;
  }

  .hero-copy {
    padding-top: 1.5rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.15rem;
  }

  .tap-copy p,
  .visit-copy > p {
    margin-top: 0.45rem;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .tap-section,
  .visit-section {
    padding: 4.15rem 0 0.8rem;
    align-items: start;
  }

  .hero-facts {
    display: grid;
    gap: 0.9rem;
  }

  .scroll-cue {
    bottom: 1.7rem;
  }

  .tap-photo,
  .visit-photo {
    height: 7.5rem;
  }

  .visit-photo {
    display: none;
  }

  .taplist {
    gap: 0.38rem;
  }

  .confidence-list {
    grid-template-columns: 1fr;
  }

  .confidence-list li:nth-child(even) {
    border-left: 0;
  }

  .confidence-list li + li {
    border-top: 1px solid rgba(185, 129, 34, 0.32);
  }

  .tap-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    padding-top: 0;
  }

  .tap-actions .button {
    min-height: 2.45rem;
    min-width: 0;
    padding: 0.55rem 0.45rem;
    font-size: 0.76rem;
  }

  .tap-actions p {
    display: none;
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .confidence-list {
    gap: 0.2rem;
    margin-top: 0.7rem;
    border-block: 0;
  }

  .visit-section .confidence-list {
    grid-template-columns: 1fr;
  }

  .confidence-list li {
    display: flex;
    align-items: center;
    justify-items: start;
    min-height: 0;
    gap: 0.55rem;
    padding: 0.28rem 0;
    text-align: left;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .visit-section .confidence-list li {
    min-height: 0;
    padding: 0.28rem 0;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .confidence-list li + li,
  .confidence-list li:nth-child(n + 3) {
    border-top: 0;
  }

  .visit-section .confidence-list li + li,
  .visit-section .confidence-list li:nth-child(even) {
    border-left: 0;
  }

  .confidence-list svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .visit-actions {
    grid-template-columns: 1fr 1fr auto;
    gap: 0.5rem;
    margin-top: 0.85rem;
  }

  .visit-actions .button {
    min-height: 2.65rem;
    padding: 0.62rem 0.55rem;
    font-size: 0.78rem;
  }

  .visit-actions .button-icon {
    width: 2.65rem;
    min-width: 2.65rem;
    padding-inline: 0;
  }

  .contact-panel a,
  .contact-panel span {
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .contact-panel {
    gap: 0.5rem;
    padding-top: 0.05rem;
  }

  .map-block {
    min-height: 10.4rem;
  }

  .map-directions {
    right: 0.65rem;
    bottom: 0.65rem;
    min-height: 2.35rem;
    padding: 0 0.7rem;
    font-size: 0.78rem;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-top: 0.55rem;
    font-size: 0.72rem;
  }

  .footer-brand img {
    width: 1.6rem;
    height: 1.6rem;
  }

  .site-footer p {
    display: none;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 0.85rem;
  }
}

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