/* =============================================================================
   SAVORÉ — FINE CATERING · STYLESHEET
   Premium, editorial, warm palette. Retheme everything from :root below.
   ========================================================================== */

:root {
  /* ---- Colour tokens (change these to re-theme the whole site) ---- */
  --bg:        #FBF7F0;   /* ivory */
  --bg-2:      #F3ECDF;   /* cream */
  --ink:       #211A38;   /* deep royal indigo (body + headings) */
  --ink-soft:  #473E63;
  --muted:     #7C7488;
  --line:      #E7DBC8;
  --gold:      #B8924A;
  --gold-2:    #D9B978;
  --green:     #2E1A47;   /* royal purple (dark sections) */
  --green-2:   #3D2560;
  --brown:     #6B4A2B;
  --white:     #ffffff;

  --shadow-sm: 0 6px 20px rgba(28,24,21,.06);
  --shadow-md: 0 18px 44px rgba(28,24,21,.10);
  --shadow-lg: 0 40px 90px rgba(28,24,21,.16);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --radius:    18px;
  --radius-lg: 26px;
  --container: 1200px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(var(--container), 90%); margin-inline: auto; }

/* On desktops (no dialler) phone links don't navigate, so they shouldn't
   advertise themselves as clickable — the number stays readable and
   selectable for copying. */
.no-dialler a[href^="tel:"] { cursor: default; }
.no-dialler a[href^="tel:"].btn:hover { transform: none; }
.no-dialler a[href^="tel:"] .contact-card-value,
.no-dialler a.contact-card-value[href^="tel:"] { cursor: text; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---- Typography ---- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
}
.section-title--light { color: #F6EFE2; }
.section-lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 56ch;
  margin-top: 1.1rem;
}
.section-lead--light { color: #CDBFA9; }

.section { padding: clamp(70px, 10vw, 140px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; }
.section-head .section-lead { margin-inline: auto; }

/* =============================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans);
  font-size: .92rem; font-weight: 500; letter-spacing: .02em;
  padding: .95rem 1.7rem;
  border-radius: 100px;
  transition: transform .35s var(--ease), background .35s var(--ease),
              color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn .ico { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .62rem 1.15rem; font-size: .84rem; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #2a2114;
  box-shadow: 0 14px 30px rgba(184,146,74,.32);
}
.btn-gold:hover { box-shadow: 0 20px 42px rgba(184,146,74,.42); }

.btn-dark { background: var(--ink); color: #F6EFE2; }
.btn-dark:hover { background: #322a22; }

.btn-outline {
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.06);
}
.btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-ghost { border: 1px solid rgba(51,32,107,.32); color: #33206b; background: transparent; }
.btn-ghost:hover { background: #33206b; color: #fff; border-color: #33206b; }

/* =============================================================================
   PLACEHOLDER MEDIA SYSTEM
   .media has an elegant gradient background always behind the image, so if a
   photo is missing (before you drop yours in), it still looks designed.
   Drop real files into /assets/images with the referenced names to replace.
   ========================================================================== */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 20% 15%, #EAD9BC 0%, transparent 55%),
    radial-gradient(120% 120% at 85% 80%, #C7A97D 0%, transparent 55%),
    linear-gradient(150deg, #7C5A38 0%, #3d2c1c 100%);
  isolation: isolate;
}
.media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), opacity .6s ease;
}
.media.is-missing img { opacity: 0; }
.media::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: none;
  align-items: flex-end;
  padding: 1.1rem 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  background: linear-gradient(180deg, transparent 55%, rgba(20,14,8,.5));
  z-index: 1;
  pointer-events: none;
}
.media.is-missing::after { display: flex; }
.media.is-missing::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 9px);
  z-index: 0;
}

