/* ================================================================
   Part & Parcel — An Illustrated World
   Design system derived from watercolor illustrations
   ================================================================ */

/* ── Variables ── */
:root {
  --paper:        #FAF6F0;
  --paper-warm:   #F3EDE4;
  --navy:         #2B3A5C;
  --navy-light:   #3D4F73;
  --terracotta:   #C4653C;
  --terracotta-light: #D4855F;
  --red-muted:    #bd5c5d;
  --cyan-pale:    #DDFDFC;
  --sage:         #6B8F71;
  --sage-muted:   #8FAF93;
  --gold:         #D4A76A;
  --gold-light:   #E8C890;
  --brown:        #8B6B4A;
  --blush:        #E8D5C8;
  --charcoal:     #3A3A3A;
  --warm-grey:    #9A8E82;
  --text:         #3A3A3A;
  --text-light:   #6B6259;
  --cyan-border:  #7FA3A2;
  --red-dark:     #A34E4F;

  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-handwritten: 'Caveat', cursive;
  --font-sans:       'DM Sans', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --nav-height: 72px;
  --container: 1080px;
  --measure: 660px;
  --measure-wide: 760px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Base ── */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  font-size: clamp(16px, 0.28vw + 15px, 18px);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(232,200,144,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(196,101,60,0.06) 0%, transparent 40%),
    var(--paper);
}

img { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; overflow-wrap: break-word; word-wrap: break-word; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.handwritten {
  font-family: var(--font-handwritten);
  font-weight: 400;
}

.section-label {
  font-family: var(--font-handwritten);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  display: block;
}

.brush-underline {
  position: relative;
  display: inline-block;
  --brush-scale: 0;
}
.brush-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--terracotta);
  opacity: 0.5;
  transform: scaleX(var(--brush-scale, 0));
  transform-origin: left;
  pointer-events: none;
}

/* ── Watercolor Effects ── */
.wc-spot {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.wc-spot-1 {
  width: 350px; height: 350px;
  top: 5%; right: -80px;
  background: rgba(232, 200, 144, 0.12);
  animation: wcFloat 28s ease-in-out infinite;
}
.wc-spot-2 {
  width: 280px; height: 280px;
  bottom: 15%; left: -60px;
  background: rgba(196, 101, 60, 0.06);
  animation: wcFloat 35s ease-in-out infinite reverse;
}
.wc-spot-3 {
  width: 220px; height: 220px;
  top: 45%; left: 25%;
  background: rgba(107, 143, 113, 0.08);
  animation: wcFloat 22s ease-in-out infinite 4s;
}

@keyframes wcFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(15px, -20px) scale(1.06); }
  50%  { transform: translate(-10px, 15px) scale(0.94); }
  75%  { transform: translate(20px, 8px) scale(1.03); }
}

/* wavy section divider */
.wave-divider {
  display: block;
  width: 100%;
  height: 40px;
  color: var(--paper-warm);
}
.wave-divider.dark { color: var(--navy); }
.wave-divider svg { width: 100%; height: 100%; display: block; }

