/* ===================================================================
   RED TOMATO PIZZA — Homepage
   Aesthetic: warm Italian trattoria meets modern editorial
   Palette: tomato red · basil green · warm gold · cream · wood-fire char
   Type: Fraunces (display) · Hanken Grotesk (body) · Caveat (accent)
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  --tomato: #C0392B;
  --tomato-bright: #E5432F;
  --tomato-deep: #9c2a20;
  --basil: #3C6E47;
  --basil-deep: #2E5538;
  --charcoal: #2B2B2B;
  --cream: #FBF6EE;
  --cream-2: #F4EBD8;
  --gold: #C9A24B;
  --gold-2: #E6CD8A;
  --gold-text: #806522; /* AA-contrast gold for text on light backgrounds */
  --char: #1c1310;
  --char-2: #2c1c15;
  --white: #ffffff;

  --ink: #2B2B2B;
  --ink-soft: rgba(43, 43, 43, .68);

  --serif: "Fraunces", "Georgia", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --hand: "Caveat", cursive;

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 30px;
  --pill: 999px;

  --shadow-sm: 0 4px 14px rgba(64, 30, 18, .08);
  --shadow-md: 0 16px 40px rgba(64, 30, 18, .14);
  --shadow-lg: 0 30px 70px rgba(64, 30, 18, .22);

  --container: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }

::selection { background: var(--tomato); color: var(--cream); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 999;
  background: var(--tomato); color: #fff; padding: .6rem 1rem; border-radius: 0 0 10px 10px;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--tomato);
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,75,.25); }

.section-eyebrow {
  font-weight: 700; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--tomato); margin-bottom: .7rem;
}
.section-eyebrow--gold { color: var(--gold-2); }

.section-title {
  font-family: var(--serif); font-weight: 600; line-height: 1.04;
  font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.01em; color: var(--charcoal);
  font-optical-sizing: auto;
}
.section-title--light { color: var(--cream); }
.section-title .hl { color: var(--tomato); font-style: italic; }
.section-title--light .hl { color: var(--gold-2); }

