/* ============================================================
   CASABLANCA — Restaurant & Pensiune · Reghin
   Dark elegant: fundal cald aproape negru, accente auriu-șampanie,
   fotografia în prim-plan. Playfair Display (display) + Manrope (text).
   ============================================================ */

/* ---------- Fonturi (self-hosted, variable) ---------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/playfairdisplay-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/playfairdisplay-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  --bg: #0e0c09;
  --bg-2: #15120e;
  --bg-3: #1d1913;
  --ink: #f4eee3;
  --ink-dim: #cfc6b5;
  --muted: #9a8f7d;
  --gold: #d8b36a;
  --gold-deep: #b98f45;
  --gold-soft: rgba(216, 179, 106, .16);
  --gold-faint: rgba(216, 179, 106, .07);
  --grad-gold: linear-gradient(115deg, #efd9a4 0%, #d8b36a 45%, #a87d34 100%);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --radius: 18px;
  --pad-section: clamp(5rem, 11vw, 8.5rem);
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --w-content: 1180px;
}

/* ---------- Reset & bază ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}
/* ---------- Fundal ambiental (vizibil pe tot site-ul) ----------
   Element fixat, nu `background-attachment: fixed` (care sacadează pe iOS).
   Straturi, de sus în jos: textură organică → aure aurii difuze → bază caldă.
   Stă la z-index -1, deci în spatele întregului conținut. */
body::before {
  content: '';
  position: fixed;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='1400'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.0045' numOctaves='4' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='1400' height='1400' filter='url(%23c)' opacity='.09'/%3E%3C/svg%3E"),
    radial-gradient(38% 30% at 14% 10%, rgba(216, 179, 106, .11), transparent 64%),
    radial-gradient(32% 26% at 86% 22%, rgba(216, 179, 106, .075), transparent 62%),
    radial-gradient(44% 34% at 78% 74%, rgba(185, 143, 69, .09), transparent 66%),
    radial-gradient(30% 24% at 16% 88%, rgba(216, 179, 106, .055), transparent 62%),
    linear-gradient(168deg, #13100b 0%, #0d0b08 38%, #110f0a 68%, #0c0a07 100%);
  /* textura se întinde o singură dată peste tot ecranul — fără tile vizibil */
  background-size: cover, auto, auto, auto, auto, auto;
  background-repeat: no-repeat;
  animation: auraDrift 70s ease-in-out infinite alternate;
}
/* deriva foarte lentă a aurelor — fundalul „respiră", fără să distragă */
@keyframes auraDrift {
  from { transform: translate3d(-1.2%, -.8%, 0) scale(1); }
  to { transform: translate3d(1.2%, 1%, 0) scale(1.05); }
}

/* Granulație fină peste tot — adâncime, nu culoare plată */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: rgba(216, 179, 106, .32); color: #fff; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: var(--w-content); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ---------- Tipografie comună ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; }
.h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  margin: 1.1rem 0 1.4rem;
  letter-spacing: .01em;
}
.lead { font-size: clamp(1.06rem, 1.5vw, 1.2rem); color: var(--ink-dim); max-width: 46rem; font-weight: 400; }
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold); /* fallback */
}

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  border: 1px solid transparent;
  /* background-origin implicit e padding-box: gradientul se dimensiona după padding,
     dar se picta până la border-box, iar zona bordurii repeta gradientul — de aici
     dungile verticale din stânga și dreapta butoanelor aurii. */
  background-origin: border-box;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background-color .3s, border-color .3s, color .3s;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn-gold {
  /* culoare plină dedesubt: orice subpixel neacoperit rămâne auriu, nu fundal închis */
  background-color: #d8b36a;
  background-image: var(--grad-gold);
  color: #221a0e;
  box-shadow: 0 10px 30px -12px rgba(216, 179, 106, .45);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -14px rgba(216, 179, 106, .6), 0 0 0 1px rgba(239, 217, 164, .4) inset;
}
.btn-ghost {
  border-color: var(--gold-soft);
  color: var(--ink);
  background: rgba(14, 12, 9, .38);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 179, 106, .55);
  background: var(--gold-faint);
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, .8);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: gap .35s var(--ease-out);
}
.link-arrow:hover { gap: .85rem; }
.link-arrow::after { content: '\2192'; transition: transform .35s var(--ease-out); }
.link-arrow.back { flex-direction: row-reverse; }
.link-arrow.back::after { content: '\2190'; }

/* ---------- Navigație ---------- */
/* z-index 62 > 61 (overlay-ul de meniu): butonul hamburger/X rămâne deasupra
   overlay-ului, altfel meniul mobil nu se poate închide. */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 62;
  transition: background-color .5s, border-color .5s, backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 12, 9, .78);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: rgba(216, 179, 106, .12);
}
.nav-inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; line-height: 1.15; z-index: 62; }
/* Logo-ul orizontal: emblema cu anul + numele cu subtitlul dedesubt, raport 3.63:1
   (deci 46px înălțime = 167px lățime). Subtitlul „RESTAURANT & PENSIUNE" iese ~6,3px
   — decorativ, nu de citit; lizibil ar cere o bară de ~80px, prea groasă. */
