/* ============================================================
   HAVANA MEETS MADRID — v5
   Base: v4 (Cinematic Luxury) + v3 Nav structure + v3 Hero Ticker
   Fonts: Fraunces (display) + Syne (body/UI)
   Palette: Midnight Ink · Burnished Gold · Aged Parchment · Deep Terracotta
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --ink:          #080604;
  --ink-mid:      #1A130C;
  --ink-soft:     #2E1F13;
  --cream:        #F2E8D5;
  --cream-dark:   #E8D9BE;
  --cream-pale:   #FAF4EA;
  --gold:         #B87D2A;
  --gold-bright:  #D4961E;
  --gold-light:   #E8B84B;
  --gold-pale:    #F5DFA0;
  --terra:        #7A2416;
  --white:        #FFFFFF;
  --muted:        #7A6A54;
  --muted-light:  #A8987E;

  --font-display: 'Fraunces', 'Garamond', Georgia, serif;
  --font-body:    'Syne', system-ui, sans-serif;
  --font-nav:     'DM Sans', system-ui, sans-serif;
  --font-nav-display: 'Bodoni Moda', 'Didot', Georgia, serif;

  --nav-height:   76px;
  --container:    1240px;
  --pad:          clamp(1.25rem, 4vw, 3rem);
  --section-py:   clamp(5rem, 10vw, 10rem);
  --gap:          clamp(1rem, 2vw, 1.75rem);

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-std:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tx:           0.4s var(--ease-std);
  --tx-fast:      0.18s ease;

  --shadow-sm:    0 2px 16px rgba(8,6,4,0.12);
  --shadow-md:    0 8px 40px rgba(8,6,4,0.22);
  --shadow-lg:    0 24px 80px rgba(8,6,4,0.38);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream-pale);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
}
h1 { font-size: clamp(3.2rem, 9vw, 8rem); font-weight: 300; }
h2 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 300; }
h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
h2.light { color: var(--cream); }
h2.light em { color: var(--gold-light); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 500; font-family: var(--font-body); letter-spacing: 0; }

p {
  font-weight: 400;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ── LABEL TAG ──────────────────────────────────────────────── */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.label-tag::before, .label-tag::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.label-tag--light { color: var(--gold-light); }
.label-tag--dark  { color: var(--muted); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.section-header h2 { margin-top: 0.5rem; }
.section-header .label-tag { justify-content: center; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--tx);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity var(--tx-fast);
}
.btn:hover::after { opacity: 1; }
.btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.btn-gold {
  background: var(--gold);
  color: var(--cream-pale);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184,125,42,0.45);
}

.btn-ghost {
  background: transparent;
  color: rgba(242,232,213,0.85);
  border-color: rgba(242,232,213,0.3);
}
.btn-ghost:hover {
  border-color: rgba(242,232,213,0.7);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(8,6,4,0.35);
}
.btn-ghost-dark:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-ink {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-ink:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large { padding: 1.1rem 3rem; font-size: 0.76rem; }

/* ── NAVIGATION (v3 structure — fixed at top: 0, no marquee) ── */
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 200;
  opacity: 0;
  background: rgba(8,6,4,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184,125,42,0.12);
  transition: background var(--tx), box-shadow var(--tx);
}
.fonts-ready .nav { animation: navDrop 0.9s var(--ease-out) both; }

.nav.scrolled {
  background: rgba(8,6,4,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184,125,42,0.12);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  height: var(--nav-height);
  max-width: 1500px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img {
  height: 46px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.9;
  transition: opacity var(--tx-fast);
}
.nav-logo:hover img { opacity: 0.65; }

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(242,232,213,0.65);
  transition: color var(--tx-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width var(--tx);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-insta { display: flex; align-items: center; }
.nav-insta svg { display: block; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(242,232,213,0.22);
  color: rgba(242,232,213,0.65);
  font-family: var(--font-nav);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  cursor: pointer;
  transition: border-color var(--tx-fast), color var(--tx-fast);
}
.lang-btn:hover { border-color: var(--gold-light); color: var(--gold-light); }
.lang-btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--cream);
  transition: var(--tx);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(8,6,4,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-std);
  border-top: 1px solid rgba(184,125,42,0.1);
}
.mobile-menu.open { max-height: 480px; }
.mobile-menu ul {
  padding: 1.5rem var(--pad) 2.5rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu li { border-bottom: 1px solid rgba(242,232,213,0.05); }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-nav-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(242,232,213,0.6);
  transition: color var(--tx-fast), padding-left var(--tx);
}
.mobile-menu a:hover { color: var(--gold-light); padding-left: 0.75rem; }