.section-head { margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-head--center { text-align: center; max-width: 680px; margin-inline: auto; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.section-lead { margin-top: .9rem; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--tomato); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: .85rem 1.5rem; border-radius: var(--pill);
  background: var(--bg); color: var(--fg);
  border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .85rem; }

.btn--primary { background: var(--tomato); color: #fff; box-shadow: 0 10px 24px rgba(192,57,43,.32); }
.btn--primary:hover { background: var(--tomato-bright); box-shadow: 0 16px 34px rgba(192,57,43,.42); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--outline { background: transparent; color: var(--charcoal); border-color: rgba(43,43,43,.22); }
.btn--outline:hover { border-color: var(--tomato); color: var(--tomato); background: rgba(192,57,43,.05); }

.btn--ghost { background: rgba(43,43,43,.05); color: var(--charcoal); }
.btn--ghost:hover { background: rgba(43,43,43,.1); }

.btn--gold { background: var(--gold); color: #2a1d0a; box-shadow: 0 10px 24px rgba(201,162,75,.3); }
.btn--gold:hover { background: var(--gold-2); }

.btn--cream { background: var(--cream); color: var(--tomato); }
.btn--cream:hover { background: #fff; }

.btn--whatsapp { background: #1faf54; color: #fff; }
.btn--whatsapp:hover { background: #25c462; }

/* ---------- Scroll progress + grain ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--tomato)); transition: width .1s linear; }

.grain {
  position: fixed; inset: 0; z-index: 150; pointer-events: none; opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Top announcement marquee ---------- */
.topbar { background: var(--charcoal); color: var(--cream); overflow: hidden; font-size: .8rem; }
.topbar__track {
  display: flex; align-items: center; gap: 1.4rem; white-space: nowrap; width: max-content;
  padding: .5rem 0; animation: ticker 32s linear infinite;
}
.topbar__track span { letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.topbar__track i { color: var(--gold); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 120;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: .55rem;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header.scrolled { background: rgba(251,246,238,.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 6px 24px rgba(64,30,18,.1); }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__logo { height: 56px; width: auto; display: block; transition: transform .4s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.04) rotate(-1deg); }
.brand__logo--footer { height: 66px; filter: brightness(0) invert(1); opacity: .92; }
.brand__mark svg { display: block; transition: transform .5s var(--ease); }
.brand:hover .brand__mark svg { transform: rotate(-12deg) scale(1.06); }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.4rem; color: var(--tomato); letter-spacing: -.01em; }
.brand__sub { font-size: .58rem; letter-spacing: .26em; font-weight: 700; color: var(--basil); margin-top: 3px; }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__sub { color: var(--gold-2); }

.nav { display: flex; gap: 2rem; }
.nav a {
  position: relative; font-weight: 600; font-size: .98rem; color: var(--charcoal); padding: .3rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--tomato); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--tomato); }
.nav a:hover::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: .7rem; }
.btn--call svg { color: var(--tomato); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2.4px; background: var(--charcoal); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); z-index: 130;
  background: var(--cream); box-shadow: var(--shadow-lg);
  transform: translateX(105%); transition: transform .45s var(--ease);
  padding: 5.5rem 2rem 2rem; display: flex;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: .3rem; width: 100%; }
.mobile-menu nav > a {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--charcoal);
  padding: .7rem 0; border-bottom: 1px solid rgba(43,43,43,.08);
}
.mobile-menu nav > a:hover { color: var(--tomato); }
.mobile-menu__cta { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.4rem; }
.mobile-menu__cta .btn { width: 100%; }
.mobile-menu__note { margin-top: auto; font-size: .85rem; color: var(--ink-soft); letter-spacing: .04em; }
body.menu-open .mobile-menu { transform: translateX(0); }

.overlay { position: fixed; inset: 0; z-index: 125; background: rgba(28,19,16,.45); opacity: 0; visibility: hidden; transition: .35s var(--ease); }
body.menu-open .overlay { opacity: 1; visibility: visible; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, #fff 0%, var(--cream) 45%, var(--cream-2) 100%);
  padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
}
.hero__glow {
  position: absolute; top: 8%; right: 4%; width: 60vw; max-width: 760px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(229,67,47,.32), rgba(201,162,75,.18) 40%, transparent 66%);
  filter: blur(20px); animation: glowPulse 6s ease-in-out infinite; pointer-events: none; z-index: 0;
}
@keyframes glowPulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.08); opacity: 1; } }

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(1rem, 4vw, 3rem);
  min-height: min(82vh, 760px);
}

.hero__copy { max-width: 620px; }
.hero__title {
  font-family: var(--serif); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(2.6rem, 7vw, 5.3rem); line-height: .98; letter-spacing: -.02em; color: var(--charcoal);
  margin: 1rem 0 1.4rem;
}
.hero__title .line { display: block; }
.hero__title .line--accent { color: var(--tomato); }
.hero__title em { font-style: italic; color: var(--gold-text); position: relative; }

.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 30em; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero__trust {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .7rem;
  margin-top: 2rem; font-size: .92rem; color: var(--ink-soft); font-weight: 500;
}
.hero__trust strong { color: var(--tomato); font-family: var(--serif); font-size: 1.15rem; }
.hero__trust li span { color: var(--gold-text); }