.brand img { height: 46px; width: auto; display: block; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.brand-sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a:not(.btn) {
  position: relative;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-dim);
  transition: color .3s;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { padding: .62rem 1.5rem; font-size: .88rem; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
/* Textul stă sus-stânga; treimea de jos rămâne liberă pentru subiectul din video. */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  animation: heroZoom 16s var(--ease-out) both;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.02); }
}
/* Straturi de atmosferă: dense sub coloana de text (stânga), curate peste subiectul
   video (centru-dreapta jos). Racordul spre pagină intră abia în ultimii 12%. */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 12, 9, .94) 0%, rgba(14, 12, 9, .86) 22%, rgba(14, 12, 9, .56) 36%, rgba(14, 12, 9, .2) 50%, rgba(14, 12, 9, 0) 64%),
    linear-gradient(180deg, rgba(14, 12, 9, .58) 0%, rgba(14, 12, 9, 0) 22%),
    linear-gradient(180deg, rgba(14, 12, 9, 0) 88%, rgba(14, 12, 9, .7) 96%, var(--bg) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(52% 44% at 78% 16%, rgba(216, 179, 106, .16) 0%, transparent 70%);
  mix-blend-mode: screen;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0;
  transition: opacity 1.4s ease .3s;
  /* Calibrat pentru hero-4 (bucătar care flambează): tigaia + flacăra stau deja în
     dreapta-centru, iar bucătarul ocupă stânga — e nevoie doar de o împingere mică,
     cât să iasă tigaia de sub butoane, fără să taie vârful flăcării.
     Deplasarea efectivă = scale × translate, iar scale-ul trebuie să depășească
     dublul ei, altfel rămân margini goale: 1.1 > 1 + 2 × (1.1 × 3%). */
  transform: scale(1.1) translate(3%, -1%);
}
.hero-video.ready { opacity: 1; }
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--w-content);
  margin: 0 auto;
  /* min-height: banda de jos se ancorează de baza ecranului, nu de finalul textului */
  min-height: 100svh;
  padding: clamp(7rem, 15vh, 10rem) var(--pad-x) clamp(5rem, 12vh, 7rem);
}
/* coloana de text nu trece de jumătatea ecranului — restul rămâne al imaginii */
.hero-content > *:not(.hero-meta) { max-width: 38rem; }
.hero-content > .hero-lead { max-width: 31rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 1.15rem;
  border: 1px solid rgba(216, 179, 106, .35);
  border-radius: 100px;
  background: rgba(14, 12, 9, .45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge::before {
  content: '\2726';
  font-size: .7rem;
  line-height: 1;
  animation: badgeTwinkle 2.8s ease-in-out infinite;
}
/* Doar luminozitate, FĂRĂ scale: centrul vizual al steluței e cu ~25% din font sub
   centrul cutiei, așa că orice scalare o mișcă vertical. Punctul de rotație corect ar
   depinde de fontul de sistem care furnizează glifa (diferă între iOS și Windows). */
@keyframes badgeTwinkle {
  0%, 100% { opacity: .42; text-shadow: 0 0 0 rgba(239, 217, 164, 0); }
  50% { opacity: 1; text-shadow: 0 0 9px rgba(239, 217, 164, .95); }
}
.hero h1 {
  margin: 1.6rem 0 .4rem;
  font-size: clamp(3.2rem, 9.5vw, 6.4rem);
  font-weight: 700;
  letter-spacing: .015em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  /* drop-shadow, nu text-shadow: nu murdărește gradientul decupat pe litere */
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .72));
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  opacity: .92;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .8);
}
.hero-lead {
  margin-top: 1.3rem;
  max-width: 34rem;
  color: var(--ink-dim);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .85);
}
.hero-cta { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-cta .btn { padding: .88rem 1.75rem; }
/* Desktop: listă verticală sub butoane, în coloana de text — rămâne în stânga,
   deci nu atinge subiectul din video (care începe după ~40% din lățime). */
.hero-meta {
  margin-top: 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  gap: .62rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .9);
}
.hero-meta span { display: inline-flex; align-items: center; gap: .55rem; }
.hero-meta span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .8; }
.hero-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(1.4rem, 3.5vh, 2.6rem);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(244, 238, 227, .32);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll::before {
  content: '';
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold);
  animation: scrollHint 2.2s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
/* Ecrane joase de desktop (laptopuri 720p): nu încap și paragraful, și farfuria.
   Paragraful cade — badge-ul, titlul și butoanele duc mesajul mai departe. */
@media (min-width: 861px) and (max-height: 780px) {
  .hero-lead { display: none; }
  .hero-content { padding-top: clamp(6rem, 13vh, 8rem); }
}

/* ---------- Secțiuni generice ---------- */
.section { padding: var(--pad-section) 0; position: relative; }
.section-head { max-width: 46rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker::before { display: none; }
.section-head.center .kicker::after { display: none; }

/* ---------- Feature rows (Restaurantul / Pensiunea) ---------- */
.features { display: grid; gap: clamp(4rem, 8vw, 6.5rem); margin-top: clamp(3rem, 6vw, 4.5rem); }
.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature:nth-child(even) .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media img {
  width: 100%;
  /* height: auto e obligatoriu — atributul height din HTML e un hint de prezentare
     care ține înălțimea fixă și anulează aspect-ratio (cadru înalt, poză tăiată) */
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .85);
}
/* ramă aurie decalată — efect de tablou */
.feature-media::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 179, 106, .35);
  border-radius: var(--radius);
  transform: translate(14px, 14px);
  pointer-events: none;
  transition: transform .6s var(--ease-out);
}
.feature:nth-child(even) .feature-media::before { transform: translate(-14px, 14px); }
.feature:hover .feature-media::before { transform: translate(8px, 8px); }
.feature:nth-child(even):hover .feature-media::before { transform: translate(-8px, 8px); }
.feature-body h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: .9rem 0 1rem; }
.feature-body p { color: var(--ink-dim); max-width: 34rem; }
.feature-list { margin: 1.5rem 0 1.8rem; display: grid; gap: .75rem; }
.feature-list li {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  color: var(--ink-dim);
  font-size: .98rem;
}
.feature-list li::before {
  content: '\2726';
  color: var(--gold);
  font-size: .68rem;
  flex: none;
  transform: translateY(-1px);
}
.feature-list strong { color: var(--ink); font-weight: 700; }
.feature-actions { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; }

