﻿:root {
  --ink: #17170f;
  --forest: #123a30;
  --forest-deep: #0d2a22;
  --wine: #7a2230;
  --wine-deep: #5c1822;
  --oyster: #f4ede0;
  --linen: #fbf6ec;
  --cream: #efe6d4;
  --sage: #8e9d83;
  --brass: #c69a4c;
  --brass-warm: #b8873a;
  --harbour: #1f4a5c;
  --harbour-deep: #163542;
  --terracotta: #b8593a;
  --muted: #6b6659;
  --muted-2: #8a8578;
  --line: rgba(23, 23, 15, 0.14);
  --line-strong: rgba(23, 23, 15, 0.22);
  --shadow-sm: 0 6px 20px rgba(23, 23, 15, 0.10);
  --shadow: 0 24px 60px rgba(23, 23, 15, 0.18);
  --shadow-lg: 0 40px 100px rgba(23, 23, 15, 0.28);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
}

* {
  box-sizing: border-box;
}

*:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--oyster);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  transition: color 180ms ease, opacity 180ms ease;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 60px);
  color: var(--linen);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 22, 17, 0.55), rgba(13, 22, 17, 0));
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: -1;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 246, 236, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(23, 23, 15, 0.06), 0 10px 30px rgba(23, 23, 15, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header.is-scrolled::before,
.site-header.is-open::before {
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.005em;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

.site-nav a:hover {
  color: var(--brass);
}

.header-phone {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-phone:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: #17160f;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--linen);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(102deg, rgba(10, 22, 17, 0.82) 0%, rgba(10, 22, 17, 0.55) 42%, rgba(10, 22, 17, 0.15) 78%),
    linear-gradient(180deg, rgba(10, 22, 17, 0.25) 0%, rgba(10, 22, 17, 0) 30%, rgba(10, 22, 17, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-content: center;
  width: min(1200px, calc(100% - 44px));
  margin: 0 auto;
  padding: 140px 0 90px;
}

.eyebrow,
.section-kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before,
.section-kicker::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: inherit;
}

h1 {
  width: min(820px, 100%);
  font-size: clamp(52px, 8.4vw, 116px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.015em;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
}

h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

p {
  margin: 0;
}

.hero-copy {
  width: min(560px, 100%);
  margin-top: 26px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(251, 246, 236, 0.88);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(251, 246, 236, 0.6);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

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

.button.primary {
  background: var(--brass);
  border-color: var(--brass);
  color: #16150c;
  box-shadow: 0 10px 30px rgba(198, 154, 76, 0.35);
}

.button.primary:hover {
  background: var(--brass-warm);
  border-color: var(--brass-warm);
  box-shadow: 0 14px 36px rgba(198, 154, 76, 0.45);
}

.button.secondary {
  background: var(--linen);
  border-color: var(--linen);
  color: var(--ink);
}

.button.secondary:hover {
  background: transparent;
  color: var(--linen);
}

.button.ghost {
  background: transparent;
  color: inherit;
}

.button.ghost:hover {
  background: rgba(251, 246, 236, 0.12);
  border-color: rgba(251, 246, 236, 0.9);
}

.hero-panel {
  width: min(340px, 100%);
  margin-top: 56px;
  padding: 22px 24px 24px;
  border-left: 2px solid var(--brass);
  background: linear-gradient(135deg, rgba(18, 58, 48, 0.55), rgba(10, 22, 17, 0.35));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.hero-panel span,
.split-media span,
.dish-card span,
.map-panel span,
.hours-table span {
  display: block;
  color: var(--brass);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 10px 0 6px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.hero-panel small {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(251, 246, 236, 0.78);
}

/* ============ SECTIONS ============ */
.section-band,
.section-light,
.menu-section {
  padding: clamp(80px, 11vw, 140px) clamp(22px, 5vw, 72px);
}

.intro-grid,
.split,
.story,
.hours,
.visit,
.menu-section {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) 1.4fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.intro-copy p,
.split-copy p,
.menu-heading p,
.story p,
.hours-copy p,
.map-panel p,
.menu-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.intro-copy p:first-of-type,
.split-copy p:first-of-type {
  font-size: 19px;
  color: var(--ink);
  line-height: 1.55;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.facts div {
  min-height: 190px;
  padding: 30px 26px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.facts div:last-child {
  border-right: 0;
}

.facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.facts span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: auto;
}

.section-light {
  background: var(--linen);
  position: relative;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.split-media {
  position: relative;
}

.split-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}

.split-media span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 16px;
  background: var(--linen);
  color: var(--forest);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.clean-list li {
  padding: 20px 0 20px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  position: relative;
  line-height: 1.5;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 18px;
  height: 1px;
  background: var(--brass);
}

/* ============ MENU ============ */
.menu-section {
  color: var(--linen);
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(198, 154, 76, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(122, 34, 48, 0.12), transparent 55%);
  pointer-events: none;
}

.menu-section > * {
  position: relative;
}

.menu-section .eyebrow,
.menu-section .section-kicker,
.menu-section .section-label {
  color: var(--brass);
}

.menu-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: end;
  margin-bottom: 48px;
}

.menu-heading p,
.menu-note {
  color: rgba(251, 246, 236, 0.75);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dish-card {
  display: flex;
  flex-direction: column;
}

.dish-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: var(--radius);
  transition: transform 400ms ease;
}

.dish-card:hover img {
  transform: scale(1.02);
}

.dish-card div {
  padding: 0 0 8px;
}

.dish-card span {
  color: var(--brass);
}

.dish-card h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
}

.dish-card p {
  margin-top: 10px;
  color: rgba(251, 246, 236, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.dish-card.text-only {
  display: grid;
  align-content: end;
  min-height: 440px;
  padding: 34px;
  background: linear-gradient(160deg, var(--wine), var(--wine-deep));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dish-card.text-only span {
  color: rgba(251, 246, 236, 0.7);
}

.dish-card.text-only h3 {
  font-size: 30px;
  margin-top: 12px;
}

.dish-card.text-only p {
  color: rgba(251, 246, 236, 0.85);
}

.menu-note {
  max-width: 780px;
  margin-top: 36px;
  font-size: 13px;
  font-style: italic;
}

/* ============ STORY ============ */
.story {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.78fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

blockquote {
  margin: 0;
  padding: 42px 40px;
  background: linear-gradient(155deg, var(--wine), var(--wine-deep));
  color: var(--linen);
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  position: relative;
}

blockquote::before {
  content: """;
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: var(--serif);
  font-size: 90px;
  line-height: 1;
  color: var(--brass);
  opacity: 0.45;
}

blockquote cite {
  display: block;
  margin-top: 28px;
  color: rgba(251, 246, 236, 0.75);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============ HOURS ============ */
.hours {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.hours-table {
  border-top: 1px solid var(--line-strong);
}

.hours-table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.hours-table strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--forest);
}

.hours-table span {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.hours-table small {
  grid-column: 2;
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

/* ============ VISIT ============ */
.visit {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  min-height: 520px;
  color: var(--linen);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-panel {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 88px);
  background:
    linear-gradient(135deg, rgba(31, 74, 92, 0.72), rgba(22, 53, 66, 0.85)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px),
    var(--harbour);
  position: relative;
}

.map-panel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 6px rgba(198, 154, 76, 0.25), 0 0 0 14px rgba(198, 154, 76, 0.12);
  opacity: 0.7;
}

.map-panel strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.map-panel p {
  max-width: 430px;
  color: rgba(251, 246, 236, 0.82);
}

.visit-panel {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 88px);
  background: var(--ink);
  gap: 4px;
}

.visit-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(251, 246, 236, 0.18);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 180ms ease, padding 180ms ease;
}

.visit-panel a:hover {
  color: var(--brass);
  padding-left: 6px;
}

.visit-panel a::after {
  content: "→";
  color: var(--brass);
  font-size: 18px;
  transition: transform 180ms ease;
}

.visit-panel a:hover::after {
  transform: translateX(4px);
}

/* ============ FOOTER ============ */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(22px, 5vw, 72px);
  background: #0e120d;
  color: rgba(251, 246, 236, 0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
}

footer a:hover {
  color: var(--brass);
}

/* ============ MOBILE ACTIONS ============ */
.mobile-actions {
  display: none;
}

/* ============ MOBILE ============ */
@media (max-width: 840px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
  }

  .site-nav {
    position: fixed;
    inset: 68px 12px auto;
    display: none;
    grid-auto-rows: 56px;
    gap: 0;
    padding: 8px 16px;
    background: var(--linen);
    color: var(--ink);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    font-size: 13px;
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

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

  .hero-image {
    object-position: center 35%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(10, 22, 17, 0.35) 0%, rgba(10, 22, 17, 0.5) 45%, rgba(10, 22, 17, 0.92) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    align-content: end;
    padding: 88px 0 112px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .eyebrow::before {
    width: 20px;
  }

  h1 {
    font-size: clamp(44px, 12vw, 58px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(32px, 7vw, 42px);
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy {
    font-size: 16px;
    margin-top: 20px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
    width: 100%;
  }

  .hero-actions .button.primary,
  .hero-actions .button.secondary {
    flex: 1 1 auto;
    min-width: 140px;
  }

  .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-panel {
    margin-top: 32px;
    padding: 18px 20px;
    width: 100%;
    max-width: 340px;
  }

  .hero-panel strong {
    font-size: 22px;
  }

  .section-band,
  .section-light,
  .menu-section {
    padding: clamp(56px, 11vw, 84px) 20px;
  }

  .intro-grid,
  .split,
  .menu-heading,
  .menu-grid,
  .story,
  .hours,
  .visit {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-copy p,
  .split-copy p,
  .menu-heading p,
  .story p,
  .hours-copy p,
  .map-panel p {
    font-size: 16px;
  }

  .intro-copy p:first-of-type,
  .split-copy p:first-of-type {
    font-size: 18px;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
  }

  .facts div {
    min-height: 140px;
    padding: 22px 18px;
    border-bottom: 1px solid var(--line);
  }

  .facts div:nth-child(2n) {
    border-right: 0;
  }

  .facts strong {
    font-size: 24px;
  }

  .facts span {
    font-size: 11px;
  }

  .split-media img {
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }

  .menu-grid {
    gap: 28px;
  }

  .dish-card img {
    aspect-ratio: 4 / 5;
  }

  .dish-card.text-only {
    min-height: 260px;
    padding: 28px;
  }

  .dish-card.text-only h3 {
    font-size: 26px;
  }

  blockquote {
    padding: 32px 28px;
    font-size: clamp(22px, 5.5vw, 28px);
  }

  blockquote::before {
    top: 4px;
    left: 16px;
    font-size: 70px;
  }

  .hours-table div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }

  .hours-table strong {
    font-size: 22px;
  }

  .hours-table small {
    grid-column: auto;
  }

  .visit {
    width: 100%;
    min-height: auto;
    border-radius: var(--radius);
  }

  .map-panel {
    min-height: 260px;
  }

  .map-panel strong {
    font-size: clamp(30px, 8vw, 42px);
  }

  .visit-panel {
    gap: 0;
  }

  footer {
    display: block;
    padding: 24px 20px 96px;
    line-height: 1.8;
  }

  footer span {
    display: block;
    margin-bottom: 6px;
  }

  .mobile-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 60px;
    overflow: hidden;
    border: 1px solid rgba(251, 246, 236, 0.22);
    border-radius: 999px;
    background: rgba(14, 18, 13, 0.95);
    color: var(--linen);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 8px;
    text-align: center;
    line-height: 1.2;
  }

  .mobile-actions a:first-child {
    color: var(--brass);
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(251, 246, 236, 0.16);
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    max-width: 130px;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .facts div {
    border-right: 0;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .mobile-actions a {
    font-size: 10px;
  }
}

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