/* ============================================
   PANKHURST DUBAI — style-2026.css
   Augmentation "10K€ feeling" du style de base.
   - Custom cursor desktop
   - Scroll progress bar
   - Marquee infinie
   - Hero poster fallback img (avant que <video> charge)
   - Parallax multi-couches (about-figure)
   - Showreel video frame avec coins glass
   - Galerie masonry photos
   - Grid 6 cards services
   - Glass cards avis
   - Gradient mesh animé (final-cta)
   - Footer enrichi
   ============================================ */

/* ---------- 1. CUSTOM CURSOR (desktop) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent-pale);
  transition: transform 0.06s linear, opacity 0.2s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-accent-pale);
  transition: transform 0.18s var(--ease-out), width 0.25s var(--ease-out),
              height 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
              opacity 0.2s ease, background 0.25s ease;
}
.cursor-ring.hovering {
  width: 60px; height: 60px;
  background: rgba(158, 127, 74, 0.14);
  border-color: var(--color-accent);
}
@media (max-width: 900px), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .btn, input, textarea, select, [role="button"] { cursor: none; }
}

/* ---------- 2. SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-pale));
  z-index: 9998;
  box-shadow: 0 0 14px var(--color-glow);
  pointer-events: none;
  will-change: width;
  transition: width 0.06s linear;
}

/* ---------- 3. HERO POSTER FALLBACK ---------- */
.hero-poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.85) saturate(1.05);
}
.hero-video {
  z-index: -2 !important;
}

/* Refined hero overlay — more cinematic */
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.50) 0%, rgba(5, 4, 3, 0.62) 55%, rgba(5, 4, 3, 0.95) 100%),
    radial-gradient(ellipse at 18% 78%, rgba(158, 127, 74, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 22%, rgba(91, 14, 26, 0.08) 0%, transparent 60%);
}

/* Hero title — bigger, with Fraunces variable weight */
.hero-title {
  font-variation-settings: "opsz" 120, "wght" 300, "SOFT" 50;
  text-shadow: 0 4px 40px rgba(0,0,0,0.45);
  /* Fix : désactive les ligatures discrétionnaires + alternates contextuelles
     qui rendaient le 'f' italique de 'Mayfair' déformé en chevauchant le 'a' */
  font-feature-settings: "liga" 0, "dlig" 0, "calt" 0;
  font-variant-ligatures: no-common-ligatures no-discretionary-ligatures no-contextual;
  letter-spacing: -0.015em; /* légèrement détendu (était -0.022em par défaut) */
}
.hero-title em {
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100;
  font-feature-settings: "liga" 0, "dlig" 0;
}

/* ---------- 4. MARQUEE BAND ---------- */
.marquee-band {
  background: var(--color-bg-darker);
  border-top: 1px solid var(--color-line-soft);
  border-bottom: 1px solid var(--color-line-soft);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
}
.marquee-band::before, .marquee-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-band::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-darker), transparent);
}
.marquee-band::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg-darker), transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  animation: marquee-scroll 64s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--color-text-muted);
  letter-spacing: 0.005em;
  flex-shrink: 0;
}
.marquee-item strong {
  color: var(--color-accent);
  font-style: normal;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin-right: 0.3rem;
}
.marquee-sep {
  color: var(--color-accent);
  opacity: 0.5;
  font-size: 1.1rem;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- 5. PARALLAX FIGURE (about) ---------- */
.about-figure {
  aspect-ratio: 4/5;
  position: relative;
  background: var(--color-bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}
.about-figure-img,
.about-figure-overlay {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.about-figure-img {
  z-index: 1;
  transition: transform 1.6s var(--ease-out);
}
.about-figure-overlay {
  z-index: 2;
  width: 52%;
  height: 44%;
  bottom: 6%;
  left: 6%;
  top: auto;
  right: auto;
  border-radius: var(--radius);
  border: 6px solid var(--color-bg);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.7);
  object-position: center;
}
.about-figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 4, 3, 0.50));
  pointer-events: none;
  z-index: 3;
}
.about-figure-stamp {
  position: absolute;
  z-index: 4;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(158, 127, 74, 0.4);
  background: rgba(5, 4, 3, 0.65);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-radius: var(--radius);
  text-align: right;
  display: flex; flex-direction: column;
  gap: 0.1rem;
}
.about-figure-stamp em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 400;
  line-height: 1;
}
.about-figure-stamp small {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (hover: hover) {
  .about-figure:hover .about-figure-img { transform: scale(1.04); }
}

/* ---------- 6. SHOWREEL VIDEO FRAME ---------- */
.showreel {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(158, 127, 74, 0.06), transparent 55%),
    var(--color-bg-darker);
  position: relative;
}
.showreel-frame {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-line);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(158, 127, 74, 0.08);
}
.showreel-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Corner accents — luxury frame */
.showreel-corner {
  position: absolute;
  width: 28px; height: 28px;
  z-index: 3;
  pointer-events: none;
}
.showreel-corner-tl {
  top: 14px; left: 14px;
  border-top: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
}
.showreel-corner-tr {
  top: 14px; right: 14px;
  border-top: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
}
.showreel-corner-bl {
  bottom: 14px; left: 14px;
  border-bottom: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
}
.showreel-corner-br {
  bottom: 14px; right: 14px;
  border-bottom: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
}