/* Hero visual */
.hero__visual { position: relative; aspect-ratio: 1; max-width: 560px; justify-self: center; width: 100%; }
.hero__disc {
  position: absolute; inset: 8%; border-radius: 50%; overflow: hidden;
  box-shadow: 0 40px 80px rgba(120,40,20,.32), inset 0 0 0 10px rgba(255,255,255,.5);
  animation: spin 70s linear infinite;
}
.hero__disc img { width: 100%; height: 100%; object-fit: cover; }
.hero__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px dashed rgba(201,162,75,.6); animation: spin 50s linear infinite reverse;
}
.hero__ring::after {
  content: ""; position: absolute; inset: 3%; border-radius: 50%; border: 1px solid rgba(192,57,43,.18);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__badge {
  position: absolute; bottom: -2%; left: -4%; width: 118px; height: 118px;
  display: grid; place-items: center; z-index: 3;
  background: var(--cream); border-radius: 50%; box-shadow: var(--shadow-md);
  transform: translate(var(--px,0px), var(--py,0px));
}
.hero__badge svg { position: absolute; inset: 0; animation: spin 24s linear infinite; }
.badge-text { font: 700 9.2px var(--sans); letter-spacing: .14em; fill: var(--charcoal); }
.hero__badge-core { font-size: 1.7rem; }

.float { position: absolute; z-index: 3; filter: drop-shadow(0 10px 16px rgba(64,30,18,.2)); }
.float--basil { top: -3%; right: 8%; animation: floaty 7s ease-in-out infinite; }
.float--tomato { bottom: 10%; right: -4%; animation: floaty 5.5s ease-in-out infinite .6s; }
.float--leaf { top: 38%; left: -8%; animation: floaty 8s ease-in-out infinite 1s; }
/* --px / --py are set by the mouse-parallax handler so it composes with the float animation */
@keyframes floaty {
  0%,100% { transform: translate(var(--px,0px), var(--py,0px)) translateY(0) rotate(-4deg); }
  50% { transform: translate(var(--px,0px), var(--py,0px)) translateY(-16px) rotate(5deg); }
}

/* embers (shared) */
.hero__embers, .craft__embers, .cta__embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.ember {
  position: absolute; bottom: -10px; width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-2), var(--tomato));
  opacity: 0; animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  15% { opacity: .9; }
  100% { transform: translateY(-110vh) scale(1); opacity: 0; }
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(43,43,43,.3); border-radius: 14px; display: grid; place-items: start center;
}
.hero__scroll span { width: 4px; height: 9px; background: var(--tomato); border-radius: 3px; margin-top: 7px; animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: .3; } }

/* ===================================================================
   MARQUEE BAND
   =================================================================== */
.marquee {
  background: linear-gradient(100deg, var(--tomato), var(--tomato-deep));
  color: var(--cream); overflow: hidden; padding: .2rem 0;
  border-block: 3px solid var(--gold);
}
.marquee__track { display: flex; align-items: center; gap: 1.6rem; width: max-content; white-space: nowrap; padding: 1rem 0; animation: ticker 30s linear infinite; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.3rem); font-weight: 500; }
.marquee__track i { font-style: normal; font-size: 1.3rem; }

/* ===================================================================
   WHY RED TOMATO
   =================================================================== */
.why { padding-block: clamp(4rem, 9vw, 7rem); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.feature {
  background: var(--white); border-radius: var(--r-lg); padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(64,30,18,.06);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: linear-gradient(135deg, var(--gold), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature:hover::before { opacity: 1; }
.feature__icon {
  display: grid; place-items: center; width: 70px; height: 70px; border-radius: 20px; margin-bottom: 1.4rem;
  background: linear-gradient(140deg, rgba(192,57,43,.12), rgba(201,162,75,.16)); color: var(--tomato);
  transition: transform .4s var(--ease);
}
.feature:hover .feature__icon { transform: rotate(-8deg) scale(1.06); }
.feature h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--charcoal); margin-bottom: .5rem; }
.feature p { color: var(--ink-soft); }

/* ===================================================================
   CRAFT / WOOD-FIRE STORY (dark)
   =================================================================== */
.craft {
  position: relative; overflow: hidden; color: var(--cream);
  background:
    radial-gradient(90% 70% at 80% 0%, #3a241a 0%, var(--char-2) 40%, var(--char) 100%);
  padding-block: clamp(4rem, 9vw, 7.5rem);
}
.craft__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }

.craft__media { position: relative; min-height: 460px; }
.craft__img { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.craft__img img { width: 100%; height: 100%; object-fit: cover; }
.craft__media > .craft__img:first-child { width: 78%; aspect-ratio: 4/5; margin-left: auto; }
.craft__img--small {
  position: absolute; left: 0; bottom: -8%; width: 50%; aspect-ratio: 4/3;
  border: 5px solid var(--char); box-shadow: var(--shadow-lg);
}
.craft__flame {
  position: absolute; right: 12%; top: -22px; width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 50% 65%, var(--gold-2), var(--tomato) 60%, transparent 72%);
  filter: blur(2px); animation: flicker 2.2s ease-in-out infinite; z-index: 3;
}
@keyframes flicker {
  0%,100% { transform: scale(1) translateY(0); opacity: .9; }
  25% { transform: scale(1.12) translateY(-3px); opacity: 1; }
  50% { transform: scale(.94) translateY(1px); opacity: .8; }
  75% { transform: scale(1.06) translateY(-2px); opacity: 1; }
}

.craft__copy { position: relative; }
.craft__lead { margin: 1.4rem 0 0; color: rgba(251,246,238,.78); font-size: 1.12rem; max-width: 34em; }

.stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin: 2.2rem 0; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--gold-2); line-height: 1; }
.stat__label { font-size: .85rem; color: rgba(251,246,238,.6); margin-top: .4rem; max-width: 12ch; }

