:root {
  --ink: #1c1914;
  --ink-soft: #4a4338;
  --cream: #f6efe4;
  --paper: #fffaf3;
  --leaf: #1f4d3a;
  --leaf-deep: #16382b;
  --gold: #c58a2a;
  --gold-bright: #e0a84a;
  --chili: #b23a2a;
  --line: rgba(28, 25, 20, 0.12);
  --shadow: 0 18px 40px rgba(22, 56, 43, 0.12);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
  background: rgba(246, 239, 228, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--gold);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}

nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--leaf);
}

.nav-cta {
  background: var(--leaf);
  color: var(--paper) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.ribbon {
  background: var(--leaf-deep);
  color: var(--paper);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.ribbon strong {
  color: var(--gold-bright);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(100vh - 120px);
  align-items: stretch;
}

.hero-copy {
  padding: 8vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

.hero h1,
.page-hero h1,
section h2 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
}

.btn-primary {
  background: var(--chili);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--leaf);
  border: 1.5px solid var(--leaf);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(28, 25, 20, 0.72);
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.section {
  padding: 5.5rem 6vw;
}

.section-narrow {
  max-width: 720px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.kicker {
  color: var(--chili);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.story p + p {
  margin-top: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.card {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.1rem 1.15rem 1.3rem;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.card p,
.menu-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.page-hero {
  padding: 4.5rem 6vw 2rem;
}

.page-hero p {
  max-width: 40rem;
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

.menu-note {
  margin: 0 6vw 1rem;
  padding: 0.9rem 1.1rem;
  background: #efe3c8;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
  padding: 1.5rem 6vw 5rem;
}

.menu-group {
  background: var(--paper);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.menu-group h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

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

.menu-item h3 {
  font-size: 1.02rem;
}

.price {
  font-weight: 650;
  color: var(--leaf);
}

.veg,
.gf {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--leaf);
  border: 1px solid var(--leaf);
  padding: 0.05rem 0.3rem;
  border-radius: 4px;
  vertical-align: middle;
}

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

.highlights .card img {
  height: 160px;
}

.contact-panel {
  background: var(--leaf-deep);
  color: var(--paper);
  border-radius: 24px;
  padding: 2rem;
}

.contact-panel a {
  color: var(--gold-bright);
}

.contact-panel p + p {
  margin-top: 0.7rem;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 24px;
  filter: saturate(0.9);
}

footer {
  background: var(--ink);
  color: #ddd4c6;
  padding: 2.2rem 6vw;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

footer a {
  color: var(--gold-bright);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .cards,
  .menu-grid,
  .highlights {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 280px;
    order: -1;
  }
}