/* ---------- 7. SERVICES 6-COL GRID ---------- */
.dishes-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
}
@media (max-width: 1000px) {
  .dishes-grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .dishes-grid-6 { grid-template-columns: 1fr; }
}

.dish-card {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(232, 226, 214, 0.025), rgba(232, 226, 214, 0.005)),
    var(--color-bg-soft);
}
.dish-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(158, 127, 74, 0), rgba(158, 127, 74, 0.4), rgba(158, 127, 74, 0));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.dish-card > * { position: relative; z-index: 1; }
@media (hover: hover) {
  .dish-card:hover::before { opacity: 1; }
}

/* ---------- 8. GALLERY MASONRY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.85rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-bg-elevated);
  margin: 0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.5s var(--ease);
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 4, 3, 0.70));
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease);
}
.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 1rem;
  left: 1.1rem; right: 1.1rem;
  z-index: 2;
  color: var(--color-text);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.92rem;
  letter-spacing: 0.005em;
  line-height: 1.3;
  opacity: 0.92;
  transform: translateY(0);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
@media (hover: hover) {
  .gallery-item:hover img { transform: scale(1.08); filter: brightness(1.1); }
  .gallery-item:hover::before { opacity: 1; }
}

/* Asymmetric layout */
.gallery-item-tall { grid-column: span 2; grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; grid-row: span 1; }
.gallery-grid > .gallery-item:not(.gallery-item-tall):not(.gallery-item-wide) {
  grid-column: span 1; grid-row: span 1;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item-tall { grid-column: span 2; grid-row: span 2; }
  .gallery-item-wide { grid-column: span 2; grid-row: span 1; }
  .gallery-grid > .gallery-item:not(.gallery-item-tall):not(.gallery-item-wide) {
    grid-column: span 1; grid-row: span 1;
  }
}

.gallery-note {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-dim);
  font-style: italic;
}

/* ---------- 9. GLASS REVIEW CARDS ---------- */
.review-card-glass {
  background:
    linear-gradient(135deg, rgba(232, 226, 214, 0.06), rgba(232, 226, 214, 0.015)),
    rgba(31, 27, 23, 0.62);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(158, 127, 74, 0.18);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55);
  transition: all 0.5s var(--ease);
}
@media (hover: hover) {
  .review-card-glass:hover {
    border-color: rgba(158, 127, 74, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 32px 80px -24px rgba(0,0,0,0.65);
  }
}

/* ---------- 10. CONTACT MAP — Google iframe ---------- */
.contact-map-frame {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.5);
  filter: grayscale(0.55) contrast(1.1) brightness(0.85);
  background: var(--color-bg-soft);
}
.contact-map-frame iframe {
  width: 100%; height: 100%;
  display: block;
}

