:root {
  color-scheme: light;
  --bg: #f4e6d8;
  --surface: #fff6ec;
  --ink: #1b1712;
  --muted: #6a5f54;
  --accent: #e2b06e;
  --line: #e6ddd0;
  --radius: 18px;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --script: "Great Vibes", "Times New Roman", serif;
  --body: "Helvetica Neue", Arial, sans-serif;
  --charcoal: #1f2326;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, #fff9f0, var(--bg));
  scrollbar-gutter: stable;
  position: relative;
}

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

header,
main,
footer {
  position: relative;
  z-index: 1;
}

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

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

a:hover,
a:focus-visible {
  color: var(--accent);
}

p {
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.signature,
.immersive-kicker {
  font-family: var(--script);
  font-size: clamp(1.2rem, 2.6vw, 2.2rem);
  color: var(--accent);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: none;
}

.container {
  width: min(1320px, 100% - 2rem);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  z-index: 10;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: rgba(251, 247, 242, 0.65);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.nav {
  display: flex;
  gap: 0.75rem 1.6rem;
  flex-wrap: wrap;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--ink);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.button.primary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 10px 26px rgba(226, 176, 110, 0.18);
}

.button.secondary {
  border-color: #d9c6af;
  color: #2f2317;
  background: #fff7ed;
  box-shadow: 0 8px 20px rgba(217, 198, 175, 0.2);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217, 198, 175, 0.28);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.55), transparent 60%);
  transform: translateX(-120%);
  transition: transform 350ms ease;
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  color: #2b1f12;
  box-shadow: 0 20px 44px rgba(226, 176, 110, 0.38);
}

.button.primary:hover::after,
.button.primary:focus-visible::after {
  transform: translateX(120%);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.hero {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background: linear-gradient(120deg, #fbf7f2, #f1e6d9);
}

.hero-immersive {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  padding: clamp(3rem, 9vw, 7rem);
  overflow: hidden;
  transform: translateY(-18px);
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 0;
}

.hero-title {
  font-family: var(--script);
  font-size: clamp(4.4rem, 12vw, 9.6rem);
  line-height: 0.85;
  color: var(--accent);
  margin: 0;
  white-space: nowrap;
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900' viewBox='0 0 900 900'%3E%3Cpath d='M-40 140 C 180 60, 360 240, 620 160 C 760 120, 860 80, 980 110' fill='none' stroke='%23e2b06e' stroke-opacity='0.22' stroke-width='3'/%3E%3Cpath d='M-60 360 C 200 260, 420 460, 700 360 C 840 310, 940 260, 1040 300' fill='none' stroke='%23e2b06e' stroke-opacity='0.18' stroke-width='2.4'/%3E%3Cpath d='M-80 620 C 220 520, 460 720, 760 610 C 900 560, 1000 520, 1120 560' fill='none' stroke='%23e2b06e' stroke-opacity='0.14' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: -120px -40px;
  background-size: 900px 900px;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}

.hero-left::after {
  content: "";
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.8rem);
  top: 50%;
  width: 1px;
  height: 160px;
  background: rgba(226, 176, 110, 0.4);
  transform: translateY(-50%);
  z-index: 0;
}

.hero-left > * {
  position: relative;
  z-index: 1;
}

.hero-subline {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.hero-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 32rem;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1.6rem;
  margin-top: 0.6rem;
}

.text-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(226, 176, 110, 0.45);
  color: var(--ink);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-right {
  position: relative;
  min-height: 100%;
}

.hero-photo {
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background-image: url("/assets/img/hero-photo.jpg");
  background-size: cover;
  background-position: center calc(50% + var(--parallax, 0px));
  position: relative;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.chef-story {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.chef-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(226, 176, 110, 0.12), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(226, 176, 110, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.chef-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 7vw, 5rem);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.chef-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid #ece2d4;
  box-shadow: 0 24px 60px rgba(21, 18, 16, 0.12);
  transform: translateY(var(--parallax, 0px));
}

.chef-right {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.chef-right img {
  width: min(520px, 100%);
  height: 260px;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid #ece2d4;
  box-shadow: 0 18px 40px rgba(21, 18, 16, 0.08);
}

.chef-right img:first-child {
  transform: translateY(-22px);
}

.chef-right img:last-child {
  transform: translateY(22px);
}

.chef-text {
  max-width: 520px;
  position: relative;
  padding-left: 1.2rem;
}

.chef-text p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.chef-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 1px;
  height: 90px;
  background: rgba(226, 176, 110, 0.45);
}

.chef-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  color: var(--ink);
  letter-spacing: 0.02em;
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  line-height: 0.98;
  position: relative;
}

.chef-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: rgba(226, 176, 110, 0.5);
  margin-top: 0.9rem;
}