/* =============================================================================
   HEADER / NAV
   ========================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
}

/* Header is a solid white bar (matches the logo's white background) with
   royal-purple text, on every scroll position. */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(46,26,71,.08);
  transition: box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: .35rem 0;
}
.site-header.scrolled { box-shadow: 0 8px 26px rgba(46,26,71,.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-logo { height: 46px; width: auto; color: var(--ink); transition: color .4s; }
/* business name beside the logo — same royal purple as the hero background */
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: .04em;
  color: #2E1A47;
  white-space: nowrap;
}
.hero-active .brand-logo { color: #F6EFE2; }

.nav { display: flex; gap: 2rem; }
.nav a {
  font-size: .93rem; font-weight: 500; color: #33206b; position: relative; padding: .3rem 0;
  transition: color .3s;
}
.hero-active .nav a { color: rgba(255,255,255,.82); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: .8rem; }
.hero-active .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }

.nav-toggle { display: none; width: 42px; height: 42px; color: #33206b; flex-direction: column; gap: 5px; justify-content: center; align-items: center; border-radius: 10px; }
.nav-toggle span { width: 22px; height: 2px; background: currentColor; transition: transform .3s, opacity .3s; }
.hero-active .nav-toggle { color: #fff; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* when the panel is open, the hamburger hides — the panel's own × closes it */
.nav-toggle.open { display: none; }

/* close (×) button inside the mobile panel */
.nav-close {
  display: none;
  position: absolute; top: 14px; right: 16px;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  font-size: 2.4rem; line-height: 1; color: #F6EFE2;
  border-radius: 12px; transition: color .3s, background .3s;
}
.nav-close:hover { color: var(--gold-2); background: rgba(255,255,255,.06); }

/* full-screen click-catcher behind the panel (mobile only) */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 105;
  background: rgba(16,9,26,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* =============================================================================
   HERO — 3D LAYERED SCENE
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(90% 70% at 50% 0%, #3c2568 0%, transparent 60%),
    linear-gradient(160deg, #251743 0%, #120a24 100%);
  overflow: hidden;
  perspective: 1400px;
}
.hero-stage {
  position: relative;
  width: min(1200px, 92%);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-glow {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  width: 70vw; height: 70vw; max-width: 780px; max-height: 780px;
  background: radial-gradient(circle, rgba(217,185,120,.28) 0%, rgba(184,146,74,.10) 40%, transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
  z-index: 0;
}

.hero-plate {
  position: absolute;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  will-change: transform;
  z-index: 1;
  transition: box-shadow .45s var(--ease);
}
.hero-plate img { border-radius: 20px; transition: transform .45s var(--ease); }
/* hover pop: the parallax engine owns the figure's transform, so the zoom
   lives on the inner image; the figure gets a lifted shadow + gold glow */
.hero-plate:hover {
  z-index: 5;
  box-shadow: 0 34px 80px rgba(0,0,0,.55), 0 0 0 2px rgba(217,185,120,.65),
              0 0 42px rgba(217,185,120,.28);
}
.hero-plate:hover img { transform: scale(1.07); }
/* seamless variant: transparent-background photo floats directly on the hero
   gradient — no card box, no clipping; depth comes from a shape-following
   drop shadow instead of a rectangular box-shadow */
.hero-plate--seamless,
.hero-plate--seamless:hover { background: none; box-shadow: none; border-radius: 0; }
.hero-plate--seamless img {
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(0,0,0,.5));
  transition: transform .45s var(--ease), filter .45s var(--ease);
}
.hero-plate--seamless:hover img {
  transform: scale(1.07);
  filter: drop-shadow(0 32px 46px rgba(0,0,0,.6)) drop-shadow(0 0 26px rgba(217,185,120,.35));
}
.hero-plate--left  { width: 240px; height: 300px; top: 30%; left: -2%; transform: rotate(-6deg); }
.hero-plate--right { width: 250px; height: 310px; top: 26%; right: -2%; transform: rotate(6deg); }

.chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem;
  font-size: .82rem; letter-spacing: .02em; color: #2a2114;
  background: rgba(255,255,255,.9);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
  z-index: 3;
  will-change: transform;
}
.chip .ico { width: 1.1em; height: 1.1em; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.chip--1 { top: 13%; left: 0%; }
.chip--2 { top: 80%; left: 1%; }
.chip--3 { top: 74%; right: 1%; }
/* chips are decorative — only show where there's room beside the copy column */
@media (max-width: 1180px) { .hero .chip { display: none; } }

.hero-content {
  position: relative; z-index: 4;
  text-align: center;
  max-width: 760px; margin: 0 auto;
  padding: clamp(80px, 16vh, 180px) 0;
  color: #F6EFE2;
  will-change: transform, opacity;
}
.hero-content .eyebrow { color: var(--gold-2); }
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  text-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hero-sub {
  margin: 1.5rem auto 2.4rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(246,239,226,.82);
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(246,239,226,.6); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  z-index: 5;
}
.scroll-cue-line { width: 1px; height: 46px; background: rgba(246,239,226,.25); position: relative; overflow: hidden; }
.scroll-cue-line i { position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-2); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* =============================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =============================================================================
   ABOUT
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.about-visual { position: relative; }
.about-media { aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.about-media--sm {
  position: absolute; right: -8%; bottom: -12%;
  width: 46%; aspect-ratio: 1/1;
  border: 8px solid var(--bg);
  box-shadow: var(--shadow-md);
}
.about-copy .section-lead { margin-left: 0; }
.about-copy p { color: var(--muted); margin-top: 1.1rem; max-width: 52ch; }
.about-copy #aboutBody { margin-top: 1.4rem; }
.about-copy #aboutBody p { opacity: 0; transform: translateY(20px); transition: .9s var(--ease); }
.about-copy #aboutBody p.in { opacity: 1; transform: none; }
.stats { display: flex; flex-wrap: wrap; gap: 2.4rem; margin: 2.2rem 0; }
.stat { }
.stat strong { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat span { font-size: .84rem; color: var(--muted); letter-spacing: .04em; }

/* =============================================================================
   SERVICES
   ========================================================================== */
.services { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.service-card {
  position: relative;
  overflow: hidden;            /* keeps the ripple inside the square */
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
/* ripple canvas sits above the card background but BELOW the icon and text,
   so wording stays fully legible while the wave passes through */
.service-ripple {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.service-card > .service-ico,
.service-card > h3,
.service-card > p { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-2); }
.service-ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #FBF1DC, #F0E1C2);
  margin-bottom: 1.3rem;
}
.service-ico svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .95rem; }

/* =============================================================================
   MENU SHOWCASE
   ========================================================================== */
/* 4 categories → one balanced row on wide screens (matches the services grid) */
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.menu-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.menu-card .media { position: absolute; inset: 0; border-radius: 0; }
/* direct-child only: split cards zoom per half instead (see .menu-split below) */
.menu-card:hover > .media img { transform: scale(1.08); }

/* two photos stacked inside one card, each with its own hover zoom */
.menu-split { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr 1fr; }
.menu-split-item { position: relative; overflow: hidden; }
.menu-split-item + .menu-split-item { box-shadow: 0 -1px 0 rgba(255,255,255,.22); }
.menu-split-item .media { position: absolute; inset: 0; border-radius: 0; }
.menu-split-item:hover .media img { transform: scale(1.09); }

.menu-card-body {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; /* let hover reach the image halves underneath */
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem;
  color: #fff;
  background: linear-gradient(180deg, transparent 40%, rgba(18,12,7,.28) 60%, rgba(18,12,7,.82) 100%);
}
.menu-card-body h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.menu-card-body p { font-size: .9rem; color: rgba(255,255,255,.82); margin-top: .2rem; }
.menu-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .5s var(--ease), margin .5s var(--ease); }
.menu-card:hover .menu-tags { max-height: 60px; opacity: 1; }
.menu-tags span { font-size: .72rem; letter-spacing: .04em; padding: .3rem .7rem; border: 1px solid rgba(255,255,255,.4); border-radius: 100px; backdrop-filter: blur(4px); }
.menu-cta { text-align: center; margin-top: 3rem; }

/* =============================================================================
   3D FEATURE SECTION (scroll-scrubbed depth scene)
   ========================================================================== */
.feature3d { position: relative; height: 260vh; background: linear-gradient(180deg, var(--bg-2) 0%, #20143a 22%, #140a26 100%); }
.feature3d-sticky {
  position: sticky; top: 0; height: 100vh;
  display: grid; place-items: center;
  overflow: hidden;
  perspective: 1200px;
}
.feature3d-scene { position: relative; width: min(1100px, 92%); height: 80vh; transform-style: preserve-3d; }

.plate-rotor {
  position: absolute; left: 50%; top: 50%;
  width: clamp(240px, 34vw, 420px); aspect-ratio: 1/1;
  transform: translate(-50%,-50%);
  display: grid; place-items: center;
  will-change: transform;
}
.plate-media {
  width: 78%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(217,185,120,.4);
  transition: box-shadow .45s var(--ease);
}
.plate-media img { border-radius: 50%; transition: transform .5s var(--ease); }
/* hover zoom (matches the other photos) — the scroll engine owns the
   rotor's transform, so the zoom lives on the inner image */
.plate-rotor:hover .plate-media { box-shadow: var(--shadow-lg), 0 0 0 2px rgba(217,185,120,.75), 0 0 34px rgba(217,185,120,.3); }
.plate-rotor:hover .plate-media img { transform: scale(1.08); }
.plate-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(217,185,120,.35); }
.plate-ring--2 { inset: -8%; border-color: rgba(217,185,120,.18); }

/* circular photo satellites orbiting the centre plate */
.float-card {
  position: absolute;
  width: clamp(120px, 15vw, 190px); aspect-ratio: 1/1;
  border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(217,185,120,.35);
  will-change: transform, opacity;
  transition: box-shadow .45s var(--ease);
}
.float-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: transform .5s var(--ease); }
.float-card:hover { box-shadow: var(--shadow-lg), 0 0 0 2px rgba(217,185,120,.75), 0 0 30px rgba(217,185,120,.28); }
.float-card:hover img { transform: scale(1.09); }
.float-card--1 { left: 4%;  top: 8%; }
.float-card--2 { right: 3%; top: 12%; }
.float-card--3 { left: 8%;  bottom: 6%; }
.float-card--4 { right: 7%; bottom: 10%; }

.feature3d-copy { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); text-align: center; z-index: 6; color: #F6EFE2; width: min(600px, 84%); }
.feature3d-copy::before {
  content: ""; position: absolute; inset: -60% -25%; z-index: -1;
  background: radial-gradient(60% 60% at 50% 50%, rgba(10,7,3,.78) 0%, rgba(10,7,3,.42) 42%, transparent 72%);
}
.feature3d-copy .eyebrow { color: var(--gold-2); }
.feature3d-copy .section-title { color: #F6EFE2; }
.feature3d-copy .section-lead { color: rgba(246,239,226,.75); margin-inline: auto; }

/* =============================================================================
   EVENTS
   ========================================================================== */
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.event-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.event-card:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.event-card .media { position: absolute; inset: 0; border-radius: 0; }
.event-card:hover .media img { transform: scale(1.08); }
.event-body {
  position: absolute; inset: 0; z-index: 2; padding: 1.4rem;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
  background: linear-gradient(180deg, transparent 45%, rgba(18,12,7,.8) 100%);
}
.event-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.event-body p { font-size: .85rem; color: rgba(255,255,255,.8); }

/* =============================================================================
   GALLERY (masonry-style) + LIGHTBOX
   ========================================================================== */
.gallery-grid { columns: 3; column-gap: 1.1rem; }
.gallery-item {
  display: block; width: 100%; padding: 0; text-align: inherit;
  break-inside: avoid; margin-bottom: 1.1rem;
  border-radius: var(--radius); overflow: hidden; cursor: zoom-in;
  box-shadow: var(--shadow-sm); position: relative;
}
.gallery-item .media { border-radius: 0; }
.gallery-item.g-tall .media { aspect-ratio: 3/4; }
.gallery-item.g-wide .media { aspect-ratio: 4/3; }
.gallery-item .media { aspect-ratio: 1/1; }
.gallery-item:hover .media img { transform: scale(1.08); }
/* gallery tiles stay clean — no descriptive caption on the empty placeholders
   (the label is still used for the alt text / screen-reader button name) */
.gallery-item .media.is-missing::after,
.lightbox-figure.is-missing::after { display: none; }
.gallery-item::after {
  content: "＋"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.6);
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.9); color: var(--ink); font-size: 1.4rem;
  opacity: 0; transition: opacity .4s, transform .4s; z-index: 3;
}
.gallery-item:hover::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,10,6,.92); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .35s var(--ease);
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox-figure { width: min(900px, 90vw); max-height: 84vh; aspect-ratio: auto; }
.lightbox-figure img { width: 100%; max-height: 84vh; object-fit: contain; }
/* graceful sizing while a real photo hasn't been added yet */
.lightbox-figure.is-missing { width: min(760px, 90vw); aspect-ratio: 4/3; }
.lightbox-close { position: absolute; top: 20px; right: 26px; color: #fff; font-size: 2.4rem; line-height: 1; width: 48px; height: 48px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 3rem; width: 60px; height: 60px; opacity: .8; transition: opacity .3s; }
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 2%; }
.lightbox-next { right: 2%; }

/* =============================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.testimonial {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-quote { font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; font-weight: 500; color: var(--ink-soft); font-style: italic; }
.testimonial-quote::before { content: "“"; color: var(--gold); font-size: 2.4rem; line-height: 0; vertical-align: -.4rem; margin-right: .2rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold)); display: grid; place-items: center; color: #2a2114; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; }
.testimonial-name { font-weight: 500; color: var(--ink); font-size: .96rem; }
.testimonial-role { font-size: .82rem; color: var(--muted); }
.testimonial-date { font-size: .78rem; color: var(--muted); margin-left: auto; white-space: nowrap; }
.testimonial .star-row { margin-bottom: .9rem; }

/* =============================================================================
   REVIEWS — average rating, star rendering, submission modal
   ========================================================================== */
/* star row: outline layer with a gold layer clipped to --pct (supports halves) */
.star-row { position: relative; display: inline-block; line-height: 0; }
.star-row-base, .star-row-fill { display: flex; gap: .12em; }
.star-row-fill {
  position: absolute; inset: 0 auto 0 0;
  width: var(--pct, 0%); overflow: hidden; white-space: nowrap;
}
.star-row svg { width: 1em; height: 1em; flex: 0 0 auto; }
.star-row-base svg { fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: .45; }
.star-row-fill svg { fill: var(--gold); stroke: var(--gold); stroke-width: 1.2; }
.star-row { font-size: 1.15rem; }

.rating-summary {
  display: inline-flex; align-items: center; gap: 1.1rem;
  margin: 1.8rem 0 1.6rem;
  padding: 1rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.rating-average {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.rating-of { text-align: left; }
.rating-count { font-size: .82rem; color: var(--muted); margin-top: .25rem; }
.reviews-empty { text-align: center; color: var(--muted); font-family: var(--serif); font-style: italic; font-size: 1.15rem; }

/* ---- modal ---- */
.review-modal {
  position: fixed; inset: 0; z-index: 320;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  background: rgba(20,12,36,.72); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .3s var(--ease);
  overflow-y: auto;
}
.review-modal.open { opacity: 1; }
.review-modal[hidden] { display: none; }
.review-modal-panel {
  position: relative;
  width: min(520px, 100%);
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.98);
  transition: transform .35s var(--ease);
  margin: auto;
}
.review-modal.open .review-modal-panel { transform: none; }
.review-close {
  position: absolute; top: .7rem; right: .9rem;
  width: 40px; height: 40px; border-radius: 10px;
  font-size: 1.9rem; line-height: 1; color: var(--muted);
  transition: color .3s, background .3s;
}
.review-close:hover { color: var(--ink); background: rgba(0,0,0,.05); }
.review-modal-title { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--ink); }
.review-modal-sub { color: var(--muted); font-size: .92rem; margin: .3rem 0 1.4rem; }

/* ---- star input ---- */
.star-input { border: none; margin-bottom: 1.1rem; }
.star-input legend, .review-field > span {
  font-size: .76rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--muted); margin-bottom: .5rem; display: block;
}
.review-field > span em { text-transform: none; letter-spacing: 0; font-style: normal; opacity: .75; }
.star-input-row { display: flex; gap: .3rem; }
.star-btn {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  transition: transform .2s var(--ease), background .2s;
}
.star-btn svg { width: 30px; height: 30px; fill: none; stroke: var(--gold); stroke-width: 1.4; transition: fill .18s, opacity .18s; opacity: .5; }
.star-btn.on svg { fill: var(--gold); opacity: 1; }
.star-btn:hover { transform: translateY(-2px); background: rgba(184,146,74,.1); }
.star-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.star-input-label { display: block; margin-top: .45rem; font-size: .85rem; color: var(--gold); min-height: 1.2em; }

/* ---- fields ---- */
.review-field { display: block; margin-bottom: 1.1rem; position: relative; }
.review-field input, .review-field textarea {
  width: 100%; font-family: var(--sans); font-size: .98rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; transition: border-color .25s, box-shadow .25s;
  resize: vertical;
}
.review-field input:focus, .review-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,.18);
}
.review-field input::placeholder, .review-field textarea::placeholder { color: #b3aaa0; }
.review-counter { position: absolute; right: .2rem; bottom: -1.15rem; font-size: .74rem; color: var(--muted); }
.review-error {
  background: rgba(176,58,58,.08); border: 1px solid rgba(176,58,58,.3);
  color: #9c2f2f; border-radius: 10px; padding: .6rem .9rem; font-size: .88rem; margin-bottom: 1rem;
}
.review-submit { width: 100%; justify-content: center; margin-top: .6rem; }
.review-submit[disabled] { opacity: .6; cursor: progress; transform: none; }

@media (max-width: 560px) {
  .rating-summary { flex-direction: column; gap: .5rem; border-radius: var(--radius); text-align: center; }
  .rating-of { text-align: center; }
}

/* =============================================================================
   INSTAGRAM SECTION
   ========================================================================== */
.insta { background: linear-gradient(160deg, var(--green) 0%, #170e2b 100%); color: #F6EFE2; text-align: center; }
.insta-head { max-width: 640px; margin: 0 auto 3rem; }
/* no tile grid below (no posts yet) → drop the gap that separated them */
.insta-head:last-child { margin-bottom: 0; }
.insta-head .section-lead { margin-inline: auto; }
.insta-handle { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--gold-2); margin: 1rem 0 1.6rem; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; }
.insta-tile { position: relative; aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); }
.insta-tile .media { position: absolute; inset: 0; border-radius: 0; }
.insta-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: rgba(46,26,71,.42); opacity: 0; transition: opacity .4s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.insta-tile:hover::after { opacity: 1; }
.insta-tile:hover .media img { transform: scale(1.08); }

/* =============================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--bg-2); }
.contact-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.contact-copy .section-lead { margin-left: 0; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex; align-items: center; gap: 1.1rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.contact-card-ico { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, #FBF1DC, #F0E1C2); }
.contact-card-ico svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-card-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.contact-card-value { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
a.contact-card-value:hover { color: var(--gold); }

/* =============================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #160b28; color: #B6ABC4; padding: clamp(50px, 7vw, 90px) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { height: 50px; color: #F6EFE2; margin-bottom: 1.2rem; }
.footer-desc { max-width: 42ch; font-size: .95rem; margin-bottom: 1.5rem; color: #9c92b0; }
.footer-heading { font-family: var(--serif); font-size: 1.2rem; color: #F6EFE2; margin-bottom: 1.1rem; }
.footer-nav { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav a, .footer-line { color: #B7AB99; font-size: .95rem; transition: color .3s; }
.footer-nav a:hover, a.footer-line:hover { color: var(--gold-2); }
.footer-contact { display: flex; flex-direction: column; gap: .7rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-top: 1.8rem; font-size: .82rem; color: #8a7fa4; }

/* =============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
}
@media (max-width: 820px) {
  .nav, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82%);
    flex-direction: column; gap: 1.4rem; justify-content: center; align-items: flex-start;
    background: rgba(20,14,9,.97); backdrop-filter: blur(16px);
    padding: 2rem 2.4rem; transform: translateX(100%); transition: transform .45s var(--ease);
    z-index: 110;
  }
  .nav.open { display: flex; transform: translateX(0); }
  .nav a { color: #F6EFE2 !important; font-family: var(--serif); font-size: 1.6rem; }
  .nav-close { display: flex; }
  .nav-backdrop { display: block; }
  .brand-name { font-size: 1.05rem; letter-spacing: .02em; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media--sm { width: 40%; right: 0; bottom: -8%; }
  .contact-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .gallery-grid { columns: 2; }
  .hero-plate--left, .hero-plate--right { display: none; }
}
@media (max-width: 560px) {
  .services-grid, .menu-grid, .events-grid { grid-template-columns: 1fr; }
  .event-card:first-child { grid-column: auto; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 1; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .stats { gap: 1.6rem; }
  .about-media--sm { display: none; }
}

/* ---- Reduced motion: honour user preference ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-plate, .chip, .float-card, .plate-rotor { transform: none !important; }
}

/* =============================================================================
   PHOTO LETTER SCATTER
   Hover treatment for real photography (figure.media). Letters render in a
   fixed overlay on <body> so no card, tile or grid can clip them; see
   js/photo-letter-scatter.js for why.
   ========================================================================== */

/* Letter colour follows the section it is hovering over. */
:root { --ls-color: var(--ink);  --ls-halo: rgba(251,247,240,.55); }
.hero  { --ls-color: #F6EFE2;    --ls-halo: rgba(20,12,36,.6); }
.insta { --ls-color: #F6EFE2;    --ls-halo: rgba(20,12,36,.6); }

/* The frame is the part that shrinks. It takes over clipping the zoomed image
   so the figure's own transform stays free for main.js's parallax. */
.ls-frame {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  transform-origin: center;
}

/* GSAP owns the zoom on enhanced photos, so the CSS transition would only
   fight it. Untouched on touch/reduced-motion, where CSS still does the work.
   No will-change here on purpose: 30 permanently promoted layers costs more
   than it saves, and GSAP promotes each image for the duration of its tween. */
.ls-photo.ls-live .ls-frame img { transition: none; }

.ls-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;          /* above cards + header, below the lightbox (320) */
  overflow: visible;
  pointer-events: none;
  visibility: hidden;
}
.ls-overlay.is-on { visibility: visible; }

.ls-cloud { position: absolute; top: 0; left: 0; }

.ls-char {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ls-color);
  font-family: var(--sans);
  font-size: clamp(.72rem, 1.05vw, 1rem);
  font-weight: 500;
  line-height: 1;
  white-space: pre;
  text-shadow: 0 1px 0 var(--ls-halo);
  will-change: transform, opacity;
}

/* Decorative only: no letters on touch, and nothing moves under reduced
   motion. Both fall back to the site's existing CSS hover zoom. */
@media (hover: none), (pointer: coarse) {
  .ls-overlay { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ls-overlay { display: none !important; }
  .ls-frame { transform: none !important; }
}

/* ---- Cakes cross-link (sister site), under the Instagram button ---------- */
.insta-cakes {
  margin-top: 2.6rem;
  padding-top: 2.1rem;
  border-top: 1px solid rgba(246,239,226,.14);
}
.insta-cakes[hidden] { display: none; }
.insta-cakes-msg {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(246,239,226,.86);
  margin: 0 0 1.15rem;
}
