:root {
  --bg: #f7f1ea;
  --bg-alt: #efe4d6;
  --paper: rgba(255, 251, 246, 0.88);
  --paper-strong: rgba(255, 251, 246, 0.95);
  --ink: #24160f;
  --ink-soft: #685349;
  --line: rgba(48, 28, 18, 0.1);
  --line-strong: rgba(48, 28, 18, 0.16);
  --accent: #c96d2c;
  --accent-deep: #9b4d21;
  --accent-soft: #f0b060;
  --forest: #356247;
  --shadow-lg: 0 30px 80px rgba(40, 23, 13, 0.12);
  --shadow-md: 0 18px 42px rgba(40, 23, 13, 0.1);
  --radius-xl: 2rem;
  --radius-lg: 1.35rem;
  --radius-md: 1rem;
  --container: min(1180px, calc(100% - 2rem));
  --header-h: 5.2rem;
  --section-space: clamp(4.75rem, 7vw, 7.5rem);
  --hero-shift: 0px;
  --cursor-x: 50%;
  --cursor-y: 50%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font: 400 1rem/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 35%),
    radial-gradient(circle at top right, rgba(240, 176, 96, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf6f0 0%, #f6eee4 44%, #f8f3ec 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 78%);
}

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

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

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding: 1rem 0;
  transition: padding 180ms ease, background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  padding: 0.72rem 0;
  background: rgba(250, 245, 239, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(41, 23, 13, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  position: relative;
  z-index: 3;
}

.brand-mark {
  inline-size: 3rem;
  block-size: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-deep));
  box-shadow: 0 12px 24px rgba(167, 84, 32, 0.24);
}

.brand-text {
  display: grid;
  gap: 0.08rem;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand-text span:last-child {
  color: var(--ink-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.78);
  border: 1px solid rgba(48, 28, 18, 0.08);
  box-shadow: 0 12px 30px rgba(34, 19, 13, 0.06);
  backdrop-filter: blur(10px);
}

.site-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 650;
  color: rgba(38, 22, 15, 0.8);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(201, 109, 44, 0.1);
  color: var(--ink);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  background: rgba(53, 98, 71, 0.1);
  color: var(--ink);
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 14px 24px rgba(156, 74, 30, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #d97836, #aa5422);
}

.menu-toggle {
  display: none;
  inline-size: 3rem;
  block-size: 3rem;
  padding: 0;
  border: 1px solid rgba(48, 28, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.95);
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  flex-direction: column;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(34, 19, 13, 0.08);
}

.menu-toggle span {
  inline-size: 1rem;
  block-size: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.16rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.16rem) rotate(-45deg);
}

main {
  position: relative;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 1.8rem) 0 4.2rem;
}

.page-hero {
  min-height: 33rem;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 1.2rem) 0 2.8rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -10rem -10rem;
  inline-size: 28rem;
  block-size: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 176, 96, 0.16), transparent 70%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media::before,
.page-hero-media::before {
  content: "";
  position: absolute;
  inset: -4%;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: translate3d(0, calc(var(--hero-shift) * 0.07), 0) scale(1.08);
  transition: transform 120ms linear;
  filter: saturate(0.98) contrast(1.02);
}

.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 12, 8, 0.24) 0%, rgba(22, 12, 8, 0.42) 28%, rgba(22, 12, 8, 0.78) 100%),
    linear-gradient(90deg, rgba(22, 12, 8, 0.32) 0%, rgba(22, 12, 8, 0.08) 44%, rgba(22, 12, 8, 0.34) 100%),
    radial-gradient(circle at 50% 18%, rgba(233, 144, 72, 0.14), transparent 24%),
    radial-gradient(circle at 86% 74%, rgba(240, 176, 96, 0.12), transparent 22%);
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1rem;
}

.page-hero-grid {
  display: grid;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: end;
}

.page-hero-grid.hero-split {
  grid-template-columns: 0.92fr 1.08fr;
}

.hero h1,
.page-hero h1 {
  color: #fff;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(3.4rem, 8.2vw, 6.1rem);
  max-width: 8.8ch;
  line-height: 0.92;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6.8vw, 5rem);
  max-width: 7.1ch;
  line-height: 0.92;
}

