:root {
  --ink: #17211a;
  --muted: #5f6a61;
  --paper: #f7f4ed;
  --surface: #fffaf0;
  --line: rgba(23, 33, 26, .14);
  --green: #1f5c43;
  --red: #8f2635;
  --gold: #d19b46;
  --shadow: 0 22px 70px rgba(23, 33, 26, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

.site-header[data-elevated="true"],
.site-header.menu-active {
  color: var(--ink);
  background: rgba(247, 244, 237, .94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.desktop-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Libre Baskerville", serif;
}

.desktop-nav {
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  opacity: .86;
}

.desktop-nav a:hover {
  opacity: 1;
}

.header-actions {
  gap: 10px;
}

.lang-toggle,
.menu-toggle,
.header-cta {
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  border-radius: 8px;
}

.lang-toggle {
  min-width: 44px;
  height: 38px;
  cursor: pointer;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 0 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  z-index: 45;
  inset: 72px 12px auto;
  display: none;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-panel a {
  display: block;
  padding: 16px 8px;
  font-size: 18px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 56px;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: var(--ink);
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 33, 26, .92) 0%, rgba(23, 33, 26, .62) 48%, rgba(23, 33, 26, .16) 100%),
    linear-gradient(0deg, rgba(23, 33, 26, .82), rgba(23, 33, 26, .08) 44%);
}

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

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.reservation h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(44px, 7vw, 96px);
}

.lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
}

.hero-actions,
.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-action {
  background: var(--red);
  color: #fff;
}

.secondary-action {
  color: currentColor;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, .08);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin-top: 46px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
}

.hero-panel span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel a,
.hero-panel strong {
  font-size: 17px;
  font-weight: 900;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.quick-strip div {
  padding: 24px clamp(18px, 4vw, 44px);
  border-right: 1px solid rgba(255,255,255,.14);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 6px;
  font-size: 16px;
}

.quick-strip span {
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.intro,
.menu-section,
.gallery-section,
.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 112px;
}

.section-copy h2,
.section-heading h2,
.reservation h2,
.contact-copy h2 {
  font-size: clamp(32px, 4.4vw, 58px);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.reservation p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.feature-grid article,
.menu-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 1.02;
  object-fit: cover;
}

.feature-grid h3,
.feature-grid p {
  margin: 0;
  padding: 0 18px;
}

.feature-grid h3 {
  padding-top: 18px;
  font-size: 18px;
}

.feature-grid p {
  padding-top: 9px;
  padding-bottom: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.menu-section {
  background: #fff;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 30px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.menu-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-weight: 850;
}

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

.menu-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.menu-list article {
  min-height: 140px;
  padding: 18px;
  display: grid;
  align-content: space-between;
}

.menu-list article[hidden] {
  display: none;
}

.menu-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-list h3 {
  margin: 12px 0 22px;
  font-size: 20px;
}

.menu-list strong {
  font-size: 18px;
}

.reservation {
  display: grid;
  grid-template-columns: minmax(0, .95fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(52px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: var(--green);
  color: #fff;
}

.reservation p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
}

.reservation .secondary-action {
  background: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 12px;
}

.gallery-grid button {
  min-height: 260px;
  border: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
  cursor: zoom-in;
}

.gallery-grid button:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .65fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.contact-copy p {
  color: rgba(255,255,255,.74);
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list strong {
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px) 92px;
  color: rgba(255,255,255,.7);
  background: #111812;
  font-size: 13px;
}

.site-footer p {
  max-width: 760px;
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  z-index: 60;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.sticky-cta a {
  display: grid;
  min-height: 50px;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  border-right: 1px solid rgba(255,255,255,.2);
}

.sticky-cta a:nth-child(2) {
  background: var(--green);
}

.sticky-cta a:last-child {
  border-right: 0;
  background: var(--ink);
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.84);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 8px;
  color: #fff;
  background: rgba(0,0,0,.2);
  cursor: pointer;
  font-size: 28px;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel.open {
    display: block;
  }

  .intro,
  .contact-section,
  .reservation {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .feature-grid,
  .menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .site-header {
    height: 66px;
    padding-inline: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-panel {
    top: 66px;
  }

  .hero {
    min-height: 92vh;
    padding: 104px 18px 34px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    display: none;
  }

  .hero-panel,
  .quick-strip,
  .feature-grid,
  .menu-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-top: 30px;
  }

  .hero-panel div {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .intro,
  .menu-section,
  .gallery-section,
  .contact-section {
    padding: 58px 18px;
  }

  .reservation {
    padding: 54px 18px;
  }

  .reservation-actions {
    display: grid;
  }

  .gallery-grid button,
  .gallery-grid button:first-child {
    min-height: 230px;
    grid-row: auto;
  }

  .site-footer {
    display: block;
    padding-bottom: 82px;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 14px;
  }

  .sticky-cta {
    display: grid;
  }
}