/* ===================================================================
   SIGNATURE DISHES (carousel)
   =================================================================== */
.signatures { padding-block: clamp(4rem, 9vw, 7rem); background: var(--cream-2); overflow: hidden; }
.carousel-nav { display: flex; gap: .6rem; }
.carousel-btn {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--charcoal); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.carousel-btn:hover { background: var(--tomato); color: #fff; transform: translateY(-2px); }
.carousel-btn:disabled { opacity: .35; cursor: default; transform: none; }

.signatures__rail { overflow: hidden; }
.signatures__track {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .6rem clamp(1.1rem, 4vw, 2.5rem) 1.6rem;
  scrollbar-width: none; cursor: grab;
  max-width: calc(var(--container) + 5rem); margin-inline: auto;
}
.signatures__track::-webkit-scrollbar { display: none; }
.signatures__track.dragging { cursor: grabbing; scroll-snap-type: none; }

.dish {
  flex: 0 0 clamp(260px, 78vw, 340px); scroll-snap-align: start;
  background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dish:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.dish__img { aspect-ratio: 5/4; overflow: hidden; }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.dish:hover .dish__img img { transform: scale(1.08); }
.dish__body { padding: 1.4rem 1.5rem 1.7rem; position: relative; }
.dish__tag {
  position: absolute; top: -1rem; right: 1.3rem;
  background: var(--basil); color: var(--cream); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .35rem .7rem; border-radius: var(--pill);
}
.dish h3 { font-family: var(--serif); font-weight: 600; font-size: 1.45rem; color: var(--charcoal); min-height: 2.1em; line-height: 1.08; text-wrap: balance; }
.dish__it { font-family: var(--hand); font-size: 1.35rem; color: var(--gold-text); line-height: 1; margin: .1rem 0 .5rem; }
.dish__body > p:not(.dish__it) { color: var(--ink-soft); font-size: .96rem; min-height: 2.8em; }
.dish__add { display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem; font-weight: 700; color: var(--tomato); }
.dish__add span { transition: transform .3s var(--ease); }
.dish__add:hover span { transform: translateX(5px); }

.signatures__foot { margin-top: 1.4rem; text-align: center; color: var(--ink-soft); width: 100%; }
.signatures__foot a { color: var(--tomato); font-weight: 700; }

/* ===================================================================
   LOCATIONS
   =================================================================== */
.locations { padding-block: clamp(4rem, 9vw, 7rem); }
.locations__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.loc-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-md); isolation: isolate;
}
.loc-card__img { position: absolute; inset: 0; z-index: -1; }
.loc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.loc-card:hover .loc-card__img img { transform: scale(1.07); }
.loc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,19,16,.05) 0%, rgba(28,19,16,.5) 55%, rgba(28,19,16,.9) 100%);
}
.loc-card__body { padding: 2rem; color: var(--cream); width: 100%; }
.loc-card__pin { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); }
.loc-card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.9rem; margin: .4rem 0 .5rem; }
.loc-card__body > p { color: rgba(251,246,238,.85); max-width: 32ch; }
.loc-card__meta { font-size: .88rem; margin-top: .5rem; color: rgba(251,246,238,.7); }
.loc-card__actions { display: flex; gap: .7rem; margin-top: 1.3rem; }
/* light secondary button so it stays legible on the dark photo */
.loc-card .btn--ghost { background: rgba(251,246,238,.16); color: var(--cream); border-color: rgba(251,246,238,.4); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.loc-card .btn--ghost:hover { background: var(--cream); color: var(--tomato); border-color: transparent; }
.tc { color: var(--gold-2); font-size: .78em; opacity: .8; }

/* ===================================================================
   CTA BAND
   =================================================================== */
.cta {
  position: relative; overflow: hidden; text-align: center; color: var(--cream);
  background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-deep) 70%, #7d2018 100%);
  padding-block: clamp(4rem, 9vw, 6.5rem);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 120%, rgba(201,162,75,.4), transparent 60%);
}
.cta__inner { position: relative; z-index: 2; max-width: 760px; }
.cta__hand { font-family: var(--hand); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--gold-2); transform: rotate(-3deg); }
.cta__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.02; letter-spacing: -.01em; margin: .2rem 0 .8rem; }
.cta__sub { font-size: 1.15rem; color: var(--cream); }