/* ── HERO (v4 parallax image + v4 text layout + v3 ticker) ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

/* Parallax background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 30%;
  transform: translateY(0);
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(8,6,4,0.72) 0%, rgba(8,6,4,0.55) 50%, rgba(8,6,4,0.82) 100%),
    radial-gradient(ellipse at 85% 20%, rgba(184,125,42,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(122,36,22,0.18) 0%, transparent 55%);
}

/* Film grain layer on hero */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hero content — centered, nudged down to clear the nav */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--cream);
  max-width: 1000px;
  padding: 0 var(--pad);
  padding-top: var(--nav-height);
  transform: translateZ(0);
}

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Eyebrow */
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 2rem;
  opacity: 0;
}
.fonts-ready .hero-eyebrow { animation: slideDown 0.8s 0.3s var(--ease-out) both; }

/* Title: Havana / ornament / Meets / Madrid */
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  margin-bottom: 2rem;
  text-shadow: 0 4px 60px rgba(0,0,0,0.3);
}

.hero-word { display: block; opacity: 0; }

/* "Havana" — large, italic, gold-pale */
.hero-word[data-word="1"] em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-pale);
}
/* "Meets" — small uppercase body font */
.hero-word[data-word="2"] {
  font-size: 0.52em;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: rgba(242,232,213,0.7);
}
/* "Madrid" — large, italic, bold */
.hero-word[data-word="3"] {
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.04em;
}

/* SVG ornament divider between Havana and Meets */
.hero-divider {
  display: block;
  width: 200px;
  color: var(--gold-light);
  opacity: 0;
  margin: 0 auto;
  font-size: 0;
}
.hero-divider svg { width: 100%; }

/* Staggered word entrances */
.fonts-ready .hero-word[data-word="1"]  { animation: fadeIn 1s 0.6s ease both; }
.fonts-ready .hero-divider              { animation: fadeIn 0.7s 1s ease both; }
.fonts-ready .hero-word[data-word="2"]  { animation: fadeIn 1s 1.1s ease both; }
.fonts-ready .hero-word[data-word="3"]  { animation: fadeIn 1s 1.3s ease both; }

/* Sub-headline */
.hero-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(242,232,213,0.72);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.85;
  opacity: 0;
}
.fonts-ready .hero-sub { animation: slideUp 0.8s 1.6s var(--ease-out) both; }

/* CTA buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}
.fonts-ready .hero-actions { animation: slideUp 0.8s 1.85s var(--ease-out) both; }


/* Ticker belt at bottom of hero (from v3) */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  overflow: hidden;
  background: rgba(8,6,4,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid rgba(184,125,42,0.2);
  padding: 0.7rem 0;
  opacity: 0;
}
.fonts-ready .hero-ticker { animation: fadeIn 0.8s 1.7s both; }

.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-track span {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,232,213,0.55);
}
.ticker-dot {
  color: var(--gold) !important;
  opacity: 0.7;
  font-size: 0.42rem !important;
  vertical-align: middle;
}

/* ── BACKGROUND NUMBER / TEXT (shared utility) ──────────────── */
.about-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(10rem, 24vw, 24rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(8,6,4,0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
}
.about-bg-text--menu    { -webkit-text-stroke-color: rgba(8,6,4,0.04); }
.about-bg-text--gallery { -webkit-text-stroke-color: rgba(8,6,4,0.04); }
.about-bg-text--contact { -webkit-text-stroke-color: rgba(242,232,213,0.03); }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about {
  background: var(--cream-pale);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-media { position: relative; }

.about-main-img {
  position: relative;
  z-index: 1;
}
.about-main-img::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
  transition: opacity var(--tx);
}
.about-main-img:hover::before { opacity: 0.55; }
.about-main-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.about-img-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
}
.about-img-badge span {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-pale);
  line-height: 1.2;
}
.about-img-badge span:last-child {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  font-style: italic;
}

.about-accent-img {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 55%;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-pale);
}
.about-accent-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.about-text {
  position: relative;
  z-index: 1;
}
.about-text h2 {
  margin-bottom: 1.75rem;
  color: var(--ink);
}
.about-text h2 em { color: var(--gold); }
.about-text p { margin-bottom: 1.25rem; }
.about-text .btn { margin-top: 1rem; }

/* ── WHO WE SERVE ───────────────────────────────────────────── */
.serves-section {
  background: var(--cream-dark);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.serves-section .label-tag {
  color: var(--ink-soft);
  border-color: var(--ink-soft);
}

.serves-section h2 {
  color: var(--ink);
}

.serves-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.serves-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(8, 6, 4, 0.08);
  padding: 2.5rem 2rem;
  transition: border-color var(--tx), transform var(--tx);
}