/* ── Page Transition ── */
.page-wash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--paper);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
  will-change: opacity;
}
.page-wash.revealed { opacity: 0; will-change: auto; }
.page-wash.exit { opacity: 1; transition: opacity 0.25s ease; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 15px rgba(0,0,0,0.04);
}
@media (max-width: 900px) {
  nav.scrolled {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease;
  transform-origin: left center;
}
nav.scrolled .nav-logo img { transform: scale(0.818); }
.nav-links { display: flex; gap: clamp(1rem, 1.7vw, 2.2rem); align-items: center; }
.nav-links a {
  position: relative;
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1vw + 0.3rem, 1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-light);
  transition: color 0.3s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--terracotta);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 4px;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown > a {
  padding: 1.6rem 0;
}
.nav-dropdown > a:not(.nav-cta)::after {
  bottom: 1.05rem;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 0.6rem);
  left: 50%;
  min-width: 180px;
  padding: 0.75rem;
  background: rgba(250, 246, 240, 0.98);
  border: 1px solid rgba(212, 167, 106, 0.45);
  border-radius: 3px;
  box-shadow: 0 16px 45px rgba(43, 58, 92, 0.12);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 0.6rem;
  white-space: nowrap;
}
.nav-dropdown-menu a::after {
  display: none;
}
.nav-cta {
  background: var(--red-muted) !important;
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(0.85rem, 1vw + 0.3rem, 1rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  padding: 9px; z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  border-radius: 4px;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--navy);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--paper);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  will-change: opacity;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  padding: 0.25rem 1rem;
  transition: color 0.3s, transform 0.3s;
}
.mobile-menu a:hover { color: var(--terracotta); }
.mobile-menu a.active { color: var(--terracotta); font-weight: 500; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.btn-primary { background: var(--red-muted); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(196,101,60,0.25); }
.btn-outline {
  border: 1.5px solid var(--red-muted);
  color: var(--red-muted);
}
.btn-outline:hover { background: var(--red-muted); color: #fff; }
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ── Hero (Home) ── */
.hero-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 1rem) 2rem 3rem;
  position: relative;
  z-index: 1;
  gap: 0.75rem;
}
.hero-headline .handwritten {
  font-size: 1.3rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0;
}
.hero-headline h1 {
  margin-bottom: 0;
  letter-spacing: 0.01em;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
.hero-illustration {
  display: flex;
  justify-content: center;
  padding: 0;
}
.hero-illustration img {
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 12px 40px rgba(43,58,92,0.08));
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
  mix-blend-mode: multiply;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero-foot {
  max-width: 480px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Hero (Interior pages) ── */
.hero-interior {
  padding: calc(var(--nav-height) + 2.5rem) 2rem 2.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-interior .handwritten { font-size: 1.6rem; color: var(--terracotta); }
.hero-interior h1 { margin-top: 0.25rem; margin-bottom: 1rem; }
.hero-interior h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-interior p { max-width: var(--measure); margin: 0 auto; color: var(--text-light); }

/* ── Hero (Immersive) ── */
.hero-immersive {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.35) 60%, var(--paper) 100%);
  z-index: 1;
}
.hero-immersive .hero-interior {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}
.hero-immersive h1 { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.hero-immersive .handwritten { color: var(--gold-light); text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-immersive p {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-immersive .hero-menu-intro {
  max-width: var(--measure-wide);
  font-size: clamp(1rem, 0.5vw + 0.78rem, 1.08rem);
  line-height: 1.65;
}

/* ── Sections ── */
section { padding: var(--space-xl) 0; position: relative; z-index: 1; }

.section-warm { background: var(--paper-warm); }
.section-navy {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
}
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .section-label { color: var(--gold-light); }
.section-navy p,
.section-navy .content-narrow p {
  color: rgba(255,255,255,0.82);
}
.section-navy .wc-card { background: rgba(255,255,255,0.92); }
.section-navy .wc-card::after { background: none; }
.section-navy .wc-card:hover { background: #fff; }

/* ── Breadcrumbs ── */
.breadcrumbs {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 1.35rem;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 0.86rem;
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.45rem;
  color: var(--warm-grey);
}
.breadcrumbs a {
  color: var(--terracotta);
}
.breadcrumbs a:hover {
  color: var(--navy);
}
.hero-interior .breadcrumbs {
  padding-left: 0;
  padding-right: 0;
}
.hero-interior .breadcrumbs ol {
  justify-content: center;
}

/* ── Watercolor Card Border (shared) ── */
.wc-card {
  position: relative;
  background: rgba(255,255,255,0.65);
  padding: 2.5rem 2rem;
  border: none;
  border-radius: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.wc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2.5px solid var(--gold);
  border-radius: 3px;
  opacity: 0.35;
  pointer-events: none;
  filter: url(#wc-edge);
  transition: opacity 0.4s ease, border-color 0.4s ease;
}
.wc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212,167,106,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(196,101,60,0.04) 0%, transparent 50%);
  transition: background 0.4s ease;
}
.wc-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.85);
}
.wc-card:hover::before {
  opacity: 0.55;
  border-color: var(--terracotta);
}
.wc-card:hover::after {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212,167,106,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(196,101,60,0.07) 0%, transparent 50%);
}

/* ── Experience Cards (Home) ── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.experience-card {
  text-align: center;
}
.experience-card:hover {
  background: rgba(255,255,255,0.85);
}
.experience-card h3 { margin-bottom: 0.5rem; color: var(--navy); font-size: clamp(1.6rem, 2.5vw, 1.9rem); }
.experience-card .card-hours {
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.experience-card p { font-size: 1.1rem; color: var(--text-light); line-height: 1.6; }

/* ── Feast Feature ── */
.feast-feature {
  text-align: center;
}
.feast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.feast-image img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.06));
  mix-blend-mode: multiply;
}
.feast-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--terracotta);
  margin: 0.75rem 0;
}
.feast-price span {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--warm-grey);
}
.feast-details {
  margin: 1.25rem 0 2rem;
  line-height: 2;
}
.feast-details li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-light);
}
.feast-details li::before {
  content: '';
  position: absolute; left: 0; top: 0.7em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

/* ── Info Strip ── */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: var(--space-lg) 0;
}
.info-strip-item h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.info-strip-item p {
  font-size: 1.1rem;
  opacity: 0.8;
}
.info-strip-item a { border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color 0.3s; }
.info-strip-item a:hover { border-color: var(--gold-light); }