/* ---------- Banda „Povestea" ---------- */
.story {
  position: relative;
  padding: var(--pad-section) 0;
  overflow: hidden;
}
.story-bg { position: absolute; inset: 0; }
.story-bg picture { display: block; height: 100%; }
.story-bg img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}
.story-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14, 12, 9, .96) 0%, rgba(14, 12, 9, .88) 46%, rgba(14, 12, 9, .55) 100%);
}
.story .container { position: relative; z-index: 1; }
.story-text { max-width: 40rem; display: grid; gap: 1.15rem; color: var(--ink-dim); }
.story-text .first-letter::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 700;
  float: left;
  line-height: .82;
  margin: .08em .12em 0 0;
  color: var(--gold);
}
.story-timeline {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.story-timeline li {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem 1.2rem;
  border: 1px solid var(--gold-soft);
  border-radius: 100px;
  background: rgba(14, 12, 9, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: .88rem;
  color: var(--ink-dim);
}
.story-timeline b { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold); font-weight: 700; }

/* ---------- Diferențiatori / statistici ---------- */
.stats {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gold-faint);
}
.stat {
  padding: 2.2rem 1.4rem 0;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2.4rem;
  bottom: .4rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-faint), transparent);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.stat-num sup { font-size: .45em; }
.stat-label {
  margin-top: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Oferte de sezon ---------- */
/* translucid, ca aurele din fundal să se vadă prin secțiune */
.offers-bg { background: linear-gradient(180deg, rgba(21, 18, 14, 0) 0%, rgba(21, 18, 14, .72) 16%, rgba(21, 18, 14, .72) 84%, rgba(21, 18, 14, 0) 100%); }
.offers-grid {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  /* 2 pe rând: cu 4 oferte, 3 coloane ar lăsa ultimul card singur pe rândul doi */
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
/* Pe desktop lat, toate cele 4 oferte pe un singur rând — FĂRĂ să le micșorăm.
   La lățimea standard de conținut (1180px) patru coloane ar da carduri de 248px;
   de aceea containerul secțiunii se lărgește până la 1560px, cât să iasă ~343px
   de card, adică exact cât aveau înainte la 3 coloane.
   Titlul și butonul rămân centrate pe lățimea normală: au max-width propriu. */
@media (min-width: 1400px) {
  #oferte > .container { max-width: 1560px; }
  .offers-grid { grid-template-columns: repeat(4, 1fr); }
}
.offer-card {
  position: relative;
  background: rgba(29, 25, 19, .82);
  border: 1px solid var(--gold-faint);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out), border-color .4s;
}
.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 179, 106, .38);
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, .9), 0 0 40px -18px rgba(216, 179, 106, .25);
}
.offer-media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; }
.offer-media picture { display: block; height: 100%; }
.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.offer-card:hover .offer-media img { transform: scale(1.07); }
.offer-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(29, 25, 19, .9) 100%);
}
.offer-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: .38rem .95rem;
  border-radius: 100px;
  background: rgba(14, 12, 9, .72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(216, 179, 106, .4);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.offer-body { padding: 1.5rem 1.6rem 1.7rem; }
.offer-body h3 { font-size: 1.45rem; font-weight: 700; }
.offer-body p { margin-top: .6rem; font-size: .95rem; color: var(--ink-dim); }
.offer-foot {
  margin-top: 1.15rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--gold-faint);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.offer-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.offer-note { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.offers-cta {
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}
.offers-cta .offers-hint { margin-top: 0; }
.offers-hint {
  margin-top: 2.6rem;
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
}
.offers-hint a { color: var(--gold); font-weight: 700; text-decoration: none; }
.offers-hint a:hover { color: #efd9a4; }

/* ---------- Contact ---------- */
.contact-grid {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-info { display: grid; gap: 1.7rem; }
.contact-item { display: grid; gap: .3rem; }
.contact-item .label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-item .value { font-size: 1.12rem; color: var(--ink); font-weight: 500; }
.contact-item .value a { transition: color .3s; }
.contact-item .value a:hover { color: var(--gold); }
.badge-nonstop {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 1.15rem;
  border-radius: 100px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
}
.badge-nonstop::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fc97f;
  box-shadow: 0 0 0 0 rgba(127, 201, 127, .55);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127, 201, 127, .55); }
  70% { box-shadow: 0 0 0 9px rgba(127, 201, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 201, 127, 0); }
}
.contact-distances { display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; font-size: .92rem; color: var(--muted); }
.contact-distances b { color: var(--ink-dim); font-weight: 700; }
.contact-card {
  background: linear-gradient(160deg, rgba(29, 25, 19, .84) 0%, rgba(23, 19, 14, .9) 100%);
  border: 1px solid var(--gold-faint);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 179, 106, .13) 0%, transparent 70%);
  pointer-events: none;
}
.contact-card h3 { font-size: 1.6rem; margin-bottom: .4rem; }
.contact-card .btn { width: 100%; }
.contact-social {
  margin-top: .8rem;
  display: flex;
  justify-content: center;
  gap: 1.1rem;
}
.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: transform .4s var(--ease-spring), color .3s, border-color .3s, background-color .3s;
}
.contact-social a:hover {
  transform: translateY(-4px);
  color: var(--gold);
  border-color: rgba(216, 179, 106, .5);
  background: var(--gold-faint);
}
.contact-social svg { width: 19px; height: 19px; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gold-faint);
  /* mai transparent decât restul secțiunilor: fotografia de dedesubt trebuie să se vadă */
  background: rgba(21, 18, 14, .42);
  padding: 3.5rem 0 2.2rem;
}
.footer > .container { position: relative; z-index: 2; }