.story-bleed {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #f8f4ee;
}

.story-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 16, 18, 0.82), rgba(15, 16, 18, 0.3));
  z-index: 1;
}

.bleed-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center calc(50% + var(--parallax, 0px));
  filter: saturate(1.08);
  z-index: 0;
}

.bleed-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.bleed-title {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-family: var(--display);
}

.bleed-text {
  margin: 0;
  color: rgba(248, 244, 238, 0.78);
}

.menu-block {
  padding: clamp(5rem, 12vw, 9rem) 0;
  background: linear-gradient(180deg, #fbf5ec, #f7eadc);
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 6rem);
  align-items: start;
}

.menu-left {
  display: grid;
  gap: 1.4rem;
}

.menu-script {
  font-family: var(--script);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  color: var(--accent);
  margin: 0;
}

.menu-caption {
  margin: 0;
  color: var(--muted);
  max-width: 26rem;
  font-size: 0.95rem;
}

.menu-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0;
  font-family: var(--display);
  position: relative;
}

.menu-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  background: rgba(226, 176, 110, 0.5);
  margin-top: 0.9rem;
}

[data-reveal-line] {
  position: relative;
  display: inline-block;
}

[data-reveal-line]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 1px;
  width: 0%;
  background: rgba(226, 176, 110, 0.7);
  transition: width 900ms ease;
}

[data-reveal-line].is-visible::after {
  width: 140px;
}

.menu-accordion {
  display: grid;
  gap: 1rem;
  border-top: 1px solid #ece2d4;
  padding-top: 1.4rem;
}

.menu-acc-header {
  background: #fff;
  border: 1px solid #e6ddd0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  padding: 0.8rem 1rem;
  text-align: left;
  color: #2f2317;
  cursor: pointer;
  position: relative;
}

.menu-acc-header::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
}

.menu-acc-header.is-open::after {
  content: "-";
}

.menu-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, opacity 300ms ease, transform 350ms ease;
  display: grid;
  gap: 1rem;
  opacity: 0;
  transform: translateY(8px);
}

.menu-acc-panel.is-open {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #e4d8c9;
}

.menu-item h4 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 500;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 26rem;
}

.menu-item span:last-child {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}


.menu-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-photo {
  width: min(720px, 100%);
  border: 1px solid #ece2d4;
  box-shadow: 0 28px 60px rgba(21, 18, 16, 0.14);
  overflow: hidden;
  background: #fff;
  transform: translateY(calc(-18px + var(--parallax, 0px)));
}

.menu-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.immersive-block {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url("/assets/img/immersive-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #f8f4ee;
}

.immersive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 16, 18, 0.78), rgba(15, 16, 18, 0.32));
}

.immersive-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: clamp(3rem, 10vw, 6rem) 0;
}

.immersive-kicker {
  margin: 0 0 1rem;
}

.immersive-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 1.2rem;
  font-family: var(--display);
}

.immersive-text {
  margin: 0;
  color: rgba(248, 244, 238, 0.78);
}

.immersive-content .button {
  margin-top: 1.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms ease, transform 900ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

  .hero-right {
    min-height: 50vh;
  }

  .hero-photo {
    min-height: 50vh;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    white-space: normal;
    font-size: clamp(3.4rem, 12vw, 6rem);
  }

  .chef-grid {
    grid-template-columns: 1fr;
  }

  .chef-photo img {
    min-height: 320px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}
