:root {
  --ink: #211915;
  --muted: #74665a;
  --paper: #f5ead8;
  --paper-2: #fff8eb;
  --wood: #3a2118;
  --wood-2: #5b3020;
  --canal: #1f584f;
  --canal-2: #8fb4a6;
  --brass: #c29443;
  --line: rgba(58, 33, 24, 0.18);
  --shadow: 0 24px 70px rgba(33, 25, 21, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(31, 88, 79, 0.08) 1px, transparent 1px),
    linear-gradient(var(--paper), var(--paper-2) 58%, #ead8bc);
  background-size: 88px 88px, auto;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(245, 234, 216, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 84px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a,
.route-link,
.button {
  text-decoration: none;
}

.site-nav a {
  padding: 10px 0;
  color: #3c2b22;
}

.route-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.route-link,
.button.primary {
  color: #fff8eb;
  background: var(--canal);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 248, 235, 0.72);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--wood);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 76px) 38px;
  color: #fff8eb;
  background:
    linear-gradient(90deg, rgba(33, 25, 21, 0.88), rgba(33, 25, 21, 0.48) 44%, rgba(33, 25, 21, 0.12)),
    linear-gradient(0deg, rgba(33, 25, 21, 0.58), rgba(33, 25, 21, 0.02) 38%),
    url("assets/source-terrace.jpg") center 46% / cover;
}

.hero-copy {
  max-width: 670px;
  padding-bottom: 54px;
}

.place,
.section-heading p,
.history-copy > p:first-child,
.review-feature > p,
.contact-card > p {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--brass);
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
  line-height: 0.92;
  font-weight: 700;
}

.lede {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 248, 235, 0.86);
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

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

.today-panel {
  justify-self: end;
  width: min(100%, 380px);
  margin-bottom: 76px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 248, 235, 0.88);
  border: 1px solid rgba(255, 248, 235, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2f8f61;
  box-shadow: 0 0 0 7px rgba(47, 143, 97, 0.16);
}

.today-panel p {
  margin: 18px 0 6px;
  color: var(--muted);
  font-weight: 800;
}

.today-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.today-panel span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-info div {
  min-width: 0;
  min-height: 154px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper-2);
}

.quick-info span,
.menu-item em,
.menu-card figcaption,
.gallery-grid figcaption,
.review-feature span {
  color: var(--muted);
  font-size: 0.82rem;
}

.quick-info strong {
  display: block;
  margin: 12px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.quick-info p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

.section > *,
.hero > *,
.quick-info > *,
.contact-section > * {
  min-width: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(280px, 1.2fr);
  column-gap: clamp(22px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 54px);
}

.section-heading h2,
.history-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4.7rem);
  line-height: 0.96;
}

.section-heading span {
  max-width: 340px;
  color: var(--muted);
  line-height: 1.6;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--wood);
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.filter.active {
  color: #fff8eb;
  background: var(--wood);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 430px);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
}

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

.menu-item {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(180px, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 98px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item[hidden] {
  display: none;
}

.menu-item span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
}

.menu-item strong {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.35;
}

.menu-card {
  position: sticky;
  top: 96px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 235, 0.72);
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 100%;
  border-radius: 6px;
}

.menu-card figcaption {
  margin-top: 12px;
  line-height: 1.5;
}

.gallery-section {
  color: #fff8eb;
  background: var(--wood);
}

.gallery-section .section-heading span,
.gallery-section .section-heading p {
  color: var(--brass);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #140d0a;
}

.gallery-grid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.gallery-grid figure:not(.wide) img {
  height: 430px;
}

.gallery-grid figcaption {
  padding: 14px 16px 18px;
  color: rgba(255, 248, 235, 0.72);
}

.history-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: start;
  background: #efe0c6;
}

.history-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--canal);
  font-weight: 900;
}

.timeline strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 2.2rem);
  line-height: 1.08;
}

.reviews-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.review-feature,
.review-notes {
  padding: clamp(42px, 7vw, 92px) clamp(22px, 5vw, 76px);
  background: var(--paper-2);
}

blockquote {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1;
}

.review-notes {
  display: grid;
  align-content: center;
  gap: 22px;
}

.review-notes div {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.review-notes strong {
  display: block;
  margin-bottom: 8px;
  color: var(--canal);
  font-size: 1.2rem;
}

.review-notes span {
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.62fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card,
.hours-card,
.map-panel {
  min-height: 420px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
}

.contact-card {
  color: #fff8eb;
  background: var(--canal);
}

.contact-card address {
  margin: 24px 0;
  font-style: normal;
  line-height: 1.7;
}

.contact-card a {
  display: block;
  margin-top: 10px;
  color: #fff8eb;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hours-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.hours-card h3 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.hours-card dl,
.hours-card dd {
  margin: 0;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.hours-card dt {
  font-weight: 900;
}

.map-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff8eb;
  background:
    linear-gradient(rgba(33, 25, 21, 0.18), rgba(33, 25, 21, 0.78)),
    url("assets/source-contact.jpg") center / cover;
}

.map-panel span {
  color: var(--brass);
  font-weight: 900;
  text-transform: uppercase;
}

.map-panel strong {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 76px);
  color: rgba(255, 248, 235, 0.68);
  background: var(--ink);
  font-size: 0.88rem;
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .route-link {
    display: none;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-header.nav-open .site-nav a {
    border-top: 1px solid var(--line);
  }

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

  .hero {
    min-height: 780px;
    align-items: end;
  }

  .today-panel {
    justify-self: start;
    margin-bottom: 20px;
  }

  .menu-card {
    position: relative;
    top: 0;
    max-width: 440px;
  }

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

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-top: 42px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .today-panel {
    width: 100%;
  }

  .section {
    padding-block: 54px;
  }

  .section-heading h2,
  .history-copy h2,
  .contact-card h2,
  .map-panel strong {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    overflow-wrap: anywhere;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-grid img,
  .gallery-grid figure:not(.wide) img {
    height: 360px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-card,
  .hours-card,
  .map-panel {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

