
:root {
  --ink: #18322d;
  --ink-soft: #50635f;
  --cream: #fbfcf7;
  --white: #ffffff;
  --spring: #dceccb;
  --sage: #9fc48f;
  --sky: #b6e1f0;
  --teal: #5fb3a4;
  --line: rgba(24, 50, 45, 0.12);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 247, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  letter-spacing: .08em;
  font-size: 18px;
  white-space: nowrap;
}
.brand-mark {
  width: 30px;
  height: 38px;
  position: relative;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0 4px 10px;
  background: var(--ink);
  clip-path: polygon(46% 0, 54% 0, 55% 25%, 77% 10%, 82% 16%, 61% 34%, 88% 26%, 92% 33%, 61% 44%, 84% 46%, 83% 54%, 58% 53%, 58% 100%, 42% 100%, 42% 53%, 17% 54%, 16% 46%, 39% 44%, 8% 33%, 12% 26%, 39% 34%, 18% 16%, 23% 10%, 45% 25%);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.nav a {
  padding: 25px 0 22px;
  border-bottom: 2px solid transparent;
}
.nav a:hover,
.nav a[aria-current="page"] {
  border-bottom-color: var(--ink);
}
.nav-cta {
  background: var(--ink);
  color: white;
  padding: 11px 18px !important;
  border-radius: 999px;
  border-bottom: 0 !important;
}
.mobile-toggle { display: none; }

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) brightness(.86);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 37, 32, .62) 0%, rgba(16,37,32,.20) 52%, rgba(16,37,32,.06) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 56px));
  color: white;
}
.kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  margin-bottom: 22px;
}
.hero h1, .display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.035em;
}
.hero p {
  max-width: 540px;
  margin: 26px 0 30px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,.9);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 14px;
}
.btn.light { background: white; color: var(--ink); }
.btn.ghost { background: transparent; border-color: currentColor; }

.section { padding: 110px 28px; }
.section.compact { padding-top: 80px; padding-bottom: 80px; }
.container { max-width: var(--max); margin: 0 auto; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split.reverse .media-card { order: 2; }
.split.reverse .copy { order: 1; }

.copy h2,
.page-intro h1,
.feature h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -.03em;
}
.copy h2 { font-size: clamp(44px, 5vw, 72px); }
.copy p { max-width: 560px; color: var(--ink-soft); font-size: 18px; }
.place-copy h2 { margin-bottom: 20px; }
.place-copy .place-legacy { margin-bottom: 12px; }
.place-copy h3 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.15;
}
.place-copy p { font-size: 16px; }
.place-copy strong { color: var(--ink); }

.chronicle-section { padding-top: 76px; padding-bottom: 76px; background: var(--white); }
.chronicle-intro {
  margin-bottom: 36px;
}
.chronicle-intro h2 {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.chronicle-intro p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.03em;
}
.chronicle-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.chronicle-entry {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.chronicle-marker {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  min-height: 36px;
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--spring);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.chronicle-content time {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.chronicle-content h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.15;
}
.chronicle-content p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.media-card {
  overflow: hidden;
  border-radius: 28px;
  min-height: 470px;
  box-shadow: 0 20px 60px rgba(41, 77, 62, .08);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }

.tint-sage {
  background: linear-gradient(135deg, #f8fbf4 0%, #eef6e5 100%);
}
.tint-sky {
  background: linear-gradient(135deg, #f9fcf9 0%, #eff9fb 100%);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.food-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.food-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.food-card-body { padding: 22px; }
.food-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  margin: 0 0 4px;
}
.food-card p { margin: 0; color: var(--ink-soft); }

.food-menu-section h2,
.drinks-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
}
.menu-food-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 32px; }
.menu-food-grid .food-card h3 { margin: 0; font-size: 24px; line-height: 1.3; }
.menu-list.drinks-menu { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); margin-top: 32px; }
.drinks-image { height: 100%; min-height: 340px; object-fit: cover; }