.hero-copy,
.page-hero-copy {
  color: rgba(255, 247, 239, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.55;
}

.hero-copy {
  max-width: 38rem;
}

.page-hero-copy {
  max-width: 31rem;
}

.page-hero-photo,
.food-card-media,
.split-media,
.panel-media,
.inline-photo,
.gallery-frame {
  position: relative;
  overflow: clip;
  border-radius: inherit;
}

.page-hero-photo {
  min-height: 21rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 247, 239, 0.14);
}

.page-hero-photo img,
.food-card-media img,
.split-media img,
.inline-photo img,
.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-photo img,
.food-card-media img,
.split-media img,
.inline-photo img,
.gallery-frame img {
  transition: transform 700ms ease, filter 400ms ease;
}

.page-hero-photo:hover img,
.food-card:hover img,
.split-media:hover img,
.inline-photo:hover img,
.gallery-frame:hover img {
  transform: scale(1.04);
}

.hero-orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.12);
  border: 1px solid rgba(255, 248, 239, 0.22);
  color: rgba(255, 248, 239, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(24, 14, 10, 0.2);
  animation: orbitFloat 8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.orbit-chip::before {
  content: "";
  inline-size: 0.55rem;
  block-size: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), #fff0d8);
}

.orbit-chip.one { left: 3%; top: 22%; }
.orbit-chip.two { right: 5%; top: 22%; }
.orbit-chip.three { left: 11%; bottom: 18%; }
.orbit-chip.four { right: 10%; bottom: 16%; }

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) rotate(0.01deg); }
  50% { transform: translateY(-10px) rotate(0.01deg); }
}

.eyebrow,
.kicker,
.food-meta,
.panel-kicker,
.timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow {
  color: var(--accent-soft);
}

.kicker,
.food-meta,
.panel-kicker,
.timeline-step {
  color: var(--forest);
}

.eyebrow::before,
.kicker::before,
.food-meta::before,
.panel-kicker::before,
.timeline-step::before {
  content: "";
  inline-size: 0.55rem;
  block-size: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

.hero-actions,
.hero-badges,
.section-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions,
.hero-badges,
.cta-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.3rem;
  padding: 0.92rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button svg,
.link-arrow svg {
  inline-size: 0.95rem;
  block-size: 0.95rem;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 34px rgba(156, 74, 30, 0.22);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 247, 239, 0.24);
  background: rgba(255, 247, 239, 0.1);
  backdrop-filter: blur(12px);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(48, 28, 18, 0.12);
  background: rgba(255, 251, 245, 0.78);
}

.hero-badges span,
.pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 239, 0.18);
  background: rgba(255, 247, 239, 0.12);
  color: rgba(255, 247, 239, 0.9);
  backdrop-filter: blur(12px);
  font-weight: 650;
  font-size: 0.92rem;
}

.pill-tag {
  color: var(--ink);
  border-color: rgba(48, 28, 18, 0.08);
  background: rgba(255, 251, 245, 0.78);
}

