:root {
  --ink: #201c18;
  --muted: #71675e;
  --paper: #fffaf3;
  --panel: #ffffff;
  --line: #e7ded2;
  --brand: #9c2f24;
  --brand-dark: #681d17;
  --gold: #c99a45;
  --sage: #557565;
  --charcoal: #171513;
  --shadow: 0 18px 50px rgba(35, 27, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.92);
  border-bottom: 1px solid rgba(231, 222, 210, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 9px 10px;
  border-radius: 7px;
  color: #403933;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand-dark);
  background: #f1e5d8;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.secondary {
  color: var(--brand-dark);
  background: #f0dfcd;
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

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

.page {
  display: none;
}

.page.active {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-cascade > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-cascade.is-visible > *:nth-child(2) {
  transition-delay: 90ms;
}

.reveal-cascade.is-visible > *:nth-child(3) {
  transition-delay: 180ms;
}

.reveal-cascade.is-visible > *:nth-child(4) {
  transition-delay: 270ms;
}

.reveal-cascade.is-visible > *:nth-child(5) {
  transition-delay: 360ms;
}

.reveal-cascade.is-visible > *:nth-child(6) {
  transition-delay: 450ms;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media,
.subhero {
  background-position: center;
  background-size: cover;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 78% 22%, rgba(201, 154, 69, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(23, 21, 19, 0.9), rgba(23, 21, 19, 0.44), rgba(23, 21, 19, 0.18)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80");
  animation: heroBreath 18s ease-in-out infinite alternate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.hero-video.is-ready {
  opacity: 0.64;
}

.hero-video.is-ready + .hero-texture,
.hero:has(.hero-video.is-ready) .hero-texture {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 19, 0.82), rgba(23, 21, 19, 0.34));
}

.immersive-hero {
  isolation: isolate;
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 78px clamp(18px, 7vw, 96px);
  color: #fff;
  animation: heroRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 700;
}

h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-signals {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-signals span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  backdrop-filter: blur(8px);
}

.hero-signals strong {
  color: #fff;
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  width: min(330px, calc(100% - 36px));
  padding: 22px;
  color: #fff;
  background: rgba(32, 28, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  animation: panelReveal 900ms 180ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-panel span {
  color: var(--gold);
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.experience-panel {
  width: min(380px, calc(100% - 36px));
  background:
    linear-gradient(145deg, rgba(104, 29, 23, 0.78), rgba(23, 21, 19, 0.76));
}

.experience-panel a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 850;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.intro-grid,
.two-column,
.contact-layout,
.hours-layout,
.booking-layout,
.kit-layout,
.insight-band,
.experience-selector,
.home-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.stats-grid,
.values,
.feature-strip,
.package-grid,
.sensory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stats-grid article,
.values article,
.package-grid article,
.contact-card,
.hours-card,
.hours-note,
.booking-summary,
.kit-preview,
.kit-actions,
.menu-card,
.inquiry-form,
.booking-form,
.sensory-grid article,
.selector-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.insight-band {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 7vw, 96px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.94), rgba(85, 117, 101, 0.82)),
    url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.insight-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.sensory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 32px;
}

.sensory-grid article {
  min-height: 260px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 243, 0.92));
}

.sensory-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--brand);
  font-weight: 900;
}

.sensory-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.sensory-grid p {
  color: var(--muted);
}

.experience-selector {
  padding-top: 32px;
}

.selector-board {
  display: grid;
  gap: 14px;
}

.selector-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.selector-tabs button {
  min-height: 46px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 850;
}

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

.selector-card {
  min-height: 280px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 21, 19, 0.92), rgba(104, 29, 23, 0.78)),
    url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1200&q=80");
  background-position: center;
  background-size: cover;
}

.selector-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  max-width: 560px;
}

.selector-card p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}

.selector-card .button {
  margin-top: 16px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.animated-food-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 6vw, 76px);
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 154, 69, 0.15), transparent 28%),
    linear-gradient(180deg, #fffaf3, #f2e4d3);
}

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

.food-motion-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.motion-dish {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: var(--charcoal);
}