/* ── Menu Components ── */
.menu-tabs-bar {
  position: sticky;
  top: var(--nav-height);
  background: var(--paper);
  z-index: 90;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.menu-tabs-bar.is-stuck {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 18px rgba(43, 58, 92, 0.08);
}
@media (max-width: 900px) {
  .menu-tabs-bar.is-stuck {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.menu-tabs {
  display: flex; gap: 0; justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-top: 0.5rem;
}
.menu-panels {
  padding-top: var(--space-lg);
}
.menu-page .menu-panels {
  max-width: var(--measure-wide);
}
.menu-tab {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.menu-tab:hover { color: var(--navy); }
.menu-tab.active { color: var(--navy); border-bottom-color: var(--terracotta); }

.menu-panel { display: none; max-width: 700px; margin: 0 auto; }
.menu-panel.active { display: block; }

.menu-category { margin-bottom: var(--space-lg); }
.menu-category-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
}
.menu-item + .menu-item { border-top: 1px dotted rgba(0,0,0,0.06); }
.menu-item-info { flex: 1; padding-right: 1.5rem; }
.menu-item-name { font-family: var(--font-sans); font-weight: 500; font-size: 1.15rem; color: var(--charcoal); }
.menu-item-desc { font-family: var(--font-sans); font-size: 1.05rem; color: var(--text-light); margin-top: 0.2rem; line-height: 1.5; }
.menu-item-price { font-family: var(--font-sans); font-size: 1.15rem; color: var(--sage); font-weight: 500; white-space: nowrap; }
.menu-note {
  text-align: center;
  margin-top: var(--space-md);
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  color: var(--warm-grey);
}
.menu-page {
  padding-top: var(--space-md);
}
.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1040px;
  margin: 0 auto;
}
.menu-hub-card {
  display: block;
  min-height: 260px;
}
.menu-hub-card h2 {
  margin-bottom: 0.75rem;
}
.menu-hub-card p,
.group-callout p,
.content-callout p {
  color: var(--text-light);
}
.group-callout {
  max-width: var(--measure);
  margin: var(--space-lg) auto 0;
  text-align: center;
}
.group-callout .btn,
.content-callout .btn {
  margin-top: 1rem;
}
.content-narrow,
.container.content-narrow {
  max-width: var(--measure);
}
.content-narrow h2 {
  margin-top: var(--space-lg);
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 3vw, 2.65rem);
}
.content-narrow h2:first-child {
  margin-top: 0;
}
.content-narrow h3 {
  margin-top: 1.65rem;
  margin-bottom: 0.45rem;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: clamp(1.12rem, 1vw + 0.6rem, 1.28rem);
  font-weight: 700;
  line-height: 1.35;
}
.content-narrow p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: clamp(1rem, 0.25vw + 0.9rem, 1.06rem);
  line-height: 1.68;
}
.content-narrow li {
  font-size: clamp(1rem, 0.25vw + 0.9rem, 1.06rem);
  line-height: 1.6;
}
.content-narrow a:not(.btn) {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.reservation-card {
  margin: 0 0 var(--space-lg);
  max-width: var(--measure);
  text-align: center;
  padding: 2.75rem 2rem 2.5rem;
}
.reservation-card .section-label {
  margin-bottom: 0.25rem;
}
.reservation-card h2 {
  margin-top: 0;
  margin-bottom: 0.85rem;
}
.reservation-card > p {
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}
.reservation-card .btn {
  margin-top: 1.25rem;
}
.reservation-card-footnote {
  margin-top: 1.5rem;
  font-family: var(--font-handwritten);
  font-size: 1.1rem;
  color: var(--warm-grey);
}

.reservation-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  margin: 0 0 var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0,0,0,0.07);
}
.reservation-option h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.4rem, 1.6vw, 1.7rem);
}
.reservation-option p {
  margin: 0;
}
@media (max-width: 640px) {
  .reservation-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.faq-block {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0,0,0,0.07);
}
.faq-block > h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.faq-list {
  display: block;
}
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.faq-item:last-of-type {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 2.25rem 1.05rem 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.02rem, 0.4vw + 0.9rem, 1.12rem);
  color: var(--charcoal);
  position: relative;
  transition: color 0.2s ease;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--terracotta); }
