:root {
  color-scheme: light;
  --paper: #fbfaf3;
  --white: #ffffff;
  --ink: #171512;
  --muted: #6f695e;
  --line: #ded8c7;
  --green: #003201;
  --green-soft: #e7efe0;
  --caramel: #b66a25;
  --gold: #e8c170;
  --shadow: 0 24px 70px rgba(30, 25, 15, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 243, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--green);
  color: var(--paper);
  border-radius: 6px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  padding: 9px 0;
}

.nav-order,
.button {
  border: 1px solid var(--green);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-order {
  padding: 10px 14px !important;
  background: var(--green);
  color: var(--paper);
}

.nav-toggle {
  display: none;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-top: 36px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 5.8vw, 6.25rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 610px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 800;
}

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

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

.secondary {
  background: transparent;
  color: var(--green);
}

.quick-facts {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 12px;
  margin-top: 42px;
}

.quick-facts div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts span {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.35;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5.15;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(251, 250, 243, 0.9);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-bottom: 12px;
  color: var(--caramel);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pie-grid,
.hours-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 36px;
  align-items: stretch;
}

.pie-grid img,
.hours-layout img {
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.pie-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 56px);
  background: var(--green);
  color: var(--paper);
  border-radius: var(--radius);
}

.pie-copy p,
.pie-copy dd {
  color: rgba(251, 250, 243, 0.76);
}

.pie-copy > p {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.detail-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

.detail-list div {
  padding-top: 18px;
  border-top: 1px solid rgba(251, 250, 243, 0.22);
}

.detail-list dt {
  margin-bottom: 6px;
  font-weight: 900;
}

.detail-list dd {
  margin: 0;
  line-height: 1.45;
}

.menu {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.tab.active {
  background: var(--green);
  color: var(--paper);
  border-color: var(--green);
}

.menu-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 132px;
  padding: 22px;
  background: var(--white);
}

.menu-item p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.price {
  color: var(--caramel);
  font-weight: 900;
}

.visit {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
}

.visit-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--green-soft);
}

.visit-card p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.visit-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.visit-steps div {
  padding: 28px;
  background: var(--white);
}

.visit-steps span {
  display: block;
  margin-bottom: 54px;
  color: var(--caramel);
  font-weight: 900;
}

.visit-steps p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.hours-layout table {
  width: 100%;
  border-collapse: collapse;
  align-self: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

th,
td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 1rem;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  width: 45%;
  color: var(--green);
}

td {
  color: var(--muted);
  font-weight: 750;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
  padding: 42px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
}

.contact p {
  margin-top: 14px;
  color: rgba(251, 250, 243, 0.72);
  line-height: 1.45;
}

.contact .secondary {
  border-color: rgba(251, 250, 243, 0.58);
  color: var(--paper);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero,
  .pie-grid,
  .hours-layout,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 28px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    aspect-ratio: 16 / 11;
  }

  h1,
  h2 {
    text-wrap: balance;
  }

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

  .split,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .site-header {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 3.25rem);
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-media figcaption {
    position: static;
    margin-top: 10px;
  }

  .pie-copy,
  .visit-card,
  .visit-steps div,
  .contact {
    padding: 22px;
  }

  .button {
    min-width: 0;
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .pie-grid img,
  .hours-layout img {
    min-height: 300px;
  }
}

/* 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;
  }
}