.motion-dish img {
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.food-motion-card:hover .motion-dish img,
.food-motion-card:focus-within .motion-dish img {
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.09);
}

.food-motion-card > div:last-child {
  padding: 24px;
}

.food-motion-card p:not(.eyebrow) {
  color: var(--muted);
}

.steam {
  position: absolute;
  bottom: 34%;
  width: 42px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.34), transparent 66%);
  filter: blur(12px);
  opacity: 0;
  animation: steamRise 4.8s ease-in-out infinite;
}

.steam-one {
  left: 28%;
}

.steam-two {
  left: 47%;
  animation-delay: 1.2s;
}

.steam-three {
  left: 64%;
  animation-delay: 2.1s;
}

.flame-glow {
  position: absolute;
  right: 12%;
  bottom: -18%;
  width: 48%;
  height: 48%;
  background: radial-gradient(circle, rgba(255, 118, 36, 0.58), rgba(156, 47, 36, 0.18), transparent 70%);
  filter: blur(18px);
  animation: flamePulse 1.8s ease-in-out infinite alternate;
}

.sauce-pour {
  position: absolute;
  top: 12%;
  left: 52%;
  width: 7px;
  height: 56%;
  background: linear-gradient(180deg, transparent, rgba(255, 229, 170, 0.92), rgba(201, 154, 69, 0.92), transparent);
  border-radius: 999px;
  filter: drop-shadow(0 0 10px rgba(201, 154, 69, 0.7));
  transform-origin: top;
  animation: saucePour 3.6s ease-in-out infinite;
}

.plate-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.38), transparent 56%);
  transform: translateX(-110%);
  animation: plateShine 4.4s ease-in-out infinite;
}

.caramel-line {
  position: absolute;
  right: 18%;
  bottom: 19%;
  width: 46%;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 69, 0.95), #fff4c6);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(201, 154, 69, 0.7);
  animation: caramelSweep 3.2s ease-in-out infinite;
}

.spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff4c6;
  border-radius: 50%;
  box-shadow: 0 0 18px #fff4c6;
  animation: sparkFloat 2.8s ease-in-out infinite;
}

.spark-one {
  top: 28%;
  right: 32%;
}

.spark-two {
  top: 42%;
  right: 22%;
  animation-delay: 1.4s;
}

.ingredient-reveal {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ingredient-reveal li {
  opacity: 0;
  transform: translateY(8px);
  padding: 7px 9px;
  color: var(--brand-dark);
  background: #f0dfcd;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  transition: opacity 280ms ease, transform 280ms ease;
}

.food-motion-card:hover .ingredient-reveal li,
.food-motion-card:focus-within .ingredient-reveal li,
.menu-card:hover .ingredient-reveal li,
.menu-card:focus-within .ingredient-reveal li {
  opacity: 1;
  transform: translateY(0);
}

.food-motion-card:hover .ingredient-reveal li:nth-child(2),
.food-motion-card:focus-within .ingredient-reveal li:nth-child(2),
.menu-card:hover .ingredient-reveal li:nth-child(2),
.menu-card:focus-within .ingredient-reveal li:nth-child(2) {
  transition-delay: 70ms;
}

.food-motion-card:hover .ingredient-reveal li:nth-child(3),
.food-motion-card:focus-within .ingredient-reveal li:nth-child(3),
.menu-card:hover .ingredient-reveal li:nth-child(3),
.menu-card:focus-within .ingredient-reveal li:nth-child(3) {
  transition-delay: 140ms;
}

.home-showcase {
  align-items: stretch;
}

.showcase-copy {
  align-self: center;
}

.launch-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 24px;
}

.showcase-stack {
  position: relative;
  min-height: 520px;
}