/* Fundalul de atmosferă din footer: PROVIZORIU marmură închisă cu vinișoare aurii
   (docs/footer-variante/3-marmura-aurie.jpg), lumină difuză în stânga sus.
   Fiind textură uniformă, nu mai are elemente luminoase care să cadă peste rânduri —
   contrast măsurat: min. 5,65:1 desktop / 6,08:1 mobil, adică ~1,2 peste pragul AA.
   Avem deci marjă: voalul de mai jos poate fi subțiat dacă se vrea marmura mai vizibilă. */
.footer-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.footer-bg picture { display: block; height: 100%; }
.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 74%;
  opacity: .9;
  /* transparentă sus, plină jos: imaginea „crește" din pagină, fără muchie */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 46%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 46%, #000 100%);
}
/* voal peste fotografie, ca textul să rămână lizibil */
.footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  /* dozat empiric: mai jos de atât textul legal scade sub pragul AA de contrast */
  background:
    linear-gradient(180deg, rgba(14, 12, 9, .28) 0%, rgba(14, 12, 9, .1) 40%, rgba(14, 12, 9, .44) 100%),
    radial-gradient(70% 90% at 8% 60%, rgba(14, 12, 9, .22), transparent 70%);
}
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
/* 112px = 140 micșorat cu 20%, cerut de client. Inelul exterior are 0,66 unități
   din viewBox-ul de 200, deci aici ajunge la 0,37px — sub un pixel fizic, dar e
   un <circle> real, deci se randează ca linie fină uniformă, nu neregulată.
   Subtitlul din logo (3,7% din diametru) coboară la ~4,1px: pur decorativ. */
.footer-brand img { width: 112px; height: 112px; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; color: var(--muted); max-width: 22rem; }
.footer h4 {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: .6rem; }
/* eticheta „Restaurant & Cazare:" stă în afara linkului (link doar pe număr):
   fără regula asta ar moșteni 1rem/--ink de la body și ar ieși din rând cu restul coloanei */
.footer-col li { font-size: .95rem; color: var(--ink-dim); }
.footer-col a { font-size: .95rem; color: var(--ink-dim); transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-legal {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--gold-faint);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem 2rem;
  font-size: .8rem;
  color: var(--muted);
}
.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }
/* datele de identificare a firmei: discrete, dar prezente pe fiecare pagină */
.footer-firma { font-size: .76rem; letter-spacing: .02em; opacity: .8; }

/* ---------- Pagina Meniu ---------- */
.menu-hero {
  position: relative;
  padding: 10rem 0 5rem;
  /* Marmura aurie stă dedesubt; gradientul de deasupra e opac sus (sub bara de
     navigație), se subțiază la mijloc ca să se vadă textura, și se închide la loc
     jos, ca tranziția spre restul paginii să nu aibă muchie. */
  background:
    radial-gradient(70% 60% at 80% 0%, rgba(216, 179, 106, .12) 0%, transparent 65%),
    linear-gradient(180deg, rgba(20, 17, 12, .90) 0%, rgba(20, 17, 12, .60) 45%, rgba(14, 12, 9, .94) 100%),
    url('/images/menu-hero-bg.jpg') center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.menu-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  margin: 1rem 0 1.2rem;
}
.menu-hero .lead { margin: 0 auto; }
.menu-badges { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }
.menu-list { max-width: 820px; margin: 0 auto; display: grid; gap: .4rem; }
.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .35rem 1.4rem;
  padding: 1.35rem .5rem;
  border-bottom: 1px solid var(--gold-faint);
  border-radius: 8px;
}
/* Fundalul de hover se desenează ÎN AFARA cutiei, printr-un pseudo-element.
   Dacă am mări padding-ul la hover, coloana s-ar îngusta și textul ar sări pe alt rând. */
.menu-item::before {
  content: '';
  position: absolute;
  inset: 0 -1rem;
  border-radius: 10px;
  background: rgba(216, 179, 106, .05);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
}
.menu-item:hover::before { opacity: 1; }
.menu-item > * { position: relative; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: .9rem;
}
.menu-item-name .chip {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 100px;
  padding: .22rem .7rem;
  white-space: nowrap;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  align-self: baseline;
}
.menu-item-desc { grid-column: 1; font-size: .92rem; color: var(--muted); }
.menu-item-weight { grid-column: 2; grid-row: 2; font-size: .8rem; color: var(--muted); text-align: right; }
.menu-note {
  max-width: 820px;
  margin: 3.5rem auto 0;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(29, 25, 19, .85), rgba(23, 19, 14, .9));
  text-align: center;
}
.menu-note p { color: var(--ink-dim); max-width: 36rem; margin: 0 auto; }
.menu-note .btn { margin-top: 1.4rem; max-width: 100%; }
/* două butoane alăturate: pe un rând cât încap, stivuite când nu mai încap.
   Regula vine DUPĂ `.menu-note .btn` — aceeași specificitate, deci câștigă
   ultima; altfel fiecare buton ar fi păstrat marginea proprie de 1.4rem. */
.menu-note-actiuni {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}
.menu-note-actiuni .btn { margin-top: 0; }

/* ============================================================
   MENIU RĂSFOIBIL — revistă cu întoarcere de pagină în 3D
   Desktop: două pagini alăturate, cotor la mijloc.
   Mobil: o pagină, fiecare se întoarce separat (altfel versoul nu s-ar vedea).
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.flip-section { padding-top: clamp(2rem, 5vw, 3.5rem); }

/* --- cuprins --- */
.flip-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}
.flip-toc-item {
  padding: .42rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--gold-faint);
  background: rgba(29, 25, 19, .5);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: color .3s, border-color .3s, background-color .3s, transform .3s var(--ease-out);
}
.flip-toc-item:hover { color: var(--ink); border-color: var(--gold-soft); transform: translateY(-2px); }
.flip-toc-item.activ {
  color: #221a0e;
  background-color: #d8b36a;
  background-image: var(--grad-gold);
  background-origin: border-box;
  border-color: transparent;
}