.cta__partners { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin: 2rem 0 1.6rem; }
.partner {
  background: rgba(251,246,238,.12); border: 1.5px solid rgba(251,246,238,.3); color: var(--cream);
  font-weight: 700; padding: .7rem 1.4rem; border-radius: var(--pill); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.partner:hover { background: var(--cream); color: var(--tomato); transform: translateY(-3px); border-color: transparent; }

.cta__direct { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--char); color: rgba(251,246,238,.78); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.4rem; }
.footer__tag { margin: 1.1rem 0 1.3rem; max-width: 34ch; font-size: .96rem; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(251,246,238,.08); color: var(--cream); transition: .3s var(--ease);
}
.footer__social a:hover { background: var(--tomato); transform: translateY(-3px); }

.footer__col h3 { font-family: var(--serif); font-weight: 600; color: var(--cream); font-size: 1.15rem; margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; color: rgba(251,246,238,.7); font-size: .95rem; padding: .25rem 0; }
.footer__col a:hover { color: var(--gold-2); }

.footer__bar {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(251,246,238,.12);
  font-size: .84rem; color: rgba(251,246,238,.5);
}

/* ---------- Sticky mobile order bar ---------- */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110; display: none;
  grid-template-columns: 1fr 1.4fr; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(251,246,238,.95); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 -8px 24px rgba(64,30,18,.14);
}
.mobilebar a { display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .85rem; border-radius: var(--pill); font-weight: 700; }
.mobilebar__call { background: rgba(43,43,43,.08); color: var(--charcoal); }
.mobilebar__order { background: var(--tomato); color: #fff; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 1.3rem; bottom: 1.6rem; z-index: 105; width: 50px; height: 50px; border-radius: 50%;
  background: var(--charcoal); color: var(--cream); display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9); transition: .35s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--tomato); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .09s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .27s; }
[data-reveal-delay="4"] { transition-delay: .36s; }
[data-reveal-delay="5"] { transition-delay: .45s; }
[data-reveal-delay="6"] { transition-delay: .54s; }
/* keep the magnetic snap snappy even on elements that are also reveal targets */
[data-reveal].magnetic { transition: transform .3s var(--ease), opacity .8s var(--ease); }
/* programmatic focus targets (anchor scroll) shouldn't show a stray outline */
[tabindex="-1"]:focus { outline: none; }
.signatures__track:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; min-height: 0; }
  .hero__visual { order: -1; max-width: 380px; }
  .hero__copy { max-width: 100%; }
  .craft__inner { grid-template-columns: 1fr; }
  .craft__media { order: -1; min-height: 380px; max-width: 520px; }
  .locations__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav, .header__cta .btn--call, .header__cta .btn--primary { display: none; }
  .nav-toggle { display: block; }
  .header__cta { gap: 0; }
  .why__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .locations__grid { grid-template-columns: 1fr; }
  .mobilebar { display: grid; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
  .to-top { bottom: calc(80px + env(safe-area-inset-bottom)); }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .carousel-nav { display: none; }
}