.showcase-stack img {
  position: absolute;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-stack img:first-child {
  top: 0;
  right: 0;
  width: 74%;
  height: 58%;
}

.showcase-stack img:last-child {
  left: 0;
  bottom: 0;
  width: 68%;
  height: 54%;
  border: 8px solid var(--paper);
}

.stats-grid article {
  padding: 24px;
}

.stats-grid strong {
  display: block;
  color: var(--brand);
  font-size: 42px;
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 750;
}

.feature-strip article {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-strip img {
  height: 260px;
}

.feature-strip h3,
.feature-strip p {
  padding-inline: 22px;
}

.feature-strip h3 {
  padding-top: 20px;
}

.feature-strip p {
  padding-bottom: 24px;
  color: var(--muted);
}

.subhero {
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: 120px clamp(18px, 7vw, 96px) 64px;
  color: #fff;
  background-color: var(--charcoal);
  background-image: linear-gradient(90deg, rgba(23, 21, 19, 0.84), rgba(23, 21, 19, 0.28));
}

.subhero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 74px);
}

.subhero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.subhero-meta span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.about-hero { background-image: linear-gradient(90deg, rgba(23,21,19,.84), rgba(23,21,19,.28)), url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=80"); }
.menu-hero { background-image: linear-gradient(90deg, rgba(23,21,19,.84), rgba(23,21,19,.28)), url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1800&q=80"); }
.banquet-hero { background-image: linear-gradient(90deg, rgba(23,21,19,.84), rgba(23,21,19,.28)), url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1800&q=80"); }
.gallery-hero { background-image: linear-gradient(90deg, rgba(23,21,19,.84), rgba(23,21,19,.28)), url("https://images.unsplash.com/photo-1528605248644-14dd04022da1?auto=format&fit=crop&w=1800&q=80"); }
.catering-hero { background-image: linear-gradient(90deg, rgba(23,21,19,.84), rgba(23,21,19,.28)), url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1800&q=80"); }
.contact-hero { background-image: linear-gradient(90deg, rgba(23,21,19,.84), rgba(23,21,19,.28)), url("https://images.unsplash.com/photo-1579027989536-b7b1f875659b?auto=format&fit=crop&w=1800&q=80"); }
.hours-hero { background-image: linear-gradient(90deg, rgba(23,21,19,.84), rgba(23,21,19,.28)), url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1800&q=80"); }
.booking-hero { background-image: linear-gradient(90deg, rgba(23,21,19,.84), rgba(23,21,19,.28)), url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=1800&q=80"); }
.kit-hero { background-image: linear-gradient(90deg, rgba(23,21,19,.84), rgba(23,21,19,.28)), url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1800&q=80"); }

.image-card {
  height: 440px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.values article,
.package-grid article,
.story-rail article,
.event-grid article,
.catering-flow article,
.quick-contact-grid a,
.visit-planner article,
.booking-benefits article,
.kit-cards article,
.contact-card,
.hours-card,
.hours-note,
.booking-summary,
.kit-preview,
.kit-actions {
  padding: 28px;
}

.values p,
.package-grid p,
.story-rail p,
.event-grid p,
.catering-flow p,
.visit-planner p,
.booking-benefits p,
.kit-cards p,
.contact-card p,
.hours-note p,
.kit-actions p,
.booking-summary p {
  color: var(--muted);
}

.story-rail,
.event-grid,
.catering-flow,
.quick-contact-grid,
.visit-planner,
.booking-benefits,
.kit-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-rail article,
.event-grid article,
.booking-benefits article,
.kit-cards article {
  min-height: 220px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(23, 21, 19, 0.94), rgba(104, 29, 23, 0.8)),
    url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-rail span,
.event-grid strong {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.story-rail p,
.event-grid p,
.booking-benefits p,
.kit-cards p {
  color: rgba(255, 255, 255, 0.76);
}

.menu-spotlight {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.menu-spotlight .motion-dish {
  height: 460px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catering-flow article,
.visit-planner article,
.quick-contact-grid a {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catering-flow span,
.quick-contact-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-contact-grid a {
  color: var(--ink);
  transition: transform 220ms ease, border-color 220ms ease;
}

.quick-contact-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 47, 36, 0.4);
}

.visit-planner strong {
  color: var(--brand-dark);
}

.detail-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.detail-list span {
  padding: 9px 12px;
  color: var(--brand-dark);
  background: #f0dfcd;
  border-radius: 7px;
  font-weight: 750;
}

.inquiry-form,
.booking-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid var(--line);
  border-radius: 7px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.menu-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
}

.segmented {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.segmented button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
}

.segmented button.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.menu-card {
  overflow: hidden;
}

.menu-card img,
.menu-media {
  height: 210px;
}

.menu-media {
  position: relative;
}

.animated-menu-card:hover .menu-media img,
.animated-menu-card:focus-within .menu-media img {
  filter: saturate(1.13) contrast(1.06);
  transform: scale(1.08);
}

.menu-card div {
  padding: 22px;
}

.menu-card .menu-media {
  padding: 0;
}

.menu-card p {
  color: var(--muted);
}

.menu-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-weight: 850;
}

.menu-card span {
  color: var(--sage);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-grid img {
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-grid figure:hover img {
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.08);
}

.gallery-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(23, 21, 19, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

.wide-img {
  min-height: 440px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hours-card dl {
  margin: 0;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours-card div:last-child {
  border-bottom: 0;
}

.hours-card dt {
  font-weight: 850;
}

.hours-card dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.booking-summary strong {
  color: var(--brand-dark);
}

.kit-preview ul {
  padding-left: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  padding: 36px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--charcoal);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-reserve-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(23, 21, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mobile-reserve-bar a {
  min-height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 850;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-reserve-bar a:last-child {
  border-right: 0;
}

.mobile-reserve-bar a:nth-child(2) {
  background: var(--brand);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: 340px;
  padding: 14px 16px;
  color: #fff;
  background: var(--sage);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(130%);
  transition: transform 180ms ease;
}

.toast.show {
  transform: translateY(0);
}

@keyframes heroBreath {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(34px) translateX(0) scale(0.82);
  }

  28% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateY(-92px) translateX(18px) scale(1.38);
  }
}

@keyframes flamePulse {
  from {
    opacity: 0.55;
    transform: scale(0.92);
  }

  to {
    opacity: 0.95;
    transform: scale(1.14);
  }
}

@keyframes saucePour {
  0%,
  100% {
    opacity: 0;
    transform: scaleY(0.08);
  }

  24%,
  72% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes plateShine {
  0%,
  45% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes caramelSweep {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(0.1);
    transform-origin: left;
  }

  42%,
  72% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes sparkFloat {
  0%,
  100% {
    opacity: 0;
    transform: translateY(12px) scale(0.6);
  }

  45% {
    opacity: 1;
    transform: translateY(-12px) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal-cascade > * {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .site-nav.open a {
    background: #fff;
    border: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 760px;
    align-items: center;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 70px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 18px 28px;
  }

  .intro-grid,
  .two-column,
  .contact-layout,
  .hours-layout,
  .booking-layout,
  .kit-layout,
  .insight-band,
  .experience-selector,
  .home-showcase,
  .menu-spotlight,
  .stats-grid,
  .values,
  .feature-strip,
  .package-grid,
  .sensory-grid,
  .animated-food-grid,
  .story-rail,
  .event-grid,
  .catering-flow,
  .quick-contact-grid,
  .visit-planner,
  .booking-benefits,
  .kit-cards,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-tools,
  .site-footer {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

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

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

  .showcase-stack {
    min-height: 420px;
  }

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

  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .site-nav.open {
    grid-template-columns: 1fr;
  }

  .subhero {
    min-height: 360px;
    padding-top: 92px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .hero-signals span,
  .launch-form {
    width: 100%;
  }

  .launch-form {
    grid-template-columns: 1fr;
  }

  .mobile-reserve-bar {
    display: grid;
  }

  body {
    padding-bottom: 72px;
  }

  .toast {
    bottom: 82px;
  }

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

@media print {
  .site-header,
  .site-footer,
  .subhero,
  .kit-actions,
  .mobile-reserve-bar,
  .toast {
    display: none;
  }

  .page {
    display: none !important;
  }

  #menu-kit {
    display: block !important;
  }

  body {
    background: #fff;
  }

  .section {
    width: 100%;
    padding: 0;
  }
}