/* --- scena --- */
.flip-wrap { display: flex; align-items: center; justify-content: center; gap: clamp(.5rem, 2vw, 1.5rem); }
.flip-stage {
  perspective: 2600px;
  perspective-origin: 50% 42%;
  flex: 0 1 auto;
}
.book {
  position: relative;
  transform-style: preserve-3d;
  /* cât mai mare, dar să încapă pe ecran — de mărimea asta depinde lizibilitatea */
  height: min(78vh, 820px);
  margin: 0 auto;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, .75));
}
/* raportul unei pagini e 440:800 = 0.55; două pagini alăturate = 1.1 */
.book-spread { aspect-ratio: 1.1 / 1; }
.book-single { aspect-ratio: .55 / 1; }

/* cotorul: linia de mijloc a revistei deschise */
.book-spread::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -1%;
  bottom: -1%;
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .75) 12%, rgba(0, 0, 0, .75) 88%, transparent);
  z-index: 60;
  pointer-events: none;
}

/* invitația de pe jumătatea stângă, cât timp revista e închisă */
.book-intro {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  cursor: pointer;
}
.book-intro-kicker {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.book-intro-titlu {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.book-intro-text {
  max-width: 22rem;
  font-size: .95rem;
  color: var(--ink-dim);
}
.book-intro-cta {
  margin-top: .4rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.book-intro-cta b { color: var(--gold); transition: transform .35s var(--ease-out); display: inline-block; }
.book-intro:hover .book-intro-cta { color: var(--ink-dim); }
.book-intro:hover .book-intro-cta b { transform: translateX(5px); }

.leaf {
  position: absolute;
  top: 0;
  height: 100%;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform .62s cubic-bezier(.42, .04, .28, .99);
}
.book-spread .leaf { left: 50%; width: 50%; }
.book-single .leaf { left: 0; width: 100%; }
.leaf.turned { transform: rotateY(-180deg); }

.face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #14110c;
  border-radius: 3px 8px 8px 3px;
  /* atingerea răsfoiește (dreapta înainte, stânga înapoi) — lupa nu mai există */
  cursor: pointer;
}
.face.back { transform: rotateY(180deg); }
.face img { width: 100%; height: 100%; object-fit: cover; display: block; }
.face-goala { background: linear-gradient(135deg, #16130e, #100e0a); cursor: default; }
/* umbra de îndoire lângă cotor — dă volum foii */
.face::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .12) 5%, transparent 16%);
}

/* --- săgeți --- */
.flip-arrow {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  background: rgba(14, 12, 9, .6);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .35s var(--ease-spring), background-color .3s, border-color .3s, opacity .3s;
}
.flip-arrow svg { width: 22px; height: 22px; }
.flip-arrow:hover:not(:disabled) { transform: scale(1.08); border-color: rgba(216, 179, 106, .5); background: var(--gold-faint); }
.flip-arrow:disabled { opacity: .25; cursor: default; }

/* --- bara de sub revistă --- */
.flip-bar {
  margin-top: clamp(1.2rem, 3vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.flip-count {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.flip-dots { display: flex; gap: .4rem; }
.flip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(216, 179, 106, .22);
  transition: background-color .35s, transform .35s var(--ease-out);
}
.flip-dot.activ { background: var(--gold); transform: scale(1.5); }
.flip-hint {
  margin-top: .9rem;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}
.flip-hint kbd {
  font-family: var(--font-body);
  border: 1px solid var(--gold-faint);
  border-radius: 5px;
  padding: .05rem .38rem;
  font-size: .8em;
}

/* ---------- Valori nutriționale ---------- */
.vn-section { padding-top: clamp(2.5rem, 6vw, 4rem); }
.vn-legenda {
  max-width: 52rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--gold-faint);
  border-radius: var(--radius);
  background: rgba(29, 25, 19, .55);
}
.vn-legenda h2 {
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: var(--gold);
  margin: 0 0 .8rem;
}
.vn-legenda p { color: var(--ink-dim); font-size: .96rem; }
.vn-legenda b { color: var(--ink); font-weight: 700; }
.vn-legenda-nota { margin-top: .9rem; font-size: .88rem; color: var(--muted); }
.vn-legenda a { color: var(--gold); font-weight: 600; }

.vn-cauta { max-width: 40rem; margin: 0 auto 1.6rem; }
.vn-input {
  width: 100%;
  padding: .95rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--gold-soft);
  background: rgba(14, 12, 9, .6);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .3s, background-color .3s;
}
.vn-input::placeholder { color: var(--muted); }
.vn-input:focus {
  outline: none;
  border-color: rgba(216, 179, 106, .55);
  background: rgba(14, 12, 9, .85);
}
.vn-rezultat { margin-top: .6rem; text-align: center; font-size: .86rem; color: var(--muted); min-height: 1.2em; }

.vn-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.vn-chip {
  padding: .4rem .95rem;
  border-radius: 100px;
  border: 1px solid var(--gold-faint);
  color: var(--ink-dim);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s, border-color .3s, background-color .3s;
}
.vn-chip:hover { color: var(--gold); border-color: var(--gold-soft); background: var(--gold-faint); }
.vn-chip.activ { color: var(--bg); background: var(--grad-gold); border-color: transparent; }

.vn-cat { margin-bottom: clamp(2.5rem, 6vw, 4rem); scroll-margin-top: 6rem; }
.vn-cat[hidden] { display: none; }
.vn-cat-titlu {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem 1rem;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  color: var(--gold);
  padding-bottom: .7rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--gold-faint);
}
.vn-cat-nr {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.vn-item {
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(216, 179, 106, .1);
}
.vn-item[hidden] { display: none; }
.vn-item:last-child { border-bottom: 0; }
.vn-nume {
  font-size: 1.12rem;
  color: var(--ink);
  margin: 0 0 .45rem;
}
.vn-gramaj {
  margin-left: .5rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.vn-ing { font-size: .89rem; color: var(--muted); margin: 0 0 .8rem; max-width: 60rem; }
.vn-alergeni { margin-top: .7rem; font-size: .84rem; color: var(--ink-dim); }
.vn-alergeni b { color: var(--gold); font-weight: 700; }
.vn-fara { font-size: .86rem; color: var(--muted); font-style: italic; }

/* rândul de valori: se lățește singur, fără să sară pe mobil */
.vn-valori {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: .55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.vn-valori li {
  padding: .6rem .8rem;
  border-radius: 10px;
  border: 1px solid var(--gold-faint);
  background: rgba(14, 12, 9, .45);
}
.vn-valori b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
/* DOAR copilul direct: eticheta („kcal", „grăsimi"). Fără `>`, regula prindea
   și span-ul cu kJ din interiorul lui <b> și îl rupea pe rând propriu, uppercase. */
.vn-valori li > span {
  display: block;
  margin-top: .12rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.vn-valori i { display: block; margin-top: .25rem; font-size: .72rem; font-style: normal; color: var(--muted); }
.vn-valori .vn-kcal { border-color: var(--gold-soft); background: var(--gold-faint); }
.vn-valori .vn-kcal b { color: var(--gold); }
.vn-kj { font-size: .74rem; font-weight: 400; color: var(--muted); }

.vn-gol { text-align: center; color: var(--muted); padding: 2.5rem 0; }
.vn-gol[hidden] { display: none; }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem var(--pad-x);
  background: radial-gradient(60% 50% at 50% 0%, rgba(216, 179, 106, .1) 0%, transparent 70%);
}
.page-404 .code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 11rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.page-404 h1 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 1rem 0 .8rem; }
.page-404 p { color: var(--ink-dim); max-width: 30rem; margin: 0 auto; }
.page-404 .actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  /* fără will-change: sunt ~20 de elemente, iar promovarea permanentă a lor în
     straturi separate costă memorie și poate produce artefacte de randare */
}
[data-reveal].in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — media queries DUPĂ regulile de bază
   ============================================================ */
@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding-top: 2.6rem; }
  .stat:nth-child(3)::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  body { font-size: 1rem; }
  .nav-inner { padding-top: .85rem; padding-bottom: .85rem; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 12px 11px;
    background: transparent;
    border: 1px solid var(--gold-soft);
    border-radius: 12px;
    cursor: pointer;
    z-index: 62;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--gold);
    transition: transform .45s var(--ease-out), opacity .3s;
    transform-origin: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-links { display: none; }

  /* Mobil: aranjarea inițială — conținutul ancorat jos, reperele în flux, pe un rând
     care se rupe singur. Overlay-ul redevine vertical, dens la bază, ca textul de jos
     să rămână lizibil peste video. */
  .hero { align-items: flex-end; }
  .hero-content { min-height: 0; padding: 7rem var(--pad-x) clamp(5rem, 11vh, 7.5rem); }
  .hero-content > *:not(.hero-meta) { max-width: none; }
  /* Pe telefon cadrul e decupat lateral; mutăm fereastra spre dreapta ca tigaia
     și flacăra să intre în ea, nu bucătarul din marginea stângă. */
  .hero-video { transform: none; object-position: 65% 58%; }
  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(14, 12, 9, .62) 0%, rgba(14, 12, 9, .18) 34%, rgba(14, 12, 9, .58) 66%, var(--bg) 98%),
      radial-gradient(90% 70% at 50% 100%, rgba(14, 12, 9, .55) 0%, transparent 60%);
  }
  .hero-cta { margin-top: 2.3rem; gap: 1rem; }
  .hero-cta .btn { padding: .95rem 2rem; }
  .hero-meta {
    position: static;
    margin-top: 2.4rem;
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .5rem 1.2rem;
    font-size: .66rem;
    letter-spacing: .12em;
  }
  .hero-meta span::before { width: 4px; height: 4px; }
  .hero-badge { font-size: .67rem; padding: .42rem .95rem; gap: .5rem; letter-spacing: .18em; }
  .hero-badge::before { font-size: .6rem; }
  /* în bara de sus, pe telefon, rămâne doar „Restaurant & Pensiune" */
  /* 38px × raportul 3.63 = 138px lățime — încape lângă butonul de meniu chiar și pe 360px */
  .brand img { height: 38px; }
  /* titlul cardului pe un rând, iar butoanele să încapă „Deschide în Google Maps" */
  /* footerul mobil e înalt și îngust: decupajul lateral ar lăsa doar zona goală
     din mijlocul fotografiei — mutăm fereastra pe pahare (de 6 ori mai vizibil) */
  /* varianta de mobil e deja tăiată la marginea mesei, deci se aliniază jos;
     procent mai MIC pe orizontală = conținutul pozei se mută spre dreapta */
  /* procent mai MIC = conținutul pozei se mută spre dreapta */
  .footer-bg img { object-position: 87.5% bottom; }
  /* Voal mai gros decât pe desktop. Valorile vin de la fotografia anterioară (masă cu
     pahare), unde blatul luminos ajungea până jos; cu marmura provizorie sunt mai mult
     decât suficiente — contrast măsurat 6,08:1, cu ~1,6 peste pragul AA. */
  .footer-bg::after {
    background:
      linear-gradient(180deg, rgba(14, 12, 9, .32) 0%, rgba(14, 12, 9, .26) 40%, rgba(14, 12, 9, .58) 100%),
      radial-gradient(70% 90% at 8% 60%, rgba(14, 12, 9, .22), transparent 70%);
  }
  .contact-card h3 { font-size: clamp(1.18rem, 4.3vw, 1.45rem); text-align: center; }
  .contact-card .btn { padding: .88rem 1rem; font-size: .88rem; }
  /* pe telefon eticheta se scurtează la „Rezervă: 0788 208 890", altfel trece pe două rânduri */
  .btn-lung { display: none; }
  .menu-note .btn { padding: .88rem 1.15rem; font-size: .88rem; }
}