/* ---------- 11. GRADIENT MESH ANIMÉ (final-cta) ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta-mesh {
  position: absolute;
  inset: -25%;
  z-index: -1;
  background:
    conic-gradient(
      from 0deg at 50% 50%,
      rgba(158, 127, 74, 0.22) 0deg,
      rgba(5, 4, 3, 0.0) 90deg,
      rgba(91, 14, 26, 0.16) 180deg,
      rgba(5, 4, 3, 0.0) 270deg,
      rgba(158, 127, 74, 0.22) 360deg
    );
  filter: blur(70px) saturate(140%);
  animation: mesh-rotate 60s linear infinite;
  will-change: transform;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 100% 60% at 50% 50%, rgba(158, 127, 74, 0.12), transparent 70%),
    var(--color-bg-darker);
}
@keyframes mesh-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .final-cta-mesh { animation: none; }
}

/* ---------- 12. FOOTER ENRICHI ---------- */
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1;
}
.footer-brand-em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}
.footer-tagline {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 28ch;
}
.footer-signature {
  color: var(--color-accent);
  font-style: italic;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
@media (hover: hover) {
  .footer-signature:hover { border-bottom-color: var(--color-accent); }
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- 13. NAV REFINEMENTS (glass plus marqué) ---------- */
.nav.scrolled {
  background: rgba(10, 9, 8, 0.68);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

/* ---------- 14. BUTTON ENRICHMENT — gradient + shimmer ---------- */
.btn-primary {
  background:
    linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-soft) 100%);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 226, 214, 0.25), transparent);
  transition: left 0.7s var(--ease);
}
@media (hover: hover) {
  .btn-primary:hover::before { left: 100%; }
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-pale) 0%, var(--color-accent) 100%);
  }
}

/* ---------- 15. COUNTER STAT REFINEMENTS ---------- */
.counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.018em;
}

/* ---------- 16. SECTION DIVIDERS ---------- */
.section + .quiet,
.quiet + .section,
.section + .showreel,
.showreel + .section {
  position: relative;
}
.quiet::before,
.showreel::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.55;
}

/* ---------- 17. HOVER LIFT pour cards ---------- */
@media (hover: hover) {
  .dish-card:hover {
    transform: translateY(-6px);
    box-shadow:
      0 32px 70px -28px rgba(0,0,0,0.65),
      inset 0 0 0 1px rgba(158, 127, 74, 0.20);
  }
}

/* ---------- 18. RÉPÈRE — gold glow on counter ---------- */
.repere-stat {
  text-shadow: 0 0 30px rgba(158, 127, 74, 0.18);
}
.repere-stat em {
  font-style: italic;
  color: var(--color-accent-pale);
  font-size: 0.7em;
  margin-left: 0.15em;
}

/* ---------- 19. CONTACT GRID — fixer le map column ---------- */
.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- 20. SAFER SCROLLBAR (subtle gold) ---------- */
@media (pointer: fine) {
  body::-webkit-scrollbar { width: 10px; }
  body::-webkit-scrollbar-track { background: var(--color-bg-darker); }
  body::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--color-accent-soft), var(--color-accent));
    border-radius: 5px;
    border: 2px solid var(--color-bg-darker);
  }
}

/* ---------- 21. MOBILE STICKY CTA refinement ---------- */
.sticky-cta {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
}

/* ---------- 22. SERVICES HERO BG IMAGE ---------- */
.services-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vw, 11rem) 0 clamp(4rem, 8vw, 6rem);
}
.services-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45) saturate(1.1);
}
.services-hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.62) 0%, rgba(5, 4, 3, 0.88) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(158, 127, 74, 0.14) 0%, transparent 55%);
}

/* ---------- 23. RESERVATION HERO BG (subtle) ---------- */
.booking-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.booking-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(158, 127, 74, 0.10), transparent 60%);
  z-index: 0;
}
.booking-hero > .container { position: relative; z-index: 1; }

/* ============================================
   TARA ROSE — LIGHT MODE OVERRIDES + new components
   ============================================ */

