:root {
  --paper: #fbf7ed;
  --paper-soft: #f2eadb;
  --ink: #19221d;
  --muted: #687066;
  --line: rgba(25, 34, 29, 0.16);
  --green: #2f5d45;
  --green-dark: #173327;
  --jam: #b84a35;
  --butter: #f3cf73;
  --white: #fffdf7;
  --shadow: 0 24px 80px rgba(41, 31, 19, 0.18);
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Libre Baskerville", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 237, 0.9);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-weight: 700;
  font-size: 14px;
}

.brand small {
  margin-top: 2px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.site-header nav {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.site-header nav a,
.header-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-action {
  justify-self: end;
}

.site-header nav a:hover,
.header-action:hover {
  transform: translateY(-2px);
  background: currentColor;
  color: var(--paper);
}

.site-header.is-scrolled nav a:hover,
.site-header.is-scrolled .header-action:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 18, 0.76), rgba(15, 23, 18, 0.18) 58%, rgba(15, 23, 18, 0.4)),
    linear-gradient(0deg, rgba(15, 23, 18, 0.84), transparent 46%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 clamp(20px, 6vw, 76px) clamp(112px, 11vh, 140px);
  color: var(--white);
}

.quiet-label {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.plate-copy h2,
.section-heading h2,
.sweets h2,
.story-copy h2,
.visit h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(52px, 7.2vw, 92px);
}

.hero-copy p:not(.quiet-label) {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(16px, 2.2vw, 20px);
}

.hero-actions,
.visit-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button,
.text-link,
.today-card,
.plate-photo button,
.story-grid button span,
.sweets button {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--jam);
  border-color: var(--jam);
  color: var(--white);
}

.button.ghost {
  background: rgba(255, 253, 247, 0.1);
  border-color: currentColor;
}

.button:hover,
.text-link:hover,
.today-card:hover,
.plate-photo button:hover,
.story-grid button:hover span,
.sweets button:hover {
  transform: translateY(-2px);
}

.today-card {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: 28px;
  z-index: 3;
  width: min(340px, calc(100vw - 36px));
  padding: 18px;
  text-align: left;
  border: 1px solid rgba(255, 253, 247, 0.34);
  border-radius: 18px;
  color: var(--white);
  background: rgba(18, 28, 22, 0.48);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.today-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.today-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}

.intro,
.menu-section,
.visit-story,
.visit {
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 76px);
}

.intro-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-line span {
  padding: 18px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-line span + span {
  border-left: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: end;
  margin-top: clamp(42px, 8vw, 90px);
}

.intro h2,
.section-heading h2,
.story-copy h2 {
  font-size: clamp(38px, 6vw, 82px);
}

.intro p,
.section-heading p,
.plate-copy p,
.sweets-copy p,
.story-copy p,
.visit-note {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}

.plate-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(22px, 5vw, 66px);
  padding: 0 clamp(18px, 5vw, 76px) clamp(74px, 10vw, 132px);
  align-items: center;
}