/* Telefoane înguste (320–400px): butonul cu numărul de telefon are nevoie de tot
   spațiul, altfel textul se rupe în două rânduri. */
@media (max-width: 400px) {
  .menu-note { padding: 1.4rem 1rem; }
  .menu-note .btn { padding: .82rem .85rem; font-size: .82rem; gap: .45rem; }
  /* centrată peste tot; pe telefon doar puțin mai mică și mai jos */
  .hero-scroll { bottom: 1.1rem; width: 22px; height: 36px; }

  .feature, .feature:nth-child(even) { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-media { order: 0; }
  .feature-media::before, .feature:nth-child(even) .feature-media::before { transform: translate(10px, 10px); }

  .contact-grid { grid-template-columns: 1fr; }
  .story-bg::after { background: linear-gradient(180deg, rgba(14, 12, 9, .94) 0%, rgba(14, 12, 9, .82) 100%); }
}

@media (max-width: 640px) {
  .offers-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat { padding: 2rem .6rem 0; }
  .stat-label { font-size: .68rem; letter-spacing: .14em; }
  .hero-cta .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-legal { justify-content: center; text-align: center; }
  .menu-item-name { font-size: 1.12rem; flex-wrap: wrap; gap: .5rem; }
  .menu-item-price { font-size: 1.1rem; }
  /* revista pe telefon: săgețile trec sub pagină, ca imaginea să fie cât mai mare */
  .flip-wrap { flex-wrap: wrap; }
  .flip-arrow { order: 2; width: 44px; height: 44px; }
  .flip-stage { order: 1; flex: 1 0 100%; }
  .flip-toc { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: .5rem; scrollbar-width: none; }
  .flip-toc::-webkit-scrollbar { display: none; }
  .flip-toc-item { flex: none; font-size: .74rem; padding: .38rem .85rem; }
  .flip-bar { gap: .8rem; }
}

/* ---------- Motion off ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-bg img { animation: none; transform: none; }
}

/* ============================================================
   MADE-BY — semnătura We Design & Code (buton </> + card glass)
   ============================================================ */
.made-by-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 95; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center; background: transparent; border: none;
  color: rgba(245, 239, 230, .18); font-family: ui-monospace, 'JetBrains Mono', monospace; font-size: .58rem;
  letter-spacing: -.04em; cursor: pointer; padding: 0; opacity: 0; pointer-events: none;
  transition: color .4s, opacity .5s; }