.marquee {
  border-block: 1px solid rgba(48, 28, 18, 0.08);
  background: rgba(255, 251, 245, 0.76);
  overflow: clip;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  padding: 1rem 0;
  animation: marqueeMove 22s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.marquee-item::before {
  content: "";
  inline-size: 0.55rem;
  block-size: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(201, 109, 44, 0.12);
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section-sand {
  background:
    radial-gradient(circle at top left, rgba(240, 176, 96, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(239, 228, 214, 0.78), rgba(255, 251, 245, 0.74));
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(27, 16, 12, 0.9), rgba(18, 11, 8, 0.96)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 7, 5, 0.12), rgba(12, 7, 5, 0.18)),
    radial-gradient(circle at 16% 0%, rgba(240, 176, 96, 0.16), transparent 24%),
    radial-gradient(circle at 86% 100%, rgba(201, 109, 44, 0.14), transparent 24%);
}

.section-head,
.split-copy,
.panel,
.timeline-card,
.contact-card,
.form-panel,
.menu-panel,
.quote-card,
.info-card,
.story-card {
  display: grid;
  gap: 1rem;
}

.section-head {
  max-width: 45rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.section-head h2,
.split-copy h2,
.cta-banner h2,
.menu-panel h2,
.contact-card h2,
.form-panel h2,
.quote-card p {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  text-wrap: balance;
}

.section-head p,
.split-copy p,
.info-card p,
.panel p,
.menu-panel p,
.contact-card p,
.form-panel p,
.timeline-card p,
.quote-credit,
.footer-note,
.faq-answer p {
  color: var(--ink-soft);
}

.section-dark .section-head p,
.section-dark .panel p,
.section-dark .panel strong,
.section-dark .use-case p,
.section-dark .quote-credit {
  color: rgba(255, 247, 239, 0.82);
}

.feature-grid,
.info-grid,
.menu-grid,
.timeline-grid,
.package-grid,
.use-grid,
.contact-layout,
.footer-grid,
.gallery-strip {
  display: grid;
  gap: 1.25rem;
}

.feature-grid.three,
.info-grid.three,
.package-grid.three,
.use-grid.three,
.gallery-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-grid.two,
.timeline-grid.two,
.contact-layout.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.food-card,
.info-card,
.panel,
.timeline-card,
.contact-card,
.form-panel,
.menu-panel,
.quote-card,
.cta-banner,
.faq-item {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.food-card::before,
.info-card::before,
.panel::before,
.timeline-card::before,
.contact-card::before,
.form-panel::before,
.menu-panel::before,
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(240, 176, 96, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.food-card:hover::before,
.info-card:hover::before,
.panel:hover::before,
.timeline-card:hover::before,
.contact-card:hover::before,
.form-panel:hover::before,
.menu-panel:hover::before,
.cta-banner:hover::before {
  opacity: 1;
}

.food-card,
.cta-banner,
.faq-item {
  overflow: clip;
}

.food-card-media {
  aspect-ratio: 1.15 / 0.95;
}

.food-card-body,
.info-card,
.panel,
.timeline-card,
.contact-card,
.form-panel,
.menu-panel,
.quote-card,
.cta-banner {
  padding: 1.5rem;
}

.food-card-body h3,
.info-card h3,
.panel h3,
.timeline-card h3,
.contact-card h2,
.form-panel h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.food-footer,
.inline-stats,
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.link-arrow svg {
  transition: transform 180ms ease;
}

.link-arrow:hover svg,
.link-arrow:focus-visible svg {
  transform: translateX(0.2rem);
}

.split {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.96fr 1.04fr;
}

.split-media {
  min-height: 31rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: auto 1.4rem 1.4rem auto;
  inline-size: min(56%, 17rem);
  block-size: 7.6rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(24, 14, 10, 0.64), rgba(24, 14, 10, 0.18));
  border: 1px solid rgba(255, 247, 239, 0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 36px rgba(20, 12, 10, 0.18);
}

.split-media-badge {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  color: #fff;
  max-width: 13rem;
}

.split-media-badge strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.check-list,
.pill-list,
.faq-list,
.contact-stack {
  display: grid;
  gap: 0.85rem;
}

.check-list div,
.pill-list div {
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(48, 28, 18, 0.08);
  background: rgba(255, 251, 245, 0.76);
}

.check-list strong {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--ink);
}

.section-dark .panel,
.use-case {
  color: #fff;
  background: rgba(255, 247, 239, 0.08);
  border-color: rgba(255, 247, 239, 0.1);
  box-shadow: none;
}

.package-grid .panel {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(245, 236, 225, 0.92));
  border-color: rgba(48, 28, 18, 0.08);
  box-shadow: 0 22px 48px rgba(40, 23, 13, 0.08);
}

.package-grid .panel p,
.package-grid .panel strong {
  color: var(--ink-soft);
}

.package-grid .panel strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(201, 109, 44, 0.1);
  color: var(--accent-deep);
}

.section-dark .package-grid .panel {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(246, 238, 227, 0.96));
  border-color: rgba(62, 38, 24, 0.08);
  box-shadow: 0 24px 48px rgba(8, 4, 3, 0.12);
  color: var(--ink);
}

.section-dark .package-grid .panel h3,
.section-dark .package-grid .panel p {
  color: var(--ink);
}

.section-dark .package-grid .panel strong {
  background: rgba(201, 109, 44, 0.12);
  color: var(--accent-deep);
}

.section-dark .package-grid .panel .panel-kicker {
  color: var(--forest);
}

.section-dark .package-grid .panel::before {
  background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(201, 109, 44, 0.14), transparent 38%);
}

.section-dark .package-grid + .section-actions {
  margin-top: 1.75rem;
}

.section-dark .package-grid + .section-actions .button {
  margin-top: 0.1rem;
}