.serves-card:hover {
  border-color: var(--gold);
  background: rgba(8, 6, 4, 0.03);
  transform: translateY(-5px);
}

.serves-card--featured {
  border-color: rgba(184, 125, 42, 0.3);
}

.serves-card--featured:hover {
  border-color: var(--gold);
}

.serves-card-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.serves-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.serves-card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.services-word {
  position: absolute;
  right: -0.05em;
  bottom: -0.15em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(8rem, 20vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,232,213,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.services .section-header { position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242,232,213,0.07);
  transition: border-color var(--tx), transform var(--tx);
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.service-card:hover {
  border-color: rgba(184,125,42,0.3);
  transform: translateY(-6px);
}

.service-card-img {
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,6,4,0.55);
  transition: background var(--tx);
}
.service-card:hover .service-card-img::after { background: rgba(8,6,4,0.3); }
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-std);
  will-change: transform;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }

.service-card-body {
  padding: clamp(1.5rem, 2.5vw, 2rem);
}
.service-card-body h3 {
  color: var(--cream);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}
.service-card-body p {
  font-size: 0.87rem;
  color: var(--muted-light);
  line-height: 1.8;
}

.service-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(184,125,42,0.14);
  line-height: 1;
  transition: color var(--tx);
}
.service-card:hover .service-num { color: rgba(184,125,42,0.28); }

.service-card-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  transition: width 0.6s var(--ease-std);
}
.service-card:hover .service-card-line { width: 100%; }

/* ── STATS BAND ─────────────────────────────────────────────── */
.stats-band {
  background: var(--cream-dark);
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(184,125,42,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(122,36,22,0.1) 0%, transparent 55%);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  overflow: hidden;
}

.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: nowrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  margin-bottom: 0.4rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-sep {
  font-size: 0.4rem;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── MENU ───────────────────────────────────────────────────── */
.menu-section {
  background: var(--cream-pale);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  z-index: 1;
}

/* Card */
.menu-card {
  grid-column: span 2;
  background: var(--cream-dark);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tx), box-shadow var(--tx);
}
/* Center bottom row of 2 in a 6-col grid (desktop) */
.menu-card:nth-child(4) { grid-column: 2 / span 2; }
.menu-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

/* Image area + v3-style hover overlay */
.menu-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-std);
  will-change: transform;
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,6,4,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-std);
}
.menu-card:hover .menu-card-overlay { opacity: 1; }
.menu-card-overlay p {
  color: rgba(242,232,213,0.92);
  font-size: 0.87rem;
  text-align: center;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
}

/* Card info */
.menu-card-info {
  padding: 1.1rem 1.35rem 1.4rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.menu-card-info h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.menu-tag {
  font-family: var(--font-nav);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* CTA block — v4 dark card style, centered below grid */
.menu-cta-block {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
}
.menu-cta-orn {
  width: 200px;
  color: var(--gold);
}
.menu-cta-orn svg { width: 100%; }

.menu-cta-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-cta-q {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.35;
  text-align: center;
}
.menu-cta-q em {
  font-style: italic;
  color: var(--gold);
}
.menu-cta-or {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-cta-phone {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(8,6,4,0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.menu-cta-phone:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ── LIVE PAELLA ────────────────────────────────────────────── */
.paella-section {
  position: relative;
  min-height: clamp(600px, 80vh, 900px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.paella-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.paella-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 12%;
}
.paella-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(8,6,4,0.96) 0%,
    rgba(8,6,4,0.9) 35%,
    rgba(8,6,4,0.6) 60%,
    rgba(8,6,4,0.2) 80%,
    transparent 100%
  );
}
.paella-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 7rem);
  color: var(--cream);
}
.paella-content h2 { margin-bottom: 1.5rem; }
.paella-content > p {
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
  color: rgba(242,232,213,0.75);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.paella-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 3rem;
}
.paella-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.87rem;
  font-weight: 400;
  color: rgba(242,232,213,0.8);
  letter-spacing: 0.01em;
}
.paella-features li::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  transition: width var(--tx), background var(--tx);
}
.paella-features li:hover::before { width: 30px; background: var(--gold-bright); }

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery-section {
  background: var(--cream-pale);
  padding: var(--section-py) 0 0;
  position: relative;
  overflow: hidden;
}
.about-bg-text--gallery { -webkit-text-stroke-color: rgba(8,6,4,0.04); }
.gallery-strips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.gallery-strip { overflow: hidden; }
.gallery-strip-track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}
.gallery-strip--fwd .gallery-strip-track { animation: stripFwd 28s linear infinite; }
.gallery-strip--bwd .gallery-strip-track { animation: stripBwd 32s linear infinite; }