@media (max-width: 480px) {
  body { font-size: 1rem; }
  .topbar { font-size: .72rem; }
  .brand__logo { height: 46px; }
  .hero__badge { width: 92px; height: 92px; }
  .hero__badge svg { width: 92px; height: 92px; }
  .float--leaf { display: none; } /* avoids clipping at the left viewport edge */
  .hero__actions .btn { flex: 1; }
  .stats { gap: 1.4rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar { justify-content: flex-start; }
  .cta__direct .btn { flex: 1; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__disc, .hero__ring, .hero__badge svg { animation: none !important; }
}

/* ===================================================================
   MENU PAGE
   =================================================================== */
.nav a.is-active { color: var(--tomato); }
.nav a.is-active::after { transform: scaleX(1); }

/* --- Menu hero --- */
.menu-hero {
  position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(120% 90% at 80% 0%, #fff 0%, var(--cream) 50%, var(--cream-2) 100%);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.menu-hero__glow {
  position: absolute; top: -20%; right: 6%; width: 50vw; max-width: 620px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(229,67,47,.22), rgba(201,162,75,.16) 42%, transparent 66%);
  filter: blur(20px); animation: glowPulse 6s ease-in-out infinite; pointer-events: none;
}
.menu-hero__inner { position: relative; z-index: 2; max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.menu-hero__title {
  font-family: var(--serif); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(2.4rem, 6vw, 4.3rem); line-height: 1.02; letter-spacing: -.02em; color: var(--charcoal);
  margin: 1rem 0 1.1rem;
}
.menu-hero__title .ital { font-style: italic; color: var(--tomato); }
.menu-hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 34em; }
.menu-note {
  margin-top: 1.7rem; display: inline-block; max-width: 40em;
  background: rgba(201,162,75,.13); border: 1px solid rgba(201,162,75,.45); color: #6f5a23;
  padding: .65rem 1.15rem; border-radius: 16px; font-size: .9rem; line-height: 1.5;
}
.menu-note strong { color: var(--tomato); }
.menu-legend { list-style: none; display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin-top: 1.2rem; font-size: .85rem; color: var(--ink-soft); font-weight: 500; }
.menu-legend li { display: inline-flex; align-items: center; gap: .45rem; }

/* --- Sticky category sub-nav --- */
.menu-subnav {
  position: sticky; top: var(--header-h, 64px); z-index: 90;
  background: rgba(251,246,238,.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-block: 1px solid rgba(64,30,18,.08);
}
.menu-subnav__track {
  display: flex; gap: .35rem; align-items: center;
  max-width: var(--container); margin-inline: auto; padding: .55rem clamp(1.1rem, 4vw, 2.5rem);
  overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth;
}
.menu-subnav__track::-webkit-scrollbar { display: none; }
.menu-subnav a {
  white-space: nowrap; padding: .5rem 1.1rem; border-radius: var(--pill);
  font-weight: 700; font-size: .92rem; color: var(--charcoal); transition: background .25s var(--ease), color .25s;
}
.menu-subnav a:hover { background: rgba(192,57,43,.08); color: var(--tomato); }
.menu-subnav a.is-active { background: var(--tomato); color: #fff; }
.menu-subnav a:focus-visible { outline-offset: -3px; } /* inset so the ring isn't clipped by the scroll container */

/* --- Category sections --- */
.menu-cat { position: relative; padding-block: clamp(3rem, 6vw, 5rem); scroll-margin-top: calc(var(--header-h, 64px) + 58px); }
.menu-cat--alt { background: var(--cream-2); }
.menu-cat--hero {
  color: var(--cream); overflow: hidden;
  background: radial-gradient(90% 70% at 80% 0%, #3a241a 0%, var(--char-2) 45%, var(--char) 100%);
}
.menu-cat__embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.menu-cat > .container { position: relative; z-index: 2; }
.menu-cat__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.menu-cat__head--center { display: block; text-align: center; max-width: 720px; margin-inline: auto; }
.menu-cat__note { color: var(--ink-soft); font-style: italic; font-family: var(--serif); font-size: 1.08rem; }
.menu-cat--hero .menu-cat__note { color: rgba(251,246,238,.7); }
.menu-cat__lead { margin-top: .8rem; color: rgba(251,246,238,.78); font-size: 1.1rem; }

/* --- Menu dish card --- */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.mdish {
  background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.mdish:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.mdish__img { aspect-ratio: 5/4; overflow: hidden; }
.mdish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.mdish:hover .mdish__img img { transform: scale(1.07); }
.mdish__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.mdish__row { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; }
.mdish__row h3 { font-family: var(--serif); font-weight: 600; font-size: 1.32rem; color: var(--charcoal); line-height: 1.1; }
.mdish__price { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--tomato); white-space: nowrap; }
.mdish__it { font-family: var(--hand); font-size: 1.3rem; color: var(--gold-text); line-height: 1; margin: .15rem 0 .55rem; }
.mdish__desc { color: var(--ink-soft); font-size: .94rem; flex: 1; }
.mdish__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; min-height: 1.5rem; }

.mdish--dark { background: rgba(255,255,255,.045); border: 1px solid rgba(251,246,238,.12); }
.mdish--dark .mdish__row h3 { color: var(--cream); }
.mdish--dark .mdish__price { color: var(--gold-2); }
.mdish--dark .mdish__it { color: var(--gold-2); }
.mdish--dark .mdish__desc { color: rgba(251,246,238,.72); }

.tag { font-size: .67rem; font-weight: 700; letter-spacing: .04em; padding: .3rem .62rem; border-radius: var(--pill); text-transform: uppercase; line-height: 1; }
.tag--veg { background: rgba(60,110,71,.14); color: var(--basil); }
.tag--spicy { background: rgba(192,57,43,.12); color: var(--tomato); }
.tag--pick { background: rgba(201,162,75,.2); color: #6f5a23; }
.mdish--dark .tag--veg { background: rgba(95,160,109,.22); color: #a3d8b0; }
.mdish--dark .tag--spicy { background: rgba(229,67,47,.24); color: #f2a89f; }
.mdish--dark .tag--pick { background: rgba(201,162,75,.24); color: var(--gold-2); }

/* --- Drinks --- */
.drinks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.drink-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.drink-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.drink-card__img, .drink-card__plate { aspect-ratio: 16/10; overflow: hidden; }
.drink-card__img img { width: 100%; height: 100%; object-fit: cover; }
.drink-card__plate { display: grid; place-items: center; font-size: 3rem; background: linear-gradient(135deg, var(--tomato), var(--tomato-deep)); }
.drink-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.drink-card__body h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--charcoal); margin-bottom: .7rem; }
.drink-list { list-style: none; }
.drink-list li { display: flex; align-items: baseline; gap: .5rem; padding: .42rem 0; }
.drink-list li > span:first-child { color: var(--charcoal); font-weight: 500; }
.drink-list .leader { flex: 1; border-bottom: 1.5px dotted rgba(64,30,18,.28); position: relative; top: -4px; }
.drink-list .price { color: var(--tomato); font-weight: 700; white-space: nowrap; }

@media (max-width: 900px) {
  .menu-grid, .drinks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .menu-grid, .drinks-grid { grid-template-columns: 1fr; }
  .menu-cat__head { flex-direction: column; align-items: flex-start; }
}

/* ===================================================================
   CATERING PAGE
   =================================================================== */
.eyebrow--light { color: var(--gold-2); }

/* --- Hero (full-bleed image) --- */
.cat-hero {
  position: relative; overflow: hidden; isolation: isolate; color: var(--cream);
  display: flex; align-items: center;
  min-height: min(86vh, 720px); min-height: min(86svh, 720px);
}
.cat-hero__media { position: absolute; inset: 0; z-index: -2; }
.cat-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.cat-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(20,12,9,.92) 0%, rgba(20,12,9,.68) 40%, rgba(20,12,9,.28) 74%, rgba(20,12,9,.1) 100%),
    linear-gradient(0deg, rgba(20,12,9,.55) 0%, transparent 45%);
}
.cat-hero__embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.cat-hero__inner { position: relative; padding-block: clamp(3rem, 8vw, 5rem); max-width: 660px; }
.cat-hero__title {
  font-family: var(--serif); font-weight: 600; font-optical-sizing: auto;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1.02; letter-spacing: -.02em; margin: 1rem 0 1.2rem;
}
.cat-hero__title .ital { font-style: italic; color: var(--gold-2); }
.cat-hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: rgba(251,246,238,.9); max-width: 34em; }
.cat-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.cat-hero__trust { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; margin-top: 2rem; font-size: .92rem; color: rgba(251,246,238,.8); font-weight: 500; }
.cat-hero__trust li span { color: var(--gold-2); }

/* --- Intro --- */
.cat-intro { padding-block: clamp(4rem, 9vw, 6.5rem); text-align: center; }
.cat-intro__inner { max-width: 840px; margin-inline: auto; }
.cat-intro .section-title { margin-top: .5rem; }
.cat-intro__lead { margin: 1.4rem auto 0; color: var(--ink-soft); font-size: 1.15rem; max-width: 62ch; }
.cat-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.6rem, 5vw, 3.6rem); margin-top: 2.6rem; }
.cat-stats .stat { align-items: center; }
.cat-stats .stat__num { color: var(--tomato); }
.cat-stats .stat__label { color: var(--ink-soft); text-align: center; max-width: 16ch; }

