:root {
  --bg: #f8f2e8;
  --bg-soft: #fffaf4;
  --bg-panel: #f1e5d6;
  --panel-white: rgba(255, 252, 247, 0.88);
  --ink: #1f1a16;
  --muted: #6c5d52;
  --muted-soft: #8b7a6d;
  --line: rgba(31, 26, 22, 0.1);
  --line-strong: rgba(31, 26, 22, 0.18);
  --accent: #cc7142;
  --accent-soft: #f3dac4;
  --accent-deep: #274338;
  --shadow-lg: 0 28px 72px rgba(74, 56, 40, 0.14);
  --shadow-md: 0 14px 34px rgba(74, 56, 40, 0.1);
  --radius-2xl: 34px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shell: 1260px;
  --gallery-row-height-desktop: 220px;
  --gallery-row-height-tablet: 200px;
  --gallery-row-height-mobile: 180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(243, 218, 196, 0.66), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(204, 113, 66, 0.14), transparent 16%),
    linear-gradient(180deg, #fffaf4 0%, #f8f2e8 36%, #fefaf5 100%);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

.page-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.58;
}

.page-orb-one {
  top: 8%;
  left: -120px;
  width: 260px;
  height: 260px;
  background: rgba(243, 218, 196, 0.72);
}

.page-orb-two {
  right: -140px;
  top: 18%;
  width: 320px;
  height: 320px;
  background: rgba(204, 113, 66, 0.12);
}

::selection {
  background: var(--accent);
  color: #fffaf4;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

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

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.84);
  border-bottom: 1px solid rgba(31, 26, 22, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.8);
  font-family: "Syne", "Arial Black", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.84);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.9);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero,
.section {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 90px 0 54px;
}

.hero-layout,
.chef-grid,
.booking-shell {
  display: grid;
  gap: 28px;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
}

.eyebrow,
.strip-kicker,
.card-index {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.hero-card h2,
.chef-copy h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Syne", "Arial Black", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 8vw, 7rem);
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-text,
.section-heading p,
.experience-card p,
.benefit-card p,
.chef-copy p,
.strip-card p,
.support-banner p,
.hero-card p,
.footer-note,
.footer-inner p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fffaf4;
  background: linear-gradient(135deg, #244136 0%, #1f3028 100%);
  box-shadow: var(--shadow-md);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 252, 247, 0.7);
  border-color: var(--line-strong);
}

.button-block {
  width: 100%;
}

.hero-proof,
.card-list,
.support-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-proof li,
.card-list li,
.support-list li {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.72);
  font-size: 0.95rem;
}

.hero-card,
.strip-card,
.experience-card,
.benefit-card,
.chef-photo-card,
.gallery-card,
.booking-form,
.request-summary,
.support-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel-white);
  box-shadow: var(--shadow-md);
}

.hero-card {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 720px;
}

.hero-stage {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 22, 0.12);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

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

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.06) 0%, rgba(8, 7, 6, 0.12) 26%, rgba(8, 7, 6, 0.66) 100%);
}

.hero-stage-strap {
  position: absolute;
  top: 26px;
  left: 26px;
  margin: 0;
  padding: 10px 14px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 244, 0.22);
  border-radius: 999px;
  background: rgba(15, 12, 10, 0.34);
  color: #fffaf4;
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-stage-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 460px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 250, 244, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(17, 14, 11, 0.52);
  backdrop-filter: blur(8px);
}

.hero-stage-note .eyebrow,
.hero-stage-note p {
  color: #fff4ea;
}

.hero-stage-note p:last-child {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.7;
}

.hero-visual .hero-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(100%, 420px);
  z-index: 3;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(10px);
}

.hero-card-copy,
.hero-form,
.booking-form {
  display: grid;
  gap: 16px;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.panel-header > div {
  display: grid;
  gap: 8px;
}

.panel-toggle {
  min-height: 46px;
  padding: 0 18px;
  flex: 0 0 auto;
}

.hero-form label,
.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-form input,
.hero-form select,
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  padding: 15px 16px;
}

.booking-form textarea {
  resize: vertical;
  min-height: 160px;
}