.made-by-btn::before { content: '</>'; }
.made-by-btn:hover { color: rgba(245, 239, 230, .5); }
.made-by-btn.show { opacity: 1; pointer-events: auto; }

.made-by-card { position: fixed; bottom: 4rem; right: 1.5rem; z-index: 96; display: flex; flex-direction: column;
  align-items: center; gap: .1rem; padding: .6rem .9rem;
  background: linear-gradient(135deg, rgba(5, 5, 16, .28) 0%, rgba(35, 20, 10, .18) 100%);
  border: 1px solid rgba(216, 179, 106, .18); border-radius: 12px;
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); text-decoration: none; color: #f5efe6;
  opacity: 0; pointer-events: none; clip-path: circle(0% at 92% 120%);
  transition: clip-path .55s cubic-bezier(.16, 1, .3, 1), opacity .4s; }
.made-by-card.open { opacity: 1; pointer-events: auto; clip-path: circle(250% at 92% 120%); }
.made-by-logo { width: 28px; height: 28px; object-fit: contain;
  transform: scale(.3) rotate(-20deg); opacity: 0;
  transition: transform .45s cubic-bezier(.34, 1.8, .64, 1) .15s, opacity .45s .15s; }
.made-by-card.open .made-by-logo { transform: none; opacity: 1; }
.made-by-name { font-family: var(--font-body); font-weight: 600; font-size: .38rem;
  text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; color: var(--gold);
  transform: translateY(6px); opacity: 0; transition: transform .35s ease .25s, opacity .35s .25s; }
.made-by-card.open .made-by-name { transform: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .made-by-card, .made-by-logo, .made-by-name, .made-by-btn { transition-duration: .01ms; }
}

/* ============================================================
   TOUCH-URI PREMIUM PER SECȚIUNE
   ============================================================ */

/* ---------- Nav: ascundere inteligentă + link activ ---------- */
.nav { transition: background-color .5s, border-color .5s, backdrop-filter .5s, transform .55s var(--ease-out); }
.nav.nav-hidden { transform: translateY(-100%); }
/* cu meniul deschis bara stă deasupra overlay-ului, dar fără fundal propriu —
   altfel s-ar vedea o fâșie blurată peste el */