.section-dark .section-head h2,
.section-dark .section-head p {
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.use-case {
  padding: 1.4rem;
  border-radius: 1.5rem;
}

.use-case h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  margin-bottom: 0.35rem;
}

.reviews-shell {
  max-width: 54rem;
}

.quote-slide {
  display: none;
}

.quote-slide.is-active {
  display: block;
}

.quote-card p {
  color: var(--ink);
}

.slider-dots {
  display: inline-flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.slider-dot {
  inline-size: 0.72rem;
  block-size: 0.72rem;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(48, 28, 18, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.16);
}

.menu-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.menu-pills a {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(48, 28, 18, 0.1);
  background: rgba(255, 251, 245, 0.78);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.menu-pills a:hover,
.menu-pills a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 109, 44, 0.3);
  background: rgba(255, 251, 245, 0.96);
}

.menu-list {
  display: grid;
  gap: 0.95rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.menu-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-item h3 {
  margin: 0 0 0.22rem;
  font: 700 1.08rem/1.25 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.menu-item strong {
  white-space: nowrap;
}

.menu-spotlight {
  min-height: 16rem;
  border-radius: 1.35rem;
}

.faq-item {
  box-shadow: var(--shadow-md);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-button span:last-child {
  inline-size: 1.8rem;
  block-size: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(201, 109, 44, 0.12);
  color: var(--accent-deep);
  flex: 0 0 auto;
}

.faq-item.is-open .faq-button span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contact-layout {
  align-items: start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.68rem 0.96rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(243, 200, 136, 0.34), rgba(201, 109, 44, 0.2));
  border: 1px solid rgba(201, 109, 44, 0.22);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 109, 44, 0.34);
  background: linear-gradient(135deg, rgba(243, 200, 136, 0.46), rgba(201, 109, 44, 0.28));
}

.site-footer .social-links a {
  background: linear-gradient(135deg, rgba(240, 176, 96, 0.22), rgba(201, 109, 44, 0.26));
  border-color: rgba(240, 176, 96, 0.18);
  color: rgba(255, 248, 239, 0.94);
  box-shadow: 0 12px 24px rgba(12, 7, 5, 0.16);
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus-visible {
  background: linear-gradient(135deg, rgba(240, 176, 96, 0.28), rgba(201, 109, 44, 0.34));
  color: #fff;
}

.contact-card .social-links a {
  background: linear-gradient(135deg, rgba(243, 200, 136, 0.24), rgba(201, 109, 44, 0.12));
  color: var(--accent-deep);
}

.site-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.site-form label {
  display: grid;
  gap: 0.45rem;
}

.site-form label span {
  font-size: 0.9rem;
  font-weight: 700;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(48, 28, 18, 0.12);
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  border-color: rgba(201, 109, 44, 0.46);
  box-shadow: 0 0 0 4px rgba(201, 109, 44, 0.12);
  background: #fff;
}

.form-full {
  grid-column: 1 / -1;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.align-start {
  justify-content: flex-start;
  align-items: center;
}

.mini-map {
  min-height: 18rem;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(48, 28, 18, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 176, 96, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.94), rgba(241, 230, 216, 0.94));
}

.mini-map h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.anchor-target {
  scroll-margin-top: 7rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(240, 176, 96, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.94), rgba(248, 240, 229, 0.94));
}

.site-footer {
  margin-top: 4rem;
  color: rgba(255, 247, 239, 0.9);
  background:
    radial-gradient(circle at top left, rgba(240, 176, 96, 0.12), transparent 22%),
    linear-gradient(180deg, #1c110d 0%, #120b08 100%);
}

.footer-grid {
  padding: 4.25rem 0 2.6rem;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.05fr;
  gap: 1.8rem;
}

.site-footer h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
}

.site-footer p,
.footer-note {
  color: rgba(255, 247, 239, 0.72);
}

.footer-note {
  max-width: 18rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 247, 239, 0.08);
}

.footer-bottom-row {
  padding: 1rem 0;
  color: rgba(255, 247, 239, 0.56);
  font-size: 0.92rem;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 110;
  inline-size: 100%;
  block-size: 3px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: scaleX(var(--progress, 0));
}

.reveal {
  opacity: 1;
  transform: none;
}