.faq-item > summary::after {
  content: '';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 1.5px solid var(--terracotta);
  border-bottom: 1.5px solid var(--terracotta);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] > summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-item[open] > summary {
  color: var(--navy);
}
.faq-item > p {
  margin: 0 0 1.1rem;
  padding-right: 1.5rem;
  color: var(--text-light);
}

.reservation-help {
  margin-top: var(--space-md);
  text-align: center;
  color: var(--warm-grey);
  font-size: 0.98rem;
}
.checked-list {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
  color: var(--text-light);
}
.checked-list.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.checked-list li {
  position: relative;
  padding-left: 1.2rem;
}
.checked-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--terracotta);
  border-radius: 50%;
}
.button-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

/* ── About / Story content ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.story-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.story-text p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  float: left;
  line-height: 0.8;
  margin-right: 0.12em;
  margin-top: 0.1em;
  color: var(--terracotta);
}
.story-image img {
  width: 100%; max-width: 480px;
  border-radius: 6px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.06));
  mix-blend-mode: multiply;
}

.philosophy-block {
  max-width: 700px; margin: 0 auto;
  text-align: center;
  padding: var(--space-lg) 0;
}
.philosophy-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1rem;
}
.philosophy-block cite {
  font-family: var(--font-handwritten);
  font-size: 1.1rem;
  color: var(--terracotta);
  font-style: normal;
}

/* ── Visit / Contact ── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.visit-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}
.visit-info h3:first-child { margin-top: 0; }
.visit-info p, .visit-info address {
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
}
.visit-info a:not(.btn) {
  color: var(--terracotta);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.visit-info a:not(.btn):hover { border-bottom-color: var(--terracotta); }
.hours-table { width: 100%; }
.hours-table td { padding: 0.35rem 0; font-size: 1.15rem; color: var(--text-light); }
.hours-table td:first-child { font-weight: 500; color: var(--text); padding-right: 2rem; }
.visit-map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

.visit-map-illustration {
  text-align: center;
}
.visit-map-illustration img {
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.08));
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0 1rem;
}
.gallery-item {
  height: 380px;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .gallery-item {
    height: 280px;
  }
}
.newsletter {
  text-align: center;
  padding: var(--space-lg) 0;
  background-color: var(--paper-warm);
}
.newsletter h2 { margin-bottom: 0.5rem; }
.newsletter p { color: var(--text-light); margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex; gap: 0.5rem;
  max-width: 440px; margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 3px;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--text);
}
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--terracotta); }
.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--red-muted);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.3s, transform 0.2s;
}
.newsletter-form button:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ── Footer ── */
.footer-illustration {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: var(--space-xl);
  margin-bottom: -1px; /* overlap to prevent gap */
  position: relative;
  z-index: 2;
}
.footer-illustration img {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: block;
  height: auto;
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: var(--space-lg) 0 var(--space-md);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 0.75rem; }
.footer-brand .nav-logo img { height: 44px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 1.05rem; line-height: 1.7; max-width: 340px; }
footer h4 { color: #fff; font-family: var(--font-serif); font-size: 1rem; margin-bottom: 0.75rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 1.05rem; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a { opacity: 0.6; transition: opacity 0.3s; }
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }

/* ── Origin Story ── */
.origin {
  position: relative;
  overflow: hidden;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.origin-timeline {
  position: absolute;
  left: 50%;
  top: var(--space-xl);
  bottom: var(--space-xl);
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--terracotta) 0,
    var(--terracotta) 6px,
    transparent 6px,
    transparent 14px
  );
  opacity: 0.18;
}

/* Origin intro — photo left, text right on desktop; stacked on mobile */
.origin-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-md) 0;
}
.origin-intro__photo { padding-inline-start: var(--space-md); }
.origin-intro__text h2 { margin-bottom: 1rem; }
.origin-intro__text p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.85;
}

