:root {
  --forest: #164c3a;
  --forest-dark: #0d3025;
  --moss: #59705c;
  --sandstone: #b75e3d;
  --cream: #f4ebdd;
  --cream-light: #fffaf1;
  --paper: #fff7eb;
  --ink: #242824;
  --muted: #667066;
  --gold: #d49a2a;
  --white: #ffffff;
  --line: rgba(36, 40, 36, 0.15);
  --shadow: 0 22px 70px rgba(13, 48, 37, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.72), rgba(244, 235, 221, 0.94)),
    radial-gradient(circle at 20% 0%, rgba(212, 154, 42, 0.09), transparent 32%),
    var(--cream);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: 6.2rem;
  line-height: 0.95;
  text-wrap: balance;
}

h2 {
  max-width: 860px;
  font-size: 3.7rem;
  text-wrap: balance;
}

h3 {
  font-size: 1.34rem;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 235, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 35px rgba(13, 48, 37, 0.08);
  backdrop-filter: blur(18px) saturate(1.1);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  width: min(1440px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--forest-dark);
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, var(--forest), var(--forest-dark));
  color: var(--cream-light);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.65rem, 1.5vw, 1.5rem);
  font-weight: 800;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--sandstone);
}

.site-nav a:hover,
.plain-link:hover {
  color: var(--sandstone);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.42rem;
}

.header-actions .button {
  padding-inline: 0.82rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 5px;
  padding: 0.2rem 0.85rem;
  background: rgba(22, 76, 58, 0.12);
  color: var(--forest-dark);
  font-size: 0.84rem;
  font-weight: 800;
  border: 1px solid rgba(22, 76, 58, 0.16);
}

.status-pill.is-open {
  background: var(--forest);
  color: var(--white);
}

.status-pill.is-closed {
  background: rgba(183, 94, 61, 0.16);
  color: #6f2b16;
}

.plain-link {
  color: var(--forest-dark);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.78rem 1.08rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(180deg, #c86a46, var(--sandstone));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(183, 94, 61, 0.24);
}

.button-primary:hover {
  background: #9c4d31;
}

.button-outline {
  background: rgba(255, 250, 241, 0.64);
  border-color: rgba(22, 76, 58, 0.34);
  color: var(--forest-dark);
}

.button-light {
  background: var(--paper);
  color: var(--forest-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream-light);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100svh - 78px));
  overflow: hidden;
  background: var(--forest-dark);
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 48, 37, 0.93), rgba(13, 48, 37, 0.62) 48%, rgba(13, 48, 37, 0.2)),
    linear-gradient(0deg, rgba(13, 48, 37, 0.62), rgba(13, 48, 37, 0.02) 52%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
  color: var(--white);
}

.eyebrow {
  color: var(--gold);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero-copy {
  max-width: 650px;
  margin-top: 1.2rem;
  font-size: 1.34rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.today-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 5px solid var(--gold);
  background: rgba(13, 48, 37, 0.74);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.today-bar strong {
  color: var(--white);
}

.quick-info,
.section,
.menu-preview,
.events-band,
.reviews,
.map-section,
.site-footer {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  transform: translateY(-42px);
}

.quick-card {
  display: grid;
  gap: 0.45rem;
  min-height: 160px;
  padding: 1.35rem;
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(36, 40, 36, 0.11);
  border-radius: 6px;
  box-shadow: 0 16px 44px rgba(13, 48, 37, 0.1);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.quick-card span {
  color: var(--sandstone);
  font-weight: 1000;
}

.quick-card strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
}

.quick-card small {
  color: var(--muted);
  font-size: 0.95rem;
}

.quick-card:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-3px);
}

.quick-card:hover small,
.quick-card:hover span {
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.split.reverse .section-copy {
  order: 2;
}

.section-copy {
  display: grid;
  gap: 1.2rem;
}

.section-copy > p:not(.eyebrow),
.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.image-panel {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: var(--forest-dark);
}

.image-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-note {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.6rem;
  padding: 1rem;
  border-left: 5px solid var(--sandstone);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(13, 48, 37, 0.08);
}

.menu-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: clamp(3.5rem, 7vw, 7rem);
}

.menu-preview article,
.planning-grid article,
.feature-row article,
.review-grid blockquote,
.opening-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(13, 48, 37, 0.06);
}

.menu-preview article {
  display: grid;
  gap: 0.55rem;
  min-height: 180px;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.menu-preview article::after,
.planning-grid article::after,
.feature-row article::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 4px;
  background: var(--gold);
  opacity: 0.55;
}

.menu-preview span {
  color: var(--sandstone);
  font-weight: 1000;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.menu-preview p,
.planning-grid p,
.feature-row p,
.review-grid p,
.opening-card p {
  color: var(--muted);
}

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

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.planning-grid article,
.feature-row article {
  display: grid;
  gap: 0.8rem;
  min-height: 220px;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.planning-grid a,
.opening-card a {
  align-self: end;
  color: var(--sandstone);
  font-weight: 900;
}

.experience-list {
  display: grid;
  gap: 0.75rem;
}

.experience-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.experience-list strong {
  color: var(--forest-dark);
}

.experience-list span,
.check-list {
  color: var(--muted);
}

.events-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 6rem);
  background:
    linear-gradient(135deg, rgba(183, 94, 61, 0.16), transparent 44%),
    var(--forest-dark);
  color: var(--white);
  border-radius: 6px;
}