.hero-form-note,
.form-status {
  margin: 0;
  color: var(--muted-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.booking-form[data-state="submitting"] {
  opacity: 0.96;
}

.section {
  padding: 74px 0;
}

.strip-section {
  padding-top: 0;
}

.strip-grid,
.benefit-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.strip-grid,
.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strip-card,
.experience-card,
.benefit-card {
  padding: 24px;
}

.strip-card,
.experience-card {
  display: grid;
  gap: 14px;
}

.experience-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.experience-switcher {
  display: grid;
  gap: 12px;
}

.experience-trigger,
.experience-spotlight {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel-white);
  box-shadow: var(--shadow-md);
}

.experience-trigger {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 20px 22px;
  text-align: left;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.experience-trigger strong,
.experience-panel h3 {
  font-size: 1.22rem;
  line-height: 1.2;
}

.experience-trigger small {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.experience-trigger:hover,
.experience-trigger:focus-visible,
.experience-trigger[data-state="selected"] {
  transform: translateY(-1px);
  border-color: rgba(39, 67, 56, 0.22);
  box-shadow: var(--shadow-lg);
}

.experience-trigger[data-state="selected"] {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(243, 218, 196, 0.72));
}

.experience-spotlight {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.experience-media {
  margin: 0;
  min-height: 100%;
}

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

.experience-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
}

.experience-panel h3 {
  margin: 0;
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading h2,
.chef-copy h2,
.booking-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

.experience-card h3,
.benefit-card h3,
.support-banner h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

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

.support-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  margin-top: 22px;
  padding: 26px 28px;
}

.chef-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
}

.chef-copy {
  display: grid;
  gap: 18px;
}

.chef-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: end;
}

.chef-photo-card {
  overflow: hidden;
}

.chef-photo-large {
  min-height: 520px;
}

.chef-photo-large img,
.chef-photo-small img {
  height: 100%;
  object-fit: cover;
}

.chef-photo-small {
  min-height: 260px;
}

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

.gallery-card {
  display: flex;
  min-height: 0;
  overflow: hidden;
}

.gallery-card img {
  flex: 1 1 auto;
  height: 100%;
  object-fit: cover;
}

.gallery-grid-rich {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: var(--gallery-row-height-desktop);
  align-items: stretch;
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card-wide {
  grid-column: span 2;
}

.booking-shell {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.92fr);
  align-items: start;
}

.booking-copy,
.request-summary {
  padding: 28px;
}

.booking-panel-cluster {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.booking-shell[data-panel-state="closed"] {
  grid-template-columns: minmax(0, 1fr);
}

.booking-form {
  padding: 28px;
}

.field-grid {
  display: grid;
  gap: 14px;
}

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

.request-summary {
  display: grid;
  gap: 18px;
}

.summary-card {
  display: grid;
  gap: 14px;
}

.summary-row {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.summary-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-row span {
  color: var(--muted-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-row strong {
  font-size: 1rem;
  line-height: 1.55;
}

.site-footer {
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  font-family: "Syne", "Arial Black", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner p {
  margin-top: 10px;
}

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

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

@media (max-width: 1120px) {
  .hero-layout,
  .strip-grid,
  .benefit-grid,
  .support-banner,
  .chef-grid,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .experience-shell,
  .experience-spotlight,
  .chef-visual,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-visual .hero-card {
    position: static;
    width: 100%;
    margin-top: -100px;
    justify-self: center;
  }

  .booking-panel-cluster {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    display: none;
    min-width: 220px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    padding: 14px;
  }

  .site-nav[data-state="open"] {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .field-grid-two,
  .experience-shell,
  .experience-spotlight,
  .chef-visual,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid-rich {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: var(--gallery-row-height-tablet);
  }

  .gallery-card-tall,
  .gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-stage {
    min-height: 540px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 68px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-proof,
  .card-list,
  .support-list {
    flex-direction: column;
  }

  .hero-card,
  .strip-card,
  .benefit-card,
  .booking-form,
  .request-summary,
  .support-banner,
  .booking-copy {
    padding: 22px;
  }

  .experience-panel,
  .experience-trigger {
    padding: 22px;
  }

  .panel-header {
    flex-direction: column;
  }

  .panel-toggle {
    width: 100%;
  }

  .chef-photo-large {
    min-height: 420px;
  }

  .gallery-grid-rich {
    grid-template-columns: 1fr;
    grid-auto-rows: var(--gallery-row-height-mobile);
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
    overflow: visible;
    border: 0;
    box-shadow: none;
  }

  .hero-stage::after {
    display: none;
  }

  .hero-stage img {
    border: 1px solid rgba(31, 26, 22, 0.12);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
  }

  .hero-stage-strap {
    position: static;
    width: fit-content;
    padding: 10px 14px;
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 252, 247, 0.84);
  }

  .hero-stage-note {
    position: static;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-stage-note .eyebrow,
  .hero-stage-note p {
    color: var(--ink);
  }

  .hero-stage-note p:last-child {
    color: var(--muted);
    margin-top: 10px;
  }

  .experience-actions {
    flex-direction: column;
  }

  .hero-visual .hero-card {
    margin-top: -60px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
  }
}