body.js-ready .reveal.in-view {
  animation: riseIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--delay, 0) * 90ms);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tilt-card:hover {
  box-shadow: 0 36px 90px rgba(40, 23, 13, 0.16);
}



.page-home .hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 2.2rem) 0 4.4rem;
}

.page-home .hero-grid {
  max-width: 67rem;
  min-height: calc(100svh - var(--header-h) - 6.5rem);
  margin-inline: auto;
  align-content: center;
  gap: 1.15rem;
}

.page-home .hero h1 {
  max-width: 10.8ch;
  font-size: clamp(4.2rem, 7vw, 6.4rem);
  line-height: 0.9;
}

.page-home .hero-copy {
  max-width: 42rem;
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
}

.page-home .hero h1,
.page-home .hero-copy {
  text-shadow: 0 14px 32px rgba(12, 7, 5, 0.22);
}

.page-home .hero-badges {
  gap: 0.75rem;
}

.page-home .hero-actions {
  margin-top: 0.15rem;
}

.page-home .orbit-chip.one { left: 7%; top: 19%; }
.page-home .orbit-chip.two { right: 8%; top: 19%; }
.page-home .orbit-chip.three { left: 14%; bottom: 16%; }

.page-hero .page-hero-photo {
  min-height: 18.5rem;
}

.page-catering .package-grid .panel h3 {
  color: var(--ink);
}

.page-catering .package-grid .panel {
  min-height: 100%;
}

.page-catering .package-grid .panel p {
  max-width: 18rem;
}

.page-contact .contact-card h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
}

.page-contact .form-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (max-width: 1080px) {
  .feature-grid.three,
  .info-grid.three,
  .package-grid.three,
  .use-grid.three,
  .gallery-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .page-hero-grid.hero-split,
  .menu-grid.two,
  .timeline-grid.two,
  .contact-layout.two {
    grid-template-columns: 1fr;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .split-media,
  .page-hero-photo {
    min-height: 23rem;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .orbit-chip.one,
  .orbit-chip.two {
    top: 14%;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 1.2rem, 1180px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 5.1rem 1rem auto;
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(255, 251, 245, 0.98);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-nav a {
    padding: 0.95rem 1rem;
  }

  .hero {
    min-height: 48rem;
  }

  .page-home .hero {
    min-height: 44rem;
    padding: calc(var(--header-h) + 1.4rem) 0 3.4rem;
  }

  .page-home .hero-grid {
    min-height: auto;
    max-width: 35rem;
    gap: 0.95rem;
  }

  .page-home .hero h1 {
    max-width: 7.1ch;
    font-size: clamp(3.25rem, 11vw, 5rem);
    line-height: 0.93;
  }

  .page-home .hero-copy {
    max-width: 29rem;
    font-size: 1rem;
  }

  .feature-grid.three,
  .info-grid.three,
  .package-grid.three,
  .use-grid.three,
  .gallery-strip,
  .site-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .orbit-chip {
    display: none;
  }

  .split-media::after,
  .split-media-badge {
    display: none;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.82rem 0;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .brand-text span:last-child {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .page-home .hero {
    min-height: 41rem;
    padding: calc(var(--header-h) + 1rem) 0 3rem;
  }

  .page-home .hero-grid {
    max-width: 100%;
    gap: 0.8rem;
  }

  .page-home .hero h1 {
    max-width: 6.6ch;
    font-size: clamp(2.9rem, 13vw, 4.1rem);
    line-height: 0.94;
  }

  .page-home .hero-copy {
    max-width: 23rem;
    font-size: 0.95rem;
  }

  .page-home .hero-actions {
    gap: 0.75rem;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .section {
    padding: 4.25rem 0;
  }

  .food-card-body,
  .info-card,
  .panel,
  .timeline-card,
  .contact-card,
  .form-panel,
  .menu-panel,
  .quote-card,
  .cta-banner {
    padding: 1.25rem;
  }

  .hero-actions,
  .section-actions,
  .cta-actions,
  .form-actions {
    width: 100%;
  }

  .hero-actions .button,
  .section-actions .button,
  .cta-actions .button,
  .form-actions .button {
    flex: 1 1 100%;
  }

  .hero-badges,
  .hero-badges span,
  .menu-pills {
    width: 100%;
  }

  .hero-badges span,
  .menu-pills a {
    justify-content: center;
  }

  .menu-item {
    flex-direction: column;
  }
}