/* --- Event types --- */
.event-types { padding-block: clamp(4rem, 9vw, 7rem); background: var(--cream-2); }
.event-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.event-card {
  display: grid; grid-template-columns: 220px 1fr; background: #fff;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.event-card__img { overflow: hidden; }
.event-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.event-card:hover .event-card__img img { transform: scale(1.06); }
.event-card__body { padding: 1.8rem 1.8rem 2rem; }
.event-card__kicker { font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tomato); }
.event-card__body h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--charcoal); margin: .4rem 0 .6rem; line-height: 1.12; }
.event-card__body p { color: var(--ink-soft); font-size: .98rem; }
.event-card__list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: .45rem; }
.event-card__list li { position: relative; padding-left: 1.4rem; font-size: .92rem; color: var(--charcoal); font-weight: 500; }
.event-card__list li::before { content: "✓" / ""; position: absolute; left: 0; color: var(--basil); font-weight: 800; }

/* --- What's included (reuses .why__grid / .feature) --- */
.cat-features { padding-block: clamp(4rem, 9vw, 7rem); }

/* --- How it works (dark) --- */
.steps-sec {
  position: relative; overflow: hidden; color: var(--cream);
  background: radial-gradient(90% 70% at 80% 0%, #3a241a 0%, var(--char-2) 45%, var(--char) 100%);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.steps-sec__embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.steps-sec > .container { position: relative; z-index: 2; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step { position: relative; padding: 2rem 1.5rem; background: rgba(255,255,255,.045); border: 1px solid rgba(251,246,238,.12); border-radius: var(--r-lg); }
.step__num { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--tomato); color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.4rem; margin-bottom: 1.1rem; box-shadow: 0 8px 20px rgba(192,57,43,.4); }
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--cream); margin-bottom: .5rem; }
.step p { color: rgba(251,246,238,.74); font-size: .96rem; }

