:root {
  --paper: #fffaf2;
  --white: #ffffff;
  --ink: #1c1614;
  --muted: #665b52;
  --line: #e6d7be;
  --gold: #ad8b49;
  --burgundy: #531f2a;
  --canal: #214e56;
  --canal-soft: #dce9e6;
  --shadow: 0 24px 70px rgba(49, 30, 22, .14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 242, .88);
  border-bottom: 1px solid rgba(173, 139, 73, .22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: var(--burgundy);
  border: 1px solid #6f3a42;
  border-radius: 50%;
  font-size: 21px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a,
.header-action,
.button,
.menu-card a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.menu-card a:hover,
.footer a:hover {
  color: var(--burgundy);
}

.header-action {
  justify-self: end;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--burgundy);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: calc(var(--max) + 96px);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 48px) 56px;
}

.hero-copy,
.menu-copy,
.menu-card,
.contact-card,
.route-card {
  min-width: 0;
}

.address-line {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: .98;
}

h1 {
  max-width: 690px;
  font-size: clamp(54px, 7.2vw, 94px);
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
}

h3 {
  font-size: 28px;
}

.hero-text {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.booking-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  cursor: pointer;
}

.button.primary {
  color: var(--paper);
  background: var(--burgundy);
}

.button.secondary {
  color: var(--burgundy);
  background: transparent;
  border-color: rgba(83, 31, 42, .34);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 42px 0 0;
}

.quick-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-facts dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 520px;
  min-width: 0;
  overflow: hidden;
  background: var(--canal-soft);
  border: 1px solid rgba(33, 78, 86, .18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 18px;
  color: var(--paper);
  background: rgba(28, 22, 20, .74);
  border: 1px solid rgba(255, 250, 242, .25);
  border-radius: 8px;
}

.media-caption strong,
.media-caption span {
  display: block;
}

.media-caption span {
  margin-top: 5px;
  color: rgba(255, 250, 242, .78);
}

.booking-band,
.menu-section,
.info-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 34px);
}

.booking-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
  gap: 32px;
  align-items: end;
}

.section-heading p,
.menu-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.booking-panel {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(49, 30, 22, .08);
}

.booking-panel label {
  display: grid;
  flex: 1 1 160px;
  gap: 7px;
}

.booking-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

select,
input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid #dccbad;
  border-radius: 4px;
  font: 650 15px/1.2 inherit;
}

.booking-panel button {
  align-self: end;
}

.booking-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.booking-notes p,
.confirmation {
  margin: 0;
  padding: 16px;
  background: rgba(220, 233, 230, .55);
  border: 1px solid rgba(33, 78, 86, .18);
  border-radius: 8px;
}

.confirmation {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-color: rgba(83, 31, 42, .25);
}

.confirmation[hidden] {
  display: none;
}

.confirmation p {
  margin: 4px 0 0;
  color: var(--muted);
}

.check {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper);
  background: var(--canal);
  border-radius: 50%;
  font-weight: 900;
}

.menu-section {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.menu-copy img {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-card {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-card p {
  min-height: 74px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.menu-card a {
  color: var(--burgundy);
  font-weight: 850;
}

.info-section {
  border-top: 1px solid var(--line);
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr .82fr 1.1fr;
  gap: 18px;
  margin-top: 34px;
}

.hours-table,
.contact-card,
.route-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hours-table {
  display: grid;
  gap: 0;
}

.hours-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #efe3d0;
}

.hours-table div:last-child {
  border-bottom: 0;
}

.hours-table span {
  color: var(--muted);
}

.contact-card p,
.route-card ul {
  color: var(--muted);
}

.contact-card .button {
  margin-top: 10px;
}

.route-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.route-card li + li {
  margin-top: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: rgba(255, 250, 242, .78);
  background: #1c1614;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--paper);
  font-weight: 800;
  white-space: nowrap;
}

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

  .nav {
    display: none;
  }

  .hero,
  .menu-section,
  .section-heading,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 30px;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .booking-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 16px;
  }

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

  .header-action {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

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

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

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }

  .media-caption {
    position: static;
    width: auto;
    margin: -78px 14px 14px;
  }

  .booking-panel {
    display: grid;
  }

  .booking-panel .button {
    width: 100%;
  }

  .footer {
    display: grid;
  }

  .footer a {
    white-space: normal;
  }
}

/* Shared Google Maps fix: replace decorative map sketches with real embedded maps. */
.google-map-section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 6vw, 86px) auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
}

.google-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.google-map-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.google-map-copy h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.google-map-copy p:not(.google-map-kicker) {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.google-map-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid currentColor;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.google-map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  background: #e6ebef;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.12);
}

.map-sketch,
.mini-map,
.map-card:not(.google-map-card),
.map-panel:not(.google-map-panel),
.map[aria-label*="map" i] {
  display: none !important;
}

@media (max-width: 760px) {
  .google-map-section {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 560px);
    margin: 36px auto;
  }

  .google-map-frame {
    min-height: 300px;
  }
}

/* Shared real menu fix: menu category buttons now reveal actual menu items. */
.real-menu-section {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 6vw, 86px) auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(25, 25, 25, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: inherit;
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

.real-menu-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.real-menu-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.real-menu-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.real-menu-head p:not(.real-menu-kicker) {
  max-width: 540px;
  margin: 0;
  line-height: 1.55;
  opacity: 0.82;
}

.real-menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.real-menu-tab {
  min-height: 42px;
  border: 1px solid rgba(25, 25, 25, 0.18);
  border-radius: 6px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  font: inherit;
  font-weight: 800;
}

.real-menu-tab[aria-selected="true"] {
  background: #151515;
  color: #fff;
  border-color: #151515;
}

.real-menu-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.real-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.real-menu-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.real-menu-item p {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1.45;
  opacity: 0.78;
}

.real-menu-price {
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .real-menu-section {
    width: min(100% - 24px, 560px);
    margin: 36px auto;
    padding: 18px;
  }

  .real-menu-head {
    display: grid;
    align-items: start;
  }

  .real-menu-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .real-menu-tab {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
  }

  .real-menu-panel {
    grid-template-columns: 1fr;
  }
}