/* Hero overlay tune for light brand — keep video readable, warmer */
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(46, 34, 24, 0.32) 0%, rgba(46, 34, 24, 0.58) 55%, rgba(46, 34, 24, 0.88) 100%),
    radial-gradient(ellipse at 22% 78%, rgba(216, 159, 148, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 22%, rgba(199, 161, 86, 0.12) 0%, transparent 60%) !important;
}

/* Cursor visible on ivoire bg */
.cursor-dot { background: var(--color-sepia); mix-blend-mode: normal; opacity: 0.7; }
.cursor-ring { border-color: var(--color-accent); mix-blend-mode: normal; opacity: 0.5; }
.cursor-ring.hovering { background: rgba(199, 161, 86, 0.14); border-color: var(--color-accent); }

/* Marquee on dark band — looks like a quiet press strip */
.marquee-band {
  background: var(--color-bg-darker) !important;
  border-top: 1px solid rgba(247, 240, 229, 0.10);
  border-bottom: 1px solid rgba(247, 240, 229, 0.10);
}
.marquee-band::before { background: linear-gradient(90deg, var(--color-bg-darker), transparent) !important; }
.marquee-band::after  { background: linear-gradient(-90deg, var(--color-bg-darker), transparent) !important; }
.marquee-item { color: var(--color-text-on-dark-muted) !important; }
.marquee-item strong { color: var(--color-accent-pale) !important; }

/* Logo script — Pinyon Script for Tara Rose */
.logo-script {
  font-family: 'Pinyon Script', cursive, var(--font-display);
  font-style: normal;
  font-size: 1.85rem;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--color-rose);
}
.nav.scrolled .logo-script { color: var(--color-rose); }
.footer .logo-script { color: var(--color-rose); font-size: 2.2rem; }

/* Language switch — adapt to ivoire bg when scrolled or on light pages */
.lang-switch {
  background: rgba(46, 34, 24, 0.55) !important;
  border-color: rgba(216, 159, 148, 0.30) !important;
}
.lang-switch button { color: rgba(247, 240, 229, 0.70) !important; }
.lang-switch button.active { color: var(--color-rose) !important; }
.lang-switch .divider { color: rgba(216, 159, 148, 0.5) !important; }
.lang-switch button[data-set-lang="ar"] {
  font-family: 'Reem Kufi Fun', 'Tajawal', serif !important;
  font-size: 0.92rem;
}

/* PARALLAX STACK (story section) */
.parallax-stack {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
  box-shadow: 0 30px 80px -28px rgba(46, 34, 24, 0.35);
}
.parallax-layer {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  will-change: transform;
}
.parallax-layer img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.parallax-bg { z-index: 1; }
.parallax-mid {
  z-index: 2;
  width: 56%; height: 44%;
  inset: auto auto 6% 6%;
  border: 6px solid var(--color-bg);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -16px rgba(46, 34, 24, 0.5);
  overflow: hidden;
}
.parallax-front {
  z-index: 3;
  width: 38%; height: 50%;
  inset: 6% 6% auto auto;
  border: 6px solid var(--color-rose);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -16px rgba(216, 159, 148, 0.55);
  overflow: hidden;
}

/* Showreel video section dark band */
.showreel-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(199, 161, 86, 0.10), transparent 55%),
    var(--color-bg-darker);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.showreel-frame {
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-sepia);
  border: 1px solid rgba(247, 240, 229, 0.10);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(199, 161, 86, 0.08);
  position: relative;
}
.showreel-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.showreel-caption {
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  z-index: 4;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--color-text-on-dark-muted);
  background: rgba(46, 34, 24, 0.55);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 159, 148, 0.18);
}

/* GALLERY MASONRY (override 4-col) */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.85rem;
}
.gallery-masonry .gallery-item { background: var(--color-bg-soft); border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-masonry .gi-large { grid-column: span 2; grid-row: span 2; }
.gallery-masonry .gi-tall  { grid-row: span 2; }
.gallery-masonry .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
@media (hover: hover) {
  .gallery-masonry .gallery-item:hover img { transform: scale(1.04); }
}
.gallery-masonry .gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--color-text-on-dark);
  background: linear-gradient(180deg, transparent, rgba(46, 34, 24, 0.7));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