.origin-block {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-md) 0;
}

.origin-visual {
  position: relative;
}

.origin-photo {
  width: 100%;
  border-radius: 4px;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,0.1));
}

.origin-illustration {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.06));
  mix-blend-mode: multiply;
}

.origin-block--philosophy {
  grid-template-columns: 5fr 7fr;
}
.origin-block--philosophy .origin-copy { order: 1; padding-inline-start: var(--space-md); }
.origin-block--philosophy .origin-visual { order: 2; }

.origin-copy {
  max-width: 460px;
}
.origin-copy p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-top: 1.25rem;
}

/* ── Story Rows ── */
.story-row {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-md) 0;
}
.story-row + .story-row { margin-top: var(--space-lg); }
.story-row--flip { grid-template-columns: 6fr 5fr; }
.story-row--flip .story-img { order: 2; }
.story-row--flip .story-copy { order: 1; }
.story-img img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.06));
  mix-blend-mode: multiply;
}
.story-copy {
  max-width: 460px;
}
.story-copy p {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-top: 1.25rem;
}

/* ── Animation States ── */
.reveal      { opacity: 0; transform: translateY(25px); will-change: transform, opacity; }
.reveal-left { opacity: 0; transform: translateX(-30px); will-change: transform, opacity; }
.reveal-right{ opacity: 0; transform: translateX(30px); will-change: transform, opacity; }
.reveal-scale{ opacity: 0; transform: scale(0.96); will-change: transform, opacity; }
.reveal-brush::after { transform: scaleX(0); transform-origin: left; }