@keyframes stripFwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes stripBwd { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.gallery-strip-track img {
  height: clamp(180px, 22vw, 280px);
  width: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  flex-shrink: 0;
  transition: opacity var(--tx), transform var(--tx);
}
.gallery-strip-track img:hover {
  opacity: 0.85;
  transform: scale(0.98);
}

/* ── INSTAGRAM CTA ──────────────────────────────────────────── */
.insta-cta {
  background: var(--gold-pale);
  background-image:
    radial-gradient(ellipse at 5% 50%, rgba(122,36,22,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 95% 50%, rgba(184,125,42,0.32) 0%, transparent 60%);
  padding: var(--section-py) 0;
}
.insta-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.insta-icon {
  width: 44px; height: 44px;
  color: var(--ink);
  opacity: 0.5;
}
.insta-icon svg { width: 100%; height: 100%; }
.insta-inner h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 0.25rem;
}
.insta-inner h2 em { color: var(--terra); }
.insta-inner p {
  color: rgba(8,6,4,0.6);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  max-width: 480px;
  line-height: 1.85;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-section {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.contact-word {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(10rem, 28vw, 30rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,232,213,0.025);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-style: italic;
}
.contact-section .section-header { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.75rem 1.5rem;
  border: 1px solid rgba(242,232,213,0.07);
  transition: border-color var(--tx), background var(--tx), transform var(--tx);
  text-decoration: none;
}
.contact-card:hover {
  border-color: rgba(184,125,42,0.35);
  background: rgba(242,232,213,0.025);
  transform: translateY(-5px);
}
.contact-card--featured { border-color: rgba(184,125,42,0.2); }
.contact-card--featured:hover { border-color: var(--gold); }
.contact-icon {
  width: 30px; height: 30px;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 0.6rem;
}
.contact-val {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.7vw, 1.25rem);
  color: var(--cream);
  font-weight: 300;
  transition: color var(--tx-fast);
}
.contact-card:hover .contact-val { color: var(--gold-light); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: #040200;
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
  border-top: 1px solid rgba(184,125,42,0.1);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-orn {
  width: 180px;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.footer-orn svg { width: 100%; }
.footer-logo {
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.65;
}
.footer-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242,232,213,0.25);
  margin-top: 0.2rem;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.3rem;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(242,232,213,0.35);
  letter-spacing: 0.1em;
  transition: color var(--tx-fast);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links span {
  font-size: 0.4rem;
  color: rgba(184,125,42,0.3);
  line-height: 1;
}
.footer-copy {
  font-size: 0.63rem;
  color: rgba(242,232,213,0.16);
  margin-top: 0.4rem;
  letter-spacing: 0.07em;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s var(--ease-out) 0.25s, transform 0.8s var(--ease-out) 0.25s;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); }
  .about-accent-img { width: 48%; bottom: -2rem; right: -1.5rem; }
}


@media (max-width: 980px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links--left  { display: none; }
  .nav-links--right { display: none; }
  .nav-logo { justify-content: flex-start; }
  .nav-right { gap: 0.75rem; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-main-img img { aspect-ratio: 4/3; object-position: center 25%; }
  .about-accent-img { width: 42%; bottom: -1.5rem; right: -1rem; }
  .about-main-img::before { inset: -10px -10px 10px 10px; }
}

@media (max-width: 600px) {
  .about-accent-img { display: none; }
  .about-img-badge { display: none; }
}

@media (max-width: 768px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .serves-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--gap) / 2);
    justify-self: center;
  }

  /* Menu: 2-column at tablet */
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card { grid-column: auto; }
  .menu-card:nth-child(4) { grid-column: auto; }
  .menu-card:last-child { grid-column: 1 / -1; max-width: calc(50% - var(--gap) / 2); justify-self: center; }

  /* Paella: full overlay on mobile */
  .paella-gradient {
    background: linear-gradient(to bottom,
      rgba(8,6,4,0.9) 0%,
      rgba(8,6,4,0.8) 50%,
      rgba(8,6,4,0.88) 100%
    );
  }
  .paella-content { padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem); }

  /* Stats: 2×2 grid */
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
    justify-items: center;
  }
  .stat-sep { display: none; }
  .contact-grid { grid-template-columns: 1fr; max-width: 360px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; max-width: none; justify-self: stretch; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card:last-child { max-width: none; justify-self: stretch; }
  .menu-cta-block { max-width: 100%; }
}

@media (max-width: 400px) {
  .hero-title { font-size: clamp(2.8rem, 14vw, 4rem); }
  .nav-inner { padding: 0 1rem; }
  .btn { padding: 0.8rem 1.6rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-right { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .nav, .hero-eyebrow, .hero-word, .hero-divider,
  .hero-sub, .hero-actions, .hero-ticker { opacity: 1 !important; }
}