.community-strip {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.community-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.community-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24,50,45,.7), rgba(24,50,45,.16));
}
.community-copy {
  width: min(var(--max), calc(100% - 56px));
  position: relative;
  z-index: 2;
  color: white;
}
.community-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  margin: 0 0 18px;
}
.community-copy p { max-width: 500px; font-size: 19px; color: rgba(255,255,255,.9); }

.cta-band {
  background: var(--sky);
  text-align: center;
  padding: 90px 28px;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -.03em;
  margin: 0 0 12px;
}
.cta-band p { color: var(--ink-soft); margin: 0 0 28px; }

.page-hero {
  padding: 120px 28px 90px;
  background: linear-gradient(145deg, #fbfcf7 15%, #eff6e7 100%);
}
.page-intro { max-width: 900px; margin: 0 auto; text-align: center; }
.page-intro h1 { font-size: clamp(60px, 8vw, 108px); }
.page-intro p { font-size: 20px; color: var(--ink-soft); max-width: 680px; margin: 20px auto 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  min-height: 300px;
}
.feature h2 { font-size: 44px; }
.feature p { color: var(--ink-soft); max-width: 480px; }

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.menu-group {
  background: var(--cream);
  padding: 42px;
}
.menu-group h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item span:last-child { color: var(--ink-soft); text-align: right; }

.about-quote {
  padding: 110px 28px;
  text-align: center;
  background: var(--spring);
}
.about-quote blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
}
.contact-card h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 18px;
}
.contact-card p { color: var(--ink-soft); }
.contact-grid > * { min-width: 0; }
.contact-map {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
  background: var(--cream);
}
.contact-list { display: grid; gap: 12px; margin-top: 24px; }
.contact-row { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-row h3 { margin: 0 0 10px; font-size: 18px; }
.contact-row address { font-style: normal; }
.contact-row p { margin: 8px 0 0; }
.contact-row a { text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.opening-hours { width: 100%; border-collapse: collapse; font-size: 15px; }
.opening-hours th, .opening-hours td { padding: 15px 0; border-bottom: 1px solid var(--line); }
.opening-hours th { text-align: left; padding-right: 12px; }
.opening-hours td { text-align: right; }
.contact-card .opening-status { margin: 0 0 20px; color: var(--ink); font-size: 14px; font-weight: 700; }
.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  color: var(--ink);
}
.field textarea { min-height: 160px; resize: vertical; }

.site-footer {
  padding: 40px 28px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .header-inner { min-height: 64px; }
  .nav { 
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 14px 28px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .mobile-toggle {
    display: inline-flex;
    background: transparent;
    border: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
  }
  .hero { min-height: 590px; }
  .hero::after { background: linear-gradient(90deg, rgba(16,37,32,.74), rgba(16,37,32,.24)); }
  .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .media-card, .split.reverse .copy { order: initial; }
  .media-card { min-height: 360px; }
  .food-grid { grid-template-columns: 1fr; }
  .menu-food-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid, .menu-list { grid-template-columns: 1fr; }
  .menu-list.drinks-menu { grid-template-columns: 1fr; }
  .drinks-image { height: auto; min-height: 0; max-height: 360px; aspect-ratio: 4/3; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .header-inner, .hero-content, .community-copy { width: auto; padding-left: 20px; padding-right: 20px; }
  .brand { font-size: 15px; }
  .menu-food-grid { grid-template-columns: 1fr; }
  .section { padding: 76px 20px; }
  .page-hero { padding: 88px 20px 66px; }
  .hero { min-height: 560px; }
  .hero h1 { font-size: 56px; }
  .hero p { font-size: 18px; }
  .copy h2 { font-size: 44px; }
  .chronicle-section { padding-top: 58px; padding-bottom: 58px; }
  .chronicle-intro { margin-bottom: 28px; }
  .chronicle-entry { grid-template-columns: 1fr; gap: 14px; padding: 22px 0; }
  .menu-group { padding: 28px 22px; }
  .contact-card { padding: 26px 22px; }
  .contact-map { height: 320px; }
}
