:root {
  --cream: #f3efe5;
  --cream-deep: #e5ddce;
  --ink: #12251b;
  --ink-soft: #435248;
  --forest: #173126;
  --forest-light: #2f4f3f;
  --sun: #c99b5b;
  --white: #fffdf8;
  --line: rgba(18, 37, 27, .18);
  --sans: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

.kitchen-page {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.kitchen-page img { display: block; width: 100%; }
.kitchen-page a { color: inherit; }
.kitchen-page h1,
.kitchen-page h2,
.kitchen-page h3,
.kitchen-page p,
.kitchen-page figure { margin: 0; }
.kitchen-page h1,
.kitchen-page h2 { text-wrap: balance; }
.kitchen-page em { font-family: var(--serif); font-weight: 500; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 3px;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left center;
}

.kitchen-hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}
.hero-media,
.hero-shade { position: absolute; inset: 0; }
.hero-media { z-index: -3; overflow: hidden; background: var(--forest); }
.hero-media img {
  width: 100%;
  height: calc(100% + 160px);
  margin-top: -80px;
  object-fit: cover;
  object-position: 52% center;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05);
  will-change: transform;
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 20, 14, .34), rgba(8, 20, 14, .1) 38%, rgba(8, 20, 14, .64)),
    linear-gradient(90deg, rgba(8, 20, 14, .3), transparent 52%);
}
.hero-copy {
  width: min(100% - 44px, 1320px);
  text-align: center;
  animation: hero-in 1s .1s both cubic-bezier(.2, .75, .2, 1);
}
.hero-kicker,
.section-kicker {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-kicker { margin-bottom: 22px !important; }
.hero-copy h1 {
  font-size: clamp(4rem, 11.5vw, 10rem);
  line-height: .7;
  letter-spacing: -.075em;
  font-weight: 600;
  text-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}
.hero-copy h1 > span { display: inline-block; white-space: nowrap; }
.hero-copy h1 em {
  display: inline-block;
  margin-top: .2em;
  font-size: .68em;
  letter-spacing: -.045em;
}
.hero-subtitle {
  margin-top: 42px !important;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.55rem);
  line-height: 1;
}
.hero-subtitle span {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  left: clamp(22px, 5vw, 76px);
  bottom: 38px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-scroll i { display: block; width: 68px; height: 1px; background: currentColor; }

.current-event {
  position: relative;
  z-index: 2;
  min-height: 82svh;
  padding: 130px max(7vw, 28px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}
.event-content { position: relative; z-index: 2; width: min(100%, 1040px); text-align: center; }
.event-content .section-kicker { color: var(--sun); }
.event-content h2 {
  margin: 22px auto 26px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.045em;
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}
.kitchen-button {
  width: fit-content;
  min-height: 52px;
  margin-top: 34px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.kitchen-button:hover,
.kitchen-button:focus-visible { transform: translateY(-3px); }
.kitchen-button.light:hover { background: var(--white); color: var(--forest); }
.kitchen-button.dark { color: var(--white); }
.kitchen-button.dark:hover { background: var(--white); color: var(--ink); }

.story-copy,
.mediterran-heading,
.together-heading {
  min-height: 100svh;
  padding: 110px max(8vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-copy { background: var(--cream); }
.mediterran-heading { background: var(--white); }
.together-heading { color: var(--white); background: #0e2319; }
.story-copy .section-kicker,
.mediterran-heading .section-kicker,
.founders-copy .section-kicker,
.chef-copy .section-kicker { color: #617665; }
.together-heading .section-kicker { color: var(--sun); }
.story-copy h2,
.mediterran-heading h2,
.together-heading h2,
.founders-copy h2,
.chef-copy h2 {
  max-width: 1100px;
  margin: 18px 0 28px;
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.06em;
}
.story-copy p:last-child,
.mediterran-heading p:last-child,
.founders-copy p,
.chef-copy > p {
  max-width: 630px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}
.mediterran-heading p:last-child { margin-left: min(38vw, 480px); }

.opening-story,
.mediterran-section,
.together-section,
.moments-section { position: relative; }

.story-photo,
.food-shot,
.together-photo,
.moment {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #0b1811;
  box-shadow: 0 -24px 60px rgba(7, 18, 11, .2);
}
.story-photo-primary { z-index: 1; }
.story-photo-secondary { z-index: 2; }
.food-shot-a { z-index: 1; }
.food-shot-b { z-index: 2; }
.food-shot-c { z-index: 3; }
.food-shot-d { z-index: 4; }
.food-shot-e { z-index: 5; }
.together-photo-one { z-index: 1; }
.together-photo-two { z-index: 2; }
.moment-day { z-index: 1; }
.moment-night { z-index: 2; }
.moment-music { z-index: 3; }

.parallax-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.parallax-frame img,
.moment img {
  width: 100%;
  height: calc(100% + 150px);
  margin-top: -75px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.045);
  will-change: transform;
}
.story-photo-primary img { object-position: center 56%; }
.story-photo-secondary img { object-position: center; }
.food-shot-a img,
.food-shot-b img,
.food-shot-c img,
.food-shot-d img,
.food-shot-e img,
.together-photo-one img,
.together-photo-two img { object-position: center; }

.moments-section { background: #0e2319; }
.moment::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(8, 20, 14, .68));
}
.moment span {
  position: absolute;
  left: max(6vw, 24px);
  bottom: max(6vh, 32px);
  z-index: 2;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9rem);
  font-style: italic;
  line-height: .8;
}

.pause-section {
  position: relative;
  z-index: 4;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0b1811;
}
.pause-photo { position: absolute; inset: 0; }
.pause-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 14, .42);
}
.pause-photo img {
  width: 100%;
  height: calc(100% + 150px);
  margin-top: -75px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.045);
}
.pause-section > p {
  position: relative;
  z-index: 2;
  padding: 24px;
  text-align: center;
  font-size: clamp(3.6rem, 9vw, 8.5rem);
  font-weight: 600;
  line-height: .84;
  letter-spacing: -.06em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}

.people-section {
  position: relative;
  z-index: 5;
  padding: clamp(80px, 10vw, 160px) max(5vw, 24px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 3vw, 44px);
  background: var(--cream-deep);
}
.founders-section,
.chef-section {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(18, 37, 27, .12);
}
.founders-photo,
.chef-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #d9ddcf;
}
.founders-photo img,
.chef-photo img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
}
.founders-copy,
.chef-copy {
  width: 100%;
  padding: clamp(30px, 4vw, 58px);
}
.founders-copy .section-kicker,
.chef-copy .section-kicker { color: #617665; }
.founders-copy h2,
.chef-copy h2 { font-size: clamp(2.8rem, 4.8vw, 5rem); }
.founders-copy h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 500;
}
.founders-copy p,
.chef-copy > p { color: var(--ink-soft); }
.chef-lead {
  margin-bottom: 26px !important;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem) !important;
  font-style: italic;
  line-height: 1.15;
}
.chef-story {
  max-width: 650px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chef-story summary {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.chef-story summary::-webkit-details-marker { display: none; }
.chef-story summary span { font-size: 1.5rem; font-weight: 400; transition: transform .25s ease; }
.chef-story[open] summary span { transform: rotate(45deg); }
.chef-story > div { padding: 4px 0 24px; color: var(--ink-soft); }
.chef-story p + p { margin-top: 16px; }
.people-section .kitchen-button.dark { color: var(--ink); }
.people-section .kitchen-button.dark:hover { color: var(--white); background: var(--ink); }

.closing-section {
  position: relative;
  z-index: 6;
  min-height: 92svh;
  padding: 130px max(5vw, 24px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background: var(--forest-light);
}
.closing-inner { width: min(100%, 1120px); }
.closing-inner .section-kicker { color: var(--sun); }
.closing-inner h2 {
  margin: 22px auto 12px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.045em;
}
.closing-inner > p:not(.section-kicker) {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
}
.social-links {
  margin-top: 62px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.social-links a {
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .38);
  text-decoration: none;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.social-links a:hover { background: var(--white); color: var(--forest); }

.kitchen-footer {
  position: relative;
  z-index: 7;
  padding: 46px clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .7);
  background: #09170f;
  font-size: .7rem;
}
.kitchen-footer > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.kitchen-footer > div:last-child { justify-content: flex-end; }
.kitchen-footer a { text-underline-offset: 4px; }
.footer-brand { color: var(--white) !important; text-decoration: none; font-size: .9rem; font-weight: 700; }
.footer-brand span { font-family: var(--serif); font-size: 1.2rem; font-style: italic; }

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

@keyframes hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-copy h1 { font-size: clamp(3.8rem, 17vw, 7rem); line-height: .76; }
  .mediterran-heading p:last-child { margin-left: 0; }
  .people-section { grid-template-columns: 1fr; }
  .founders-section,
  .chef-section { width: min(100%, 720px); margin-inline: auto; }
  .founders-copy,
  .chef-copy { width: 100%; }
  .kitchen-footer { grid-template-columns: 1fr; text-align: center; }
  .kitchen-footer > div,
  .kitchen-footer > div:last-child { justify-content: center; }
}

@media (max-width: 640px) {
  .hero-copy { width: calc(100% - 24px); }
  .hero-copy h1 {
    font-size: clamp(2.9rem, 14.6vw, 4.4rem);
    line-height: .8;
    letter-spacing: -.08em;
  }
  .hero-copy h1 em { margin-top: .25em; font-size: .78em; }
  .hero-kicker { margin-bottom: 18px !important; font-size: .66rem; letter-spacing: .14em; }
  .hero-subtitle {
    width: min(100%, 350px);
    margin: 28px auto 0 !important;
    font-size: clamp(1.2rem, 5.6vw, 1.5rem);
    line-height: 1.06;
  }
  .hero-subtitle span { display: inline-block; margin-top: 8px; font-size: .6rem; }
  .hero-scroll { left: 18px; bottom: 24px; }
  .current-event { min-height: auto; padding: 86px 18px 92px; }
  .event-content h2 { font-size: clamp(2.85rem, 12.5vw, 4.3rem); line-height: .9; }
  .event-meta { flex-direction: column; align-items: center; gap: 3px; }
  .event-meta > span[aria-hidden="true"] { display: none; }
  .kitchen-button { width: 100%; max-width: 390px; gap: 14px; padding-inline: 12px; font-size: .68rem; }
  .story-copy,
  .mediterran-heading,
  .together-heading { min-height: auto; padding: 68px 20px 74px; }
  .story-copy h2,
  .mediterran-heading h2,
  .together-heading h2,
  .founders-copy h2,
  .chef-copy h2 { font-size: clamp(3.15rem, 15vw, 5.2rem); }
  .story-photo,
  .food-shot,
  .together-photo,
  .moment { height: 100svh; }
  .story-photo-primary img { object-position: 42% center; }
  .story-photo-secondary img { object-position: 58% center; }
  .food-shot-a img { object-position: 48% center; }
  .food-shot-b img { object-position: center; }
  .food-shot-c img { object-position: 44% center; }
  .food-shot-d img { object-position: 52% center; }
  .food-shot-e img { object-position: 62% center; }
  .together-photo-one img { object-position: 58% center; }
  .together-photo-two img { object-position: 48% center; }
  .moment span { font-size: clamp(4rem, 20vw, 6.5rem); }
  .pause-section > p { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  .people-section { padding: 72px 14px; gap: 24px; }
  .founders-copy,
  .chef-copy { padding: 30px 22px 34px; }
  .chef-story > div { font-size: .94rem; }
  .closing-section { min-height: 92svh; padding: 100px 20px; }
  .social-links { flex-direction: column; }
  .social-links a { width: 100%; }
  .kitchen-footer { padding: 38px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}
