:root {
  color-scheme: light;
  --ink: #20201c;
  --muted: #676057;
  --paper: #fbf5e8;
  --cream: #fffaf0;
  --terracotta: #c45234;
  --terracotta-dark: #933821;
  --leaf: #577b3f;
  --mint: #dbe9c7;
  --sky: #93c8c3;
  --gold: #f0b955;
  --line: rgba(32, 32, 28, 0.14);
  --shadow: 0 24px 60px rgba(67, 46, 26, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 76px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, white);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-cta {
  font-weight: 800;
  letter-spacing: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--gold);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a,
.site-footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--terracotta);
}

.header-cta {
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 4vw clamp(3rem, 6vw, 5rem);
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--ink);
  font-weight: 900;
}

.button-primary {
  background: var(--terracotta);
  color: #fff;
}

.button-secondary {
  background: transparent;
}

.hero-visual {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.intro {
  padding: clamp(3.5rem, 7vw, 6rem) 4vw;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.intro .section-label {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 650;
}

.philosophy,
.menu-section,
.info-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 4vw;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading.compact {
  max-width: 780px;
}

.section-heading p {
  color: var(--muted);
  font-weight: 650;
}

.feature-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.info-card,
.menu-column {
  border: 2px solid var(--ink);
  background: var(--cream);
}

.feature-card,
.info-card {
  min-height: 250px;
  padding: 1.5rem;
}

.feature-number {
  display: inline-flex;
  margin-bottom: 4rem;
  color: var(--terracotta);
  font-weight: 900;
}

.feature-card p,
.info-card p,
.info-card small {
  color: var(--muted);
  font-weight: 650;
}

.menu-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-column {
  padding: clamp(1.1rem, 3vw, 2rem);
}

.accent-column {
  background: var(--mint);
}

.small-column {
  background: #f7dfb5;
}

.menu-title-row,
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.menu-title-row {
  align-items: end;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}

.menu-title-row span,
.menu-note {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item h4 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-item strong {
  white-space: nowrap;
}

.menu-note {
  margin-top: 1rem;
}

.events {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
}

.events-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 650;
}

.event-visual {
  border: 2px solid var(--ink);
  background: var(--sky);
}

.info-card a {
  font-weight: 900;
  color: var(--terracotta-dark);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 4vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}

.site-footer p {
  margin: 0.4rem 0 0;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-open .nav {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 1rem 4vw;
    border-bottom: 2px solid var(--ink);
    background: var(--cream);
  }

  .site-header.is-open .nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .intro-grid,
  .events,
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

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

  .feature-card,
  .info-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 2rem;
  }
}

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

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .menu-title-row,
  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item strong {
    justify-self: start;
  }
}