/* Hero entrance — hide before GSAP animates in (prevents FOUC) */
.hero-headline .handwritten,
.hero-headline h1,
.hero-illustration img,
.hero-foot,
.hero-interior .handwritten,
.hero-interior h1,
.hero-interior p,
.hero-anim-img { opacity: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  /* Disable expensive rendering on mobile */
  .wc-spot { display: none !important; }
  .wc-card::before { filter: none; }
  .wc-card::after { background: none; }
  .gallery-item img { transition: none; }
  .gallery-item:hover img { transform: none; }
  .hero-illustration img,
  .feast-image img,
  .story-image img,
  .story-img img,
  .origin-illustration { mix-blend-mode: normal; }

  .container { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .menu-card-grid,
  .checked-list.two-col,
  .photo-grid { grid-template-columns: 1fr; }
  .menu-hub-card { min-height: auto; }
  .button-row { justify-content: flex-start; }

  section { padding: var(--space-lg) 0; }

  .hero-home { padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem; min-height: auto; }
  .hero-illustration img { max-width: 65vw; }
  .hero-subtitle { font-size: 1.05rem; }

  /* Remove expensive drop-shadow filters on mobile */
  .hero-illustration img,
  .origin-photo,
  .origin-illustration,
  .story-image img,
  .story-img img,
  .feast-image img { filter: none; }

  .hero-with-image { grid-template-columns: 1fr; text-align: center; }
  .hero-with-image .hero-content { padding-right: 0; margin-bottom: 2rem; }
  .hero-with-image .hero-interior { text-align: center; }
  .hero-with-image .hero-interior p { margin: 0 auto; }

  .hero-immersive { height: 60vh; min-height: 350px; }

  .origin { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
  .origin-timeline { display: none; }
  .origin-intro { grid-template-columns: 1fr; text-align: center; gap: var(--space-md); }
  .origin-intro__photo { display: flex; justify-content: center; padding-inline-start: 0; }
  .origin-intro__photo img { max-width: 100%; }
  .origin-intro__text { max-width: 100%; }
  .origin-block,
  .origin-block--philosophy { grid-template-columns: 1fr; text-align: center; gap: var(--space-md); }
  .origin-block--philosophy .origin-copy { order: -1; padding-inline-start: 0; }
  .origin-block--philosophy .origin-visual { order: 0; }
  .origin-visual { display: flex; justify-content: center; }
  .origin-photo { max-width: 100%; margin: 0 auto; }
  .origin-illustration { max-width: 300px; margin: 0 auto; }
  .origin-copy { max-width: 100%; margin: 0 auto; }

  .story-row,
  .story-row--flip { grid-template-columns: 1fr; text-align: center; }
  .story-row--flip .story-img { order: -1; }
  .story-row--flip .story-copy { order: 0; }
  .story-img { display: flex; justify-content: center; }
  .story-img img { max-width: 320px; margin: 0 auto; }
  .story-copy { max-width: 100%; margin: 0 auto; }

  .experience-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .feast-grid, .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .visit-grid .visit-map-illustration { order: -1; }
  .feast-image { display: flex; justify-content: center; }
  .feast-image img { max-width: 320px; margin: 0 auto; }
  .feast-price { font-size: 2.2rem; }
  .info-strip { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .testimonials-grid { gap: 1.5rem; }
  .testimonial-card { padding: 1.5rem; }

  .story-text p:first-of-type::first-letter { font-size: 2.8rem; }
}
@media (max-width: 600px) {
  .hero-home { padding: calc(var(--nav-height) + 1rem) 1.25rem 1.5rem; gap: 0.75rem; }
  .hero-illustration img { max-width: 72vw; }
  .hero-subtitle { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 260px; text-align: center; }
  .menu-tabs { flex-wrap: wrap; }
  .menu-tab { padding: 0.65rem 1rem; font-size: 0.85rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .visit-map, .visit-map iframe { min-height: 280px; }

  .origin { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

  .wc-card { padding: 1.75rem 1.25rem; }
  .experience-card p { font-size: 1rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.95rem; }
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.testimonial-card {
  padding: 2rem;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.85);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-attribution {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.testimonial-card cite {
  font-family: var(--font-handwritten);
  font-size: 1.4rem;
  font-style: normal;
  color: var(--terracotta);
}
.testimonial-source {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--warm-grey);
  letter-spacing: 0.03em;
}
.testimonial-divider {
  width: 40px;
  height: 2px;
  background: var(--terracotta);
  opacity: 0.25;
  margin-bottom: 1rem;
  border: none;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonial-card + .testimonial-card { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 2rem; }
}

/* ── Menu Modifiers ── */
.menu-category-note {
  font-size: 1.05rem;
  color: var(--warm-grey);
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.menu-item-modifier {
  font-size: 1rem;
  color: var(--warm-grey);
  font-style: italic;
  margin-top: 0.1rem;
}
.menu-section-intro {
  text-align: center;
  max-width: 550px;
  margin: 0 auto var(--space-lg);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.menu-section-intro .feast-price { margin: 0.5rem 0; }
.menu-section-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}
.menu-addons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem 2rem;
  margin-top: 0.5rem;
}
.menu-addon-item {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  padding: 0.25rem 0;
  color: var(--text-light);
}
.menu-addon-item span { color: var(--sage); font-weight: 500; }

/* ── Skip to Content ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 6px 6px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: top 0.3s ease;
  white-space: nowrap;
}
.skip-to-content:focus {
  top: 0;
  outline: none;
}

/* ── Focus Visible ── */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(196, 101, 60, 0.15);
}
.nav-cta:focus-visible {
  outline-color: var(--navy);
}
.experience-card:focus-visible {
  outline-offset: 4px;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.hamburger:focus-visible {
  outline-offset: 2px;
  background: rgba(43, 58, 92, 0.06);
}
.menu-tab:focus-visible {
  outline-offset: -2px;
}
.newsletter-form input[type="email"]:focus-visible {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 101, 60, 0.1);
}
.footer-links a:focus-visible,
.footer-social a:focus-visible {
  outline-color: var(--gold-light);
}

/* ── Button Active States ── */
.btn:active {
  transform: translateY(0) scale(0.98) !important;
  transition-duration: 0.1s;
}
.btn-primary:active {
  background: #b35a35;
}
.btn-outline:active {
  background: var(--navy);
  color: #fff;
}

/* ── Interactive Link Styles ── */
a { -webkit-tap-highlight-color: transparent; }

/* ── Tablet: 2-col experience grid ── */
@media (min-width: 601px) and (max-width: 900px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .experience-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
  }
  .hero-interior {
    padding: calc(var(--nav-height) + 3rem) 2rem 2.5rem;
  }
  .visit-map, .visit-map iframe { min-height: 350px; }
}

/* ── Very small screens ── */
@media (max-width: 380px) {
  :root { --nav-height: 60px; }
  .container { padding: 0 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-home { gap: 0.75rem; }
  .hero-illustration img { max-width: 70vw; }
  .hero-subtitle { font-size: 0.95rem; }
  .section-label { font-size: 1.2rem; }
  .menu-tab { padding: 0.5rem 0.75rem; font-size: 0.8rem; }
  .btn { padding: 0.65rem 1.25rem; font-size: 0.85rem; }
  .mobile-menu a { font-size: 1.5rem; gap: 1.5rem; }
  .info-strip-item h3 { font-size: 1rem; }
  .info-strip-item p { font-size: 0.95rem; }
  .newsletter-form input[type="email"] { font-size: 16px; }
  .hero-interior { padding: calc(var(--nav-height) + 2rem) 1rem 2rem; }
  .hero-interior p { font-size: 0.95rem; }
  .feast-price { font-size: 1.8rem; }
  .origin-copy p { font-size: 0.95rem; }
  .story-img img { max-width: 200px; }
  .story-copy p { font-size: 0.95rem; }
  .philosophy-block blockquote { font-size: 1.15rem; }
  .visit-info h3 { font-size: 1.1rem; }
  .hours-table td { font-size: 0.95rem; padding-right: 0.75rem; }
  .footer-brand p { font-size: 0.95rem; }
  .footer-links a { font-size: 0.95rem; }
  footer h4 { font-size: 0.95rem; }
  .testimonial-card blockquote { font-size: 1.1rem; }
  .experience-card h3 { font-size: 1.3rem; }
  .experience-card .card-hours { font-size: 1.15rem; }
  .experience-card p { font-size: 0.95rem; }
  .nav-links a { font-size: 1rem; }
}

/* ── Large desktop ── */
@media (min-width: 1200px) {
  .container { max-width: 1120px; }
  section { padding: var(--space-2xl) 0; }
  .hero-home { gap: 1rem; }
  .hero-illustration img { max-width: 580px; }
  .hero-subtitle { font-size: 1.1rem; }
  .origin-block { gap: var(--space-2xl); }
  .origin-copy p { font-size: 1.05rem; }
  .story-row { gap: var(--space-xl); }
  .story-copy p { font-size: 1.05rem; }
  .experience-grid { gap: 2.5rem; }
  .experience-card { padding: 2.75rem 2.25rem; }
  .feast-price { font-size: 2.8rem; }
  .info-strip { padding: var(--space-xl) 0; }
  .footer-grid { gap: var(--space-xl); }
  .visit-grid { gap: var(--space-xl); }
  .story-grid { gap: var(--space-xl); }
  .philosophy-block { padding: var(--space-xl) 0; }
}

/* ── Ultra-wide ── */
@media (min-width: 1440px) {
  .container { max-width: 1160px; }
  .hero-illustration img { max-width: 620px; }
  .experience-card { padding: 3rem 2.5rem; }
  .experience-card p { font-size: 1.1rem; }
  .hero-home { padding-top: calc(var(--nav-height) + 2rem); }
  .origin-block { gap: var(--space-2xl); }
  .origin-photo { max-width: 500px; }
  .origin-copy { max-width: 500px; }
  .story-row { gap: var(--space-2xl); }
  .story-img img { max-width: 500px; }
  .story-copy { max-width: 500px; }
  .story-grid { gap: var(--space-2xl); }
  .visit-grid { gap: var(--space-2xl); }
  .footer-grid { gap: var(--space-2xl); }
  nav { padding: 0 3rem; }
}

.container.content-narrow {
  max-width: var(--measure);
}

/* ── Mobile Floating Book Now Button ── */
.book-now-float {
  display: none;
}
@media (max-width: 900px) {
  .book-now-float {
    display: inline-flex;
    align-items: center;
    position: fixed;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 2.5rem));
    z-index: 500;
    background: var(--red-muted);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 0.9rem 2.4rem;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(189, 92, 93, 0.38), 0 1px 6px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.25s ease;
    text-decoration: none;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .book-now-float.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .book-now-float:hover {
    background: var(--red-dark);
    box-shadow: 0 6px 28px rgba(189, 92, 93, 0.48);
  }
  .book-now-float:active {
    transform: translateX(-50%) translateY(0) scale(0.96) !important;
    transition-duration: 0.1s;
  }
  .book-now-float:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 4px;
    box-shadow: 0 0 0 5px rgba(196, 101, 60, 0.18);
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .hero-headline .handwritten,
  .hero-headline h1,
  .hero-illustration img,
  .hero-foot,
  .hero-interior .handwritten,
  .hero-interior h1,
  .hero-interior p,
  .hero-anim-img {
    opacity: 1; transform: none;
  }
  .page-wash { opacity: 0; }
  html { scroll-behavior: auto; }
}