body.menu-open .nav {
  transform: none;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav-links a:not(.btn).active { color: var(--ink); }
.nav-links a:not(.btn).active::after { transform: scaleX(1); transform-origin: left; }
.nav-num { display: none; }
.nav-overlay { display: none; }

/* ---------- Hero: litere cinematice + respirație aurie + scântei ---------- */
.hero h1.split { background: none; -webkit-text-fill-color: currentColor; color: var(--ink); animation: titleBreathe 7s ease-in-out 3.2s infinite; }
.hero h1 .ltr {
  display: inline-block;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  background-size: 300% 100%;
  background-position: calc(28% + var(--i) * 6%) 0;
  opacity: 0;
  transform: translateY(.38em) rotate(4deg);
  transform-origin: bottom left;
  animation: ltrIn .85s var(--ease-out) forwards;
  animation-delay: calc(.15s + var(--i) * .05s);
}
@keyframes ltrIn { to { opacity: 1; transform: none; } }
@keyframes titleBreathe {
  0%, 100% { text-shadow: 0 0 0 rgba(216, 179, 106, 0); }
  50% { text-shadow: 0 0 44px rgba(216, 179, 106, .42); }
}
/* ---------- Feature rows: cortină pe fotografii + numerotare ---------- */
.kicker-num { color: var(--ink-dim); font-weight: 800; }
.feature-media { transition: transform .7s var(--ease-out); }
.feature-media picture { display: block; }
.feature-media img {
  clip-path: inset(0 100% 0 0);
  transform: scale(1.06);
  /* fără întârziere și mai scurt: cortina de 1,5s se citea ca „poza vine târziu" */
  transition: clip-path .7s var(--ease-out), transform .8s var(--ease-out);
}
.feature:nth-child(even) .feature-media img { clip-path: inset(0 0 0 100%); }
.feature.in .feature-media img, .feature:nth-child(even).in .feature-media img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

/* ---------- Povestea: firul auriu care se desenează ---------- */
.story-text { position: relative; }
.thread { position: absolute; left: -2.2rem; top: .5rem; bottom: .5rem; width: 2px; }
.thread::before { content: ''; position: absolute; inset: 0; background: rgba(216, 179, 106, .14); border-radius: 2px; }
.thread-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #efd9a4, var(--gold) 55%, var(--gold-deep));
  border-radius: 2px;
  transform: scaleY(var(--p, 0));
  transform-origin: top;
}
.thread-dot {
  position: absolute;
  left: 50%;
  top: var(--pos);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a3226;
  border: 1px solid rgba(216, 179, 106, .4);
  transform: translate(-50%, -50%);
  transition: background-color .5s, box-shadow .5s, border-color .5s;
}
.thread-dot.lit {
  background: var(--gold);
  border-color: #efd9a4;
  box-shadow: 0 0 14px 2px rgba(216, 179, 106, .45);
}

/* ---------- Oferte: spotlight după cursor + rază de lumină la apariție ---------- */
.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 40%), rgba(216, 179, 106, .13), transparent 65%);
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.offer-card:hover::after { opacity: 1; }
.offer-media::before {
  content: '';
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: -30%;
  width: 38%;
  z-index: 1;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 243, 214, .26) 50%, transparent 100%);
  transform: translateX(-140%) skewX(-12deg);
  pointer-events: none;
}
.offer-card.in .offer-media::before { animation: sheen 1.5s var(--ease-out) .5s both; }
@keyframes sheen {
  from { transform: translateX(-140%) skewX(-12deg); }
  to { transform: translateX(560%) skewX(-12deg); }
}

/* ---------- Contact: ceas live + contur rotativ + butoane magnetice ---------- */
.clock-line { font-size: .95rem; color: var(--muted); }
.clock-line b {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.1em;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
@property --spin {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.contact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--spin),
    transparent 0turn, transparent .58turn,
    rgba(216, 179, 106, .7) .74turn, rgba(239, 217, 164, .95) .8turn, rgba(216, 179, 106, .7) .86turn,
    transparent .98turn);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: spinBorder 9s linear infinite;
  pointer-events: none;
}
@keyframes spinBorder { to { --spin: 1turn; } }
.magnetic { transition: transform .35s var(--ease-out); }

/* ---------- Meniul mobil premium (overlay) ---------- */
@media (max-width: 860px) {
  .nav-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 61;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    padding: 6rem var(--pad-x) 3rem;
    background: rgba(12, 10, 7, .94);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    backdrop-filter: blur(22px) saturate(1.2);
    clip-path: circle(0px at calc(100% - 2.7rem) 2.3rem);
    visibility: hidden;
    transition: clip-path .55s var(--ease-out), visibility 0s .55s;
  }
  .nav-overlay.open {
    clip-path: circle(142vmax at calc(100% - 2.7rem) 2.3rem);
    visibility: visible;
    transition: clip-path .75s var(--ease-out), visibility 0s;
  }
  .nav-overlay-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(60% 40% at 85% 6%, rgba(216, 179, 106, .16), transparent 65%),
      radial-gradient(52% 36% at 8% 96%, rgba(216, 179, 106, .09), transparent 70%);
  }
  .nav-overlay-links { display: grid; gap: 1.35rem; position: relative; }
  .nav-overlay-links a {
    display: inline-flex;
    align-items: baseline;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 8.5vw, 2.6rem);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .01em;
    transition: color .3s;
  }
  .nav-overlay-links a:active, .nav-overlay-links a:hover { color: var(--gold); }
  .nav-overlay-links li:last-child a { color: var(--gold); }
  .nav-num {
    display: inline;
    font-family: var(--font-body);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--gold);
    opacity: .85;
  }
  .nav-overlay-links li, .nav-overlay-foot {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
  }
  .nav-overlay.open .nav-overlay-links li, .nav-overlay.open .nav-overlay-foot {
    opacity: 1;
    transform: none;
    transition-delay: calc(.14s + var(--i) * .07s);
  }
  .nav-overlay-foot { display: grid; gap: 1.3rem; justify-items: start; position: relative; }
  .nav-overlay .contact-social { margin-top: 0; justify-content: flex-start; }
}