.events-band h2 {
  color: var(--white);
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-list article {
  display: grid;
  gap: 0.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.event-list time {
  color: var(--gold);
  font-weight: 1000;
}

.event-list p {
  color: rgba(255, 255, 255, 0.74);
}

.groups {
  text-align: left;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.check-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.2rem;
}

.reviews {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-grid blockquote {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.35rem;
}

.review-grid cite {
  color: var(--forest-dark);
  font-style: normal;
  font-weight: 1000;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 2rem;
  align-items: start;
}

.contact-list span,
.contact-list a {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0;
}

.contact-content > div {
  display: grid;
  gap: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.5rem;
  font-weight: 900;
}

.contact-list a {
  color: var(--forest-dark);
}

.opening-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1.3fr);
  gap: 2rem;
  align-items: stretch;
  padding: 0 0 clamp(3.5rem, 7vw, 7rem);
}

.map-copy {
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.map-copy p:not(.eyebrow) {
  color: var(--muted);
}

.map-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background:
    linear-gradient(45deg, rgba(22, 76, 58, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(183, 94, 61, 0.1) 25%, transparent 25%),
    var(--cream-light);
  background-size: 36px 36px;
  text-align: center;
}

.map-placeholder > div {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  max-width: 360px;
  padding: 1.5rem;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 5rem;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.2rem;
  max-width: 760px;
  font-weight: 800;
}

.mobile-action-bar {
  display: none;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(2.5rem, 5vw, 5rem);
}

.subpage-hero.compact {
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-left: max(16px, calc((100% - 1440px) / 2));
}

.subpage-hero h1 {
  max-width: 960px;
  font-size: 4.8rem;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.22rem;
}

.subpage-hero img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.detail-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  min-height: 210px;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(13, 48, 37, 0.06);
}

.detail-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 4px;
  background: var(--gold);
  opacity: 0.55;
}

.detail-card span {
  color: var(--sandstone);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.detail-card p {
  color: var(--muted);
}

a.detail-card:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-3px);
}

a.detail-card:hover p,
a.detail-card:hover span {
  color: rgba(255, 255, 255, 0.78);
}

.menu-board {
  padding-top: clamp(2rem, 5vw, 5rem);
}

.dish-list {
  display: grid;
  gap: 0.75rem;
  max-width: 980px;
}

.dish-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(13, 48, 37, 0.06);
}

.dish-row p {
  color: var(--muted);
}

.dish-row strong {
  color: var(--sandstone);
  font-size: 1.35rem;
}

.events-page {
  margin-top: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
}

.legal-copy {
  max-width: 920px;
}

.legal-copy h2 {
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.legal-copy p + p {
  margin-top: 0.65rem;
}

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

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

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-header.is-open .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0.4rem 0;
  }

  .site-header.is-open .header-actions {
    justify-content: flex-start;
    padding-bottom: 1rem;
  }

  .quick-info,
  .planning-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split.reverse,
  .events-band,
  .map-section,
  .subpage-hero {
    grid-template-columns: 1fr;
  }

  .page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split.reverse .section-copy {
    order: 0;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
    padding-bottom: 68px;
  }

  .header-inner,
  .quick-info,
  .section,
  .menu-preview,
  .events-band,
  .reviews,
  .map-section,
  .site-footer {
    width: min(100% - 24px, 1440px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(100% - 24px, 1440px);
    justify-content: start;
    padding-top: 4rem;
    padding-bottom: 7rem;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(13, 48, 37, 0.92), rgba(13, 48, 37, 0.48) 62%, rgba(13, 48, 37, 0.12));
  }

  .quick-info {
    transform: none;
    margin-top: 1rem;
  }

  .menu-preview,
  .feature-row,
  .review-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    width: min(100% - 24px, 1440px);
    padding-top: 3rem;
  }

  .subpage-hero.compact {
    margin-left: auto;
    margin-right: auto;
  }

  .subpage-hero h1 {
    font-size: 3.15rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(36, 40, 36, 0.2);
    background: var(--paper);
    box-shadow: 0 -12px 35px rgba(13, 48, 37, 0.14);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 62px;
    place-items: center;
    color: var(--forest-dark);
    font-weight: 1000;
    text-decoration: none;
  }

  .mobile-action-bar a + a {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.38rem;
  }

  .hero-copy {
    font-size: 1.08rem;
    margin-top: 0.95rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .today-bar {
    margin-top: 1.35rem;
  }

  .header-actions,
  .site-header.is-open .header-actions,
  .hero-actions,
  .today-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .plain-link,
  .status-pill {
    width: 100%;
  }

  .quick-info,
  .planning-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: 132px;
  }

  .events-band {
    padding: 2rem 1.2rem;
  }

  .experience-list article {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .dish-row {
    grid-template-columns: 1fr;
  }
}