.plate-photo {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.plate-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.plate-photo button {
  position: absolute;
  right: 16px;
  bottom: 16px;
  min-height: 44px;
  border: 1px solid rgba(255, 253, 247, 0.5);
  border-radius: 999px;
  color: var(--white);
  background: rgba(25, 34, 29, 0.52);
  backdrop-filter: blur(12px);
  padding: 0 16px;
  cursor: pointer;
}

.plate-copy {
  padding: clamp(16px, 4vw, 44px) 0;
}

.plate-copy h2,
.sweets h2,
.visit h2 {
  font-size: clamp(34px, 4.8vw, 66px);
}

.plate-copy p {
  margin-top: 22px;
}

.text-link,
.sweets button {
  display: inline-flex;
  margin-top: 26px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
}

.section-heading {
  max-width: 820px;
}

.section-heading p {
  margin-top: 18px;
  max-width: 620px;
}

.menu-shell {
  display: grid;
  grid-template-columns: 190px minmax(260px, 0.72fr) minmax(340px, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.menu-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-tabs button {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.menu-tabs button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.menu-detail {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--green-dark);
  color: var(--white);
}

.menu-detail span {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 253, 247, 0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-detail h3 {
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.05;
}

.menu-detail p {
  margin: 18px 0 28px;
  color: rgba(255, 253, 247, 0.76);
}

.menu-detail a {
  color: var(--butter);
  font-weight: 700;
}

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

.menu-row {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.menu-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-row strong {
  font-size: clamp(16px, 1.8vw, 20px);
}

.menu-row i {
  font-style: normal;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-row.is-selected strong,
.menu-row:hover strong {
  color: var(--jam);
}

.menu-row.is-hidden {
  display: none;
}

.sweets {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: end;
  padding: clamp(28px, 4vw, 58px) clamp(18px, 5vw, 76px);
  background: var(--paper-soft);
}

.sweets img {
  height: min(64vw, 620px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.sweets-copy {
  padding: 0 0 22px;
}

.sweets-copy p:not(.quiet-label) {
  margin-top: 20px;
}

.visit-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: start;
}

.story-copy {
  position: sticky;
  top: 110px;
}

.story-copy p {
  margin-top: 22px;
}

.story-grid {
  display: grid;
  gap: 18px;
}

.story-grid button {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: var(--green-dark);
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.story-grid img {
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.story-grid button:hover img {
  transform: scale(1.04);
}

.story-grid span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(25, 34, 29, 0.58);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.visit {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 0.65fr);
  gap: 24px;
  align-items: end;
  padding-bottom: max(120px, env(safe-area-inset-bottom));
  background: var(--green-dark);
  color: var(--white);
}

.visit address {
  margin-top: 20px;
  color: rgba(255, 253, 247, 0.78);
  font-style: normal;
  font-size: clamp(18px, 2vw, 23px);
}

.visit-actions {
  justify-content: flex-end;
}

.visit .button.ghost {
  border-color: rgba(255, 253, 247, 0.5);
}

.visit-note {
  grid-column: 1 / -1;
  max-width: 700px;
  color: rgba(255, 253, 247, 0.66);
}

.mobile-dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 55;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  min-height: 64px;
  overflow: hidden;
  border: 1px solid rgba(25, 34, 29, 0.15);
  border-radius: 20px;
  background: rgba(251, 247, 237, 0.92);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(20, 25, 20, 0.22);
  backdrop-filter: blur(18px);
}

.mobile-dock a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(25, 34, 29, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-dock a:last-child {
  border-right: 0;
}

.mobile-dock .dock-primary {
  background: var(--jam);
  color: var(--white);
}

dialog {
  width: min(560px, calc(100vw - 32px));
  border: 0;
  border-radius: 24px;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(10, 16, 12, 0.62);
  backdrop-filter: blur(8px);
}

.hours-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 48px);
}

.hours-dialog p {
  color: var(--muted);
}

.dialog-close {
  float: right;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0 14px;
  cursor: pointer;
}

.photo-dialog {
  width: min(1080px, calc(100vw - 28px));
  padding: 10px;
  background: var(--ink);
}

.photo-dialog img {
  max-height: 82dvh;
  object-fit: contain;
  border-radius: 18px;
}

.photo-dialog .dialog-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  background: rgba(251, 247, 237, 0.9);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

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

  .site-header nav {
    display: none;
  }

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

  .today-card {
    left: 18px;
    right: 18px;
    bottom: 92px;
  }

  .intro-grid,
  .plate-feature,
  .menu-shell,
  .sweets,
  .visit-story,
  .visit {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .menu-tabs button {
    min-width: 118px;
  }

  .story-copy {
    position: static;
  }

  .visit-actions {
    justify-content: flex-start;
  }

  .mobile-dock {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand span {
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 70px);
    line-height: 1;
  }

  .hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy p:not(.quiet-label) {
    font-size: 16px;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
  }

  .intro,
  .menu-section,
  .visit-story,
  .visit {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-line {
    grid-template-columns: 1fr;
  }

  .intro-line span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .plate-feature,
  .sweets {
    padding-left: 18px;
    padding-right: 18px;
  }

  .plate-photo,
  .sweets img,
  .story-grid button {
    border-radius: 18px;
  }

  .menu-detail {
    min-height: 300px;
  }

  .menu-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px 0;
  }

  .menu-row span {
    grid-column: 1 / -1;
  }

  .sweets img {
    height: 78vw;
  }

  .story-grid img {
    height: 270px;
  }
}