@media (hover: hover) {
  .gallery-masonry .gallery-item:hover::after { opacity: 1; }
}
@media (max-width: 760px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-masonry .gi-large { grid-column: span 2; grid-row: span 2; }
  .gallery-masonry .gi-tall { grid-row: span 2; }
}

/* AWARDS / PRESS STRIP */
.awards-strip {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-line-soft);
  border-bottom: 1px solid var(--color-line-soft);
  text-align: center;
}
.press-strip-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent-soft);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1080px;
  margin: 0 auto;
}
.press-logos span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
  opacity: 0.75;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
@media (hover: hover) {
  .press-logos span:hover { opacity: 1; color: var(--color-accent-soft); }
}

/* BRANCHES GRID */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.branch-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  display: flex; flex-direction: column;
}
@media (hover: hover) {
  .branch-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-rose);
    box-shadow: 0 24px 60px -24px rgba(216, 159, 148, 0.45);
  }
  .branch-card:hover .branch-img img { transform: scale(1.04); }
}
.branch-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-soft);
}
.branch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.branch-body { padding: clamp(1.25rem, 2.5vw, 1.75rem); flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.branch-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-rose);
  font-weight: 500;
}
.branch-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.008em;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.branch-addr { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.55; }
.branch-phone a {
  color: var(--color-accent-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
}
.branch-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: var(--color-text);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--color-line);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
@media (hover: hover) {
  .branch-link:hover { color: var(--color-accent-soft); border-color: var(--color-accent-soft); }
}
@media (max-width: 900px) {
  .branches-grid { grid-template-columns: 1fr; }
}

/* MAP iframe */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: 0 20px 50px -24px rgba(46, 34, 24, 0.25);
}

/* Footer logo tweak */
.footer .logo {
  display: inline-block;
  color: var(--color-text-on-dark);
  font-style: normal;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-text-on-dark-muted) !important;
  font-size: 1rem;
  line-height: 1.5;
}

/* Sticky CTA — gold on light, sepia text */
.sticky-cta {
  background: var(--color-accent) !important;
  color: var(--color-sepia) !important;
  box-shadow: 0 12px 40px -8px rgba(199, 161, 86, 0.5) !important;
}

/* QUIET line in light mode — softer */
.quiet {
  background:
    radial-gradient(ellipse at center, rgba(216, 159, 148, 0.12) 0%, transparent 60%),
    var(--color-bg) !important;
}
.quiet-text span:nth-child(even) {
  color: var(--color-rose) !important;
  font-family: 'Pinyon Script', var(--font-display) !important;
  font-style: normal !important;
  font-size: 1.25em;
  line-height: 1.0;
}

/* Reperes accent rose touches */
.repere-stat {
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-accent-soft);
}

/* Dish-card refinement for light */
.dish-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)),
    var(--color-bg-elevated) !important;
  box-shadow: 0 8px 28px -16px rgba(46, 34, 24, 0.15);
}
@media (hover: hover) {
  .dish-card:hover {
    border-color: var(--color-rose);
    box-shadow: 0 24px 60px -20px rgba(216, 159, 148, 0.4) !important;
  }
}

/* Reviews — soft glass */
.review-card {
  background: var(--color-bg-elevated) !important;
  box-shadow: 0 6px 20px -12px rgba(46, 34, 24, 0.15);
}
.review-card:nth-child(2n) { background: var(--color-bg-soft) !important; }

/* Eyebrow accent — rose for Tara */
.eyebrow { color: var(--color-rose); }
.eyebrow::before { background: var(--color-rose); }

/* Reperes labels need to be readable on light */
.repere { border-right-color: var(--color-line); }

/* Section-alt ivoire mid */
.section-alt { background: var(--color-bg-soft); }

/* Hero-eyebrow over video — keep gold */
.hero-eyebrow { color: var(--color-accent-pale); text-shadow: 0 1px 12px rgba(46, 34, 24, 0.5); }
.hero-eyebrow::before { background: var(--color-accent-pale); }