/* --- Enquiry --- */
.enquiry { padding-block: clamp(4rem, 9vw, 7rem); }
.enquiry__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.enquiry__copy .cta__hand { color: var(--tomato); }
.enquiry__lead { margin: 1.2rem 0 1.6rem; color: var(--ink-soft); font-size: 1.1rem; max-width: 42ch; }
.enquiry__contacts { display: flex; flex-direction: column; gap: .8rem; }
.enquiry__contact { display: inline-flex; align-items: center; gap: .9rem; padding: .9rem 1.1rem; border-radius: var(--r); background: var(--cream-2); color: var(--charcoal); max-width: 300px; transition: transform .3s var(--ease), background .3s, box-shadow .3s; }
.enquiry__contact:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.enquiry__contact svg { color: var(--tomato); flex-shrink: 0; }
.enquiry__contact span { font-size: .92rem; line-height: 1.3; }

.enquiry__form { background: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-md); border: 1px solid rgba(64,30,18,.06); }
.field { margin-bottom: 1.1rem; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field--row > div { min-width: 0; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--charcoal); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid rgba(64,30,18,.16); border-radius: 12px;
  background: var(--cream); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(43,43,43,.42); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--tomato); box-shadow: 0 0 0 3px rgba(192,57,43,.12); background: #fff; }
.field textarea { resize: vertical; }
.enquiry__form .btn { width: 100%; margin-top: .4rem; }
.enquiry__note { margin-top: .9rem; font-size: .82rem; color: var(--ink-soft); text-align: center; }
.enquiry__form.sent .enquiry__note { color: var(--basil); font-weight: 600; }

/* --- Catering responsive --- */
@media (max-width: 1024px) {
  .enquiry__inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .event-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); max-width: none; margin-inline: 0; }
}
@media (max-width: 768px) {
  .cat-hero::after { background: linear-gradient(180deg, rgba(20,12,9,.5) 0%, rgba(20,12,9,.8) 100%); }
}
@media (max-width: 600px) {
  .event-card { grid-template-columns: 1fr; }
  .event-card__img { height: 210px; }
  .steps { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
}
