@charset "UTF-8";
/* ═══════════════════════════════════════════════════════
   FoFo Sound Sibiu — style.css v3.0
   Design: dark cinematic · gold & violet · editorial 2026
   ═══════════════════════════════════════════════════════ */

/* ── 1. TOKENS ──────────────────────────────────────── */
:root {
  /* Culori de bază */
  --ink:          #05060c;
  --ink-2:        #0a0c16;
  --ink-3:        #10131f;
  --surface:      #141828;
  --surface-2:    #1b2032;
  --line:         rgba(255,255,255,.09);
  --line-strong:  rgba(255,255,255,.16);

  /* Text */
  --fg:           #f4f5fa;
  --fg-soft:      #b9bdd0;
  --fg-mute:      #7f849c;

  /* Accente */
  --gold:         #d4af5f;
  --gold-hi:      #f0d391;
  --gold-dim:     #9b7f3d;
  --violet:       #8b5cf6;
  --violet-hi:    #a985ff;
  --cyan:         #3ddad7;

  /* Gradiente */
  --grad-gold:    linear-gradient(115deg, var(--gold-hi), var(--gold) 45%, var(--gold-dim));
  --grad-glow:    radial-gradient(60% 60% at 50% 40%, rgba(139,92,246,.30), transparent 70%);
  --grad-fade:    linear-gradient(180deg, transparent, var(--ink));

  /* Tipografie */
  --f-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --f-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --f-accent:  'Cormorant Garamond', Georgia, serif;

  /* Spațiere fluidă */
  --sp-section: clamp(4.5rem, 9vw, 8.5rem);
  --sp-gap:     clamp(1.25rem, 2.6vw, 2.25rem);
  --container:  1360px;
  --pad-x:      clamp(1.15rem, 4vw, 2.5rem);

  /* Forme */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Umbre */
  --sh-sm: 0 2px 10px rgba(0,0,0,.28);
  --sh-md: 0 14px 40px rgba(0,0,0,.42);
  --sh-lg: 0 30px 80px rgba(0,0,0,.55);
  --sh-gold: 0 10px 34px rgba(212,175,95,.26);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --header-h: 78px;
}

/* ── 2. RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  /* Sertarul de meniu mobil e position:fixed si stationeaza in afara ecranului;
     overflow-x de pe body nu-l decupeaza. `clip` taie fara sa creeze un
     container de scroll (deci nu strica position:fixed / sticky). */
  overflow-x: clip;
}

body {
  font-family: var(--f-body);
  font-size: clamp(.97rem, .35vw + .88rem, 1.06rem);
  line-height: 1.72;
  color: var(--fg-soft);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Textură fină pe fundal — adâncime fără imagini */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  background:
    radial-gradient(52vw 42vw at 82% -8%, rgba(139,92,246,.13), transparent 62%),
    radial-gradient(46vw 40vw at 8% 12%, rgba(212,175,95,.09), transparent 60%);
}

img, picture, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: var(--ink); }

/* ── 3. TIPOGRAFIE ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--fg);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.h-xl { font-size: clamp(2.6rem, 7.2vw, 5.4rem); }
.h-lg { font-size: clamp(2.1rem, 4.7vw, 3.5rem); }
.h-md { font-size: clamp(1.55rem, 2.7vw, 2.15rem); }
.h-sm { font-size: clamp(1.15rem, 1.6vw, 1.4rem); letter-spacing: -.015em; }

p { text-wrap: pretty; }
.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.68;
  color: var(--fg-soft);
}

.gold { color: var(--gold); }
.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent-it {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .65;
}
.eyebrow.center::after {
  content: '';
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .65;
}

/* ── 4. LAYOUT ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  position: relative;
  z-index: 1;
}
.container-narrow { max-width: 820px; }

.section { padding-block: var(--sp-section); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-alt { background: var(--ink-2); }
.section-deep {
  background: linear-gradient(180deg, var(--ink), var(--ink-3) 50%, var(--ink));
}

.sec-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { margin-top: 1.1rem; }

.hr-line {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ── 5. BUTOANE ─────────────────────────────────────── */
.btn {
  --btn-bg: var(--grad-gold);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.85rem;
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-gold); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}

.btn-wa {
  --btn-bg: #22b757;
  --btn-fg: #fff;
}
.btn-wa:hover { --btn-bg: #1ea34d; box-shadow: 0 10px 30px rgba(34,183,87,.3); }

.btn-sm { padding: .7rem 1.3rem; font-size: .74rem; }
.btn-block { width: 100%; }

/* ── 6. HEADER ──────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5,6,12,.82);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
}

.header-wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  flex: none;
  margin-right: auto;
}
.logo-mark {
  flex: none;
  width: auto;
  height: 42px;   /* marca reala din logo, pastreaza raportul 403x462 */
}
.logo-text {
  font-family: var(--f-display);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--fg);
  line-height: 1;
}
.logo-text b { color: var(--gold); font-weight: 800; }
.logo-sub {
  display: block;
  font-family: var(--f-body);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 3px;
}

.nav-list { display: flex; align-items: center; gap: .15rem; }
/* Butoanele din sertar apar doar pe mobil */
.nav-drawer-cta { display: none; }
.nav-list a {
  display: block;
  padding: .55rem .82rem;
  font-size: .855rem;
  font-weight: 500;
  color: var(--fg-soft);
  border-radius: var(--r-pill);
  transition: color .25s, background .25s;
  white-space: nowrap;
}
.nav-list a:hover { color: var(--fg); background: rgba(255,255,255,.06); }
.nav-list a.active { color: var(--gold); background: rgba(212,175,95,.11); }

.header-actions { display: flex; align-items: center; gap: .7rem; flex: none; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .855rem;
  font-weight: 600;
  color: var(--fg);
  transition: color .25s;
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .32s var(--ease), opacity .2s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 880;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* ── 7. HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,6,12,.86) 0%, rgba(5,6,12,.62) 38%, rgba(5,6,12,.93) 100%),
    radial-gradient(70% 60% at 20% 50%, rgba(5,6,12,.6), transparent 70%);
}
.hero-glow {
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 60%;
  z-index: -1;
  background: var(--grad-glow);
  filter: blur(30px);
  pointer-events: none;
}

.hero-inner { max-width: 780px; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.6rem;
}
.tag {
  display: inline-block;
  padding: .4rem .95rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--fg-soft);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
.tag-gold { color: var(--gold); border-color: rgba(212,175,95,.4); background: rgba(212,175,95,.1); }
.tag-violet { color: var(--violet-hi); border-color: rgba(139,92,246,.4); background: rgba(139,92,246,.12); }

.hero h1 { margin-bottom: 1.3rem; }
.hero-sub {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--gold-hi);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.hero-desc { max-width: 60ch; margin-bottom: 2.2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid var(--line);
}
.hero-meta-item strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-meta-item span {
  display: block;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: .45rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .55rem;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.hero-scroll i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.1s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .25; transform: scaleY(.5); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);  transform-origin: top; }
}

/* Hero variantă internă (pagini) */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
  padding-bottom: clamp(2.8rem, 6vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,12,.9), rgba(5,6,12,.74) 45%, var(--ink));
}
.page-hero h1 { margin-bottom: 1.1rem; }
.page-hero .lead { max-width: 62ch; }

/* ── 8. BREADCRUMBS ─────────────────────────────────── */
.crumbs { margin-bottom: 1.5rem; }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.crumbs li { display: flex; align-items: center; gap: .5rem; font-size: .78rem; }
.crumbs li + li::before {
  content: '›';
  color: var(--fg-mute);
  opacity: .6;
}
.crumbs a { color: var(--fg-mute); transition: color .2s; }
.crumbs a:hover { color: var(--gold); }
.crumbs [aria-current] { color: var(--fg-soft); }

/* ── 9. CARDURI SERVICII ────────────────────────────── */
.grid { display: grid; gap: var(--sp-gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--surface), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .45s var(--ease-out), border-color .35s, box-shadow .45s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,95,.35);
  box-shadow: var(--sh-md);
}
.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-3);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,6,12,.75));
}
.card-body { padding: clamp(1.4rem, 2.5vw, 1.9rem); display: flex; flex-direction: column; flex: 1; gap: .85rem; }
.card-body h3 { font-size: 1.22rem; }
.card-body p { font-size: .94rem; }
.card-list { display: grid; gap: .5rem; margin-top: .3rem; }
.card-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .88rem;
  color: var(--fg-soft);
}
.card-list li::before {
  content: '';
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: .58em;
  border-radius: 50%;
  background: var(--gold);
}
.card-link {
  margin-top: auto;
  padding-top: .6rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s var(--ease);
}
.card:hover .card-link { gap: .8rem; }

.card-num {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(255,255,255,.05);
  line-height: 1;
  z-index: 1;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: rgba(212,175,95,.11);
  border: 1px solid rgba(212,175,95,.24);
  color: var(--gold);
  margin-bottom: .3rem;
}
.icon-badge.violet {
  background: rgba(139,92,246,.13);
  border-color: rgba(139,92,246,.28);
  color: var(--violet-hi);
}

/* ── 10. BENTO / SPLIT ──────────────────────────────── */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.split-media { position: relative; }
.split-media picture,
.split-media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.split-media img { object-fit: cover; }
.split-media::before {
  content: '';
  position: absolute;
  inset: -14% -10% auto auto;
  width: 55%;
  aspect-ratio: 1;
  background: var(--grad-glow);
  filter: blur(24px);
  z-index: -1;
}
.split.reverse .split-media { order: 2; }

.stat-float {
  position: absolute;
  right: clamp(-.5rem, -1vw, -1.5rem);
  bottom: clamp(-1rem, -2vw, -1.8rem);
  padding: 1.1rem 1.5rem;
  background: rgba(20,24,40,.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212,175,95,.3);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  text-align: center;
}
.stat-float b {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-float span {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: .4rem;
}

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.4rem 0; }
.chip {
  padding: .42rem 1rem;
  font-size: .76rem;
  font-weight: 500;
  color: var(--fg-soft);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.chip-gold { color: var(--gold); border-color: rgba(212,175,95,.32); background: rgba(212,175,95,.09); }

.prose > * + * { margin-top: 1.15rem; }
.prose h2, .prose h3 { margin-top: 2.2rem; }
.prose ul { display: grid; gap: .6rem; }
.prose ul li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}
.prose ul li::before {
  content: '';
  flex: none;
  width: 7px; height: 7px;
  margin-top: .6em;
  border-radius: 50%;
  background: var(--gold);
}

/* ── 11. GALERIE ────────────────────────────────────── */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .55rem 1.25rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--fg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: all .28s var(--ease);
}
.filter-btn:hover { border-color: var(--line-strong); color: var(--fg); }
.filter-btn.active {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 14px;
}
.gal-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--ink-3);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), border-color .3s;
}
.gal-item.tall { aspect-ratio: 3 / 4; }
.gal-item.wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out), filter .4s;
}
.gal-item:hover { transform: translateY(-4px); border-color: rgba(212,175,95,.4); }
.gal-item:hover img { transform: scale(1.07); }
.gal-cap {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem 1rem .9rem;
  font-size: .82rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(5,6,12,.9));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s, transform .35s var(--ease);
}
.gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }
.gal-item[hidden] { display: none; }

/* Card video */
.vid-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--ink-3);
  aspect-ratio: 16 / 10;
  transition: transform .4s var(--ease-out), border-color .3s;
}
/* Toate cardurile video au acelasi raport ca .card-media, ca grila sa fie
   uniforma indiferent daca filmarea e portret sau peisaj. */
.vid-card.portrait { aspect-ratio: 16 / 10; }
.vid-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.vid-card:hover { transform: translateY(-4px); border-color: rgba(212,175,95,.45); }
.vid-card:hover img { transform: scale(1.05); }
.vid-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,12,.15), rgba(5,6,12,.72));
  pointer-events: none;
}
.vid-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 66px; height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212,175,95,.93);
  color: var(--ink);
  z-index: 2;
  transition: transform .35s var(--ease), background .3s;
  box-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.vid-card:hover .vid-play { transform: translate(-50%,-50%) scale(1.12); background: var(--gold-hi); }
.vid-play::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,95,.45);
  animation: ripple 2.4s var(--ease) infinite;
}
@keyframes ripple {
  0%   { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}
.vid-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem 1.1rem 1rem;
  z-index: 2;
}
.vid-meta b {
  display: block;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}
.vid-meta span { font-size: .78rem; color: var(--fg-mute); }

/* ── 12. ZONE (SEO local) ───────────────────────────── */
.zone-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 12px; }
.zone-card {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.zone-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,95,.4);
  background: var(--surface-2);
}
.zone-card b {
  font-family: var(--f-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--fg);
}
.zone-card span { font-size: .76rem; color: var(--fg-mute); }
.zone-card em {
  font-style: normal;
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
}

.zone-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.zone-tags a {
  padding: .62rem 1rem;
  font-size: .78rem;
  color: var(--fg-soft);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  transition: all .25s;
}
.zone-tags a:hover { color: var(--gold); border-color: rgba(212,175,95,.4); }

/* ── 13. FAQ ────────────────────────────────────────── */
.faq { display: grid; gap: .8rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(212,175,95,.35); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::after {
  content: '';
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .32s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.faq-body { padding: 0 1.4rem 1.35rem; font-size: .95rem; }
.faq-body > * + * { margin-top: .8rem; }

/* ── 14. CTA BAND ───────────────────────────────────── */
.cta-band {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(135deg, var(--ink-3), var(--ink-2));
  border-block: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -50% 20% auto;
  height: 160%;
  background: var(--grad-glow);
  filter: blur(40px);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 56ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ── 15. FORMULAR ───────────────────────────────────── */
.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: .5rem;
}
.field label .req { color: var(--gold); }
.input {
  width: 100%;
  padding: .9rem 1.1rem;
  background: var(--ink-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--fg);
  /* 16px fix: sub aceasta valoare, iOS Safari mareste pagina la focus */
  font-size: 16px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.input::placeholder { color: var(--fg-mute); opacity: .8; }
.input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(212,175,95,.14);
}
.input.error { border-color: #ef5c5c; box-shadow: 0 0 0 3px rgba(239,92,92,.13); }
textarea.input { min-height: 148px; resize: vertical; }
select.input { appearance: none; cursor: pointer; background-image: none; }

.field-err {
  display: none;
  font-size: .78rem;
  color: #ef8080;
  margin-top: .4rem;
}
.field.has-error .field-err { display: block; }

.form-note { font-size: .8rem; color: var(--fg-mute); }
.form-msg {
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  border: 1px solid;
}
.form-msg.ok { background: rgba(34,183,87,.1); border-color: rgba(34,183,87,.4); color: #7ee2a3; }
.form-msg.err { background: rgba(239,92,92,.1); border-color: rgba(239,92,92,.4); color: #ef9a9a; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Blocuri contact */
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .3s, transform .3s var(--ease);
}
.contact-card:hover { border-color: rgba(212,175,95,.4); transform: translateY(-2px); }
.contact-card .icon-badge { width: 44px; height: 44px; margin: 0; }
.contact-card b { display: block; font-family: var(--f-display); font-size: .95rem; color: var(--fg); margin-bottom: .2rem; }
.contact-card span, .contact-card a { font-size: .9rem; color: var(--fg-soft); }
.contact-card a:hover { color: var(--gold); }

/* ── 16. FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(240px, 1.6fr) repeat(auto-fit, minmax(150px, 1fr));
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer-logo { display: inline-block; margin-bottom: 1.1rem; }
.footer-logo img { width: clamp(150px, 17vw, 185px); height: auto; }
.footer-desc { font-size: .92rem; max-width: 38ch; margin-bottom: 1.3rem; }
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  color: var(--fg-soft);
  transition: all .28s var(--ease);
}
.footer-socials a:hover {
  color: var(--gold);
  border-color: rgba(212,175,95,.45);
  background: rgba(212,175,95,.09);
  transform: translateY(-2px);
}
.footer-h {
  font-family: var(--f-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-links { display: grid; gap: .6rem; }
.footer-links a, .footer-contact li {
  font-size: .89rem;
  color: var(--fg-soft);
  transition: color .22s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: .8rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact svg { flex: none; margin-top: .28em; color: var(--gold); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
}
.footer-bottom-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--fg-mute);
}
.footer-bottom a { color: var(--fg-soft); }
.footer-bottom a:hover { color: var(--gold); }

/* ── 17. FAB ────────────────────────────────────────── */
.fabs {
  position: fixed;
  right: clamp(.9rem, 2.4vw, 1.6rem);
  bottom: clamp(.9rem, 2.4vw, 1.6rem);
  z-index: 850;
  display: grid;
  gap: .7rem;
}
.fab {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--sh-md);
  transition: transform .32s var(--ease), box-shadow .3s;
}
.fab:hover { transform: scale(1.09) translateY(-2px); }
.fab-wa { background: #22b757; }
.fab-call { background: var(--grad-gold); color: var(--ink); }

/* ── 18. MODALE ─────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(3,4,8,.95);
  backdrop-filter: blur(10px);
}
.modal[hidden] { display: none; }
.modal img, .modal video {
  max-width: min(100%, 1400px);
  max-height: 86vh;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.modal video { background: #000; }
.m-btn {
  position: absolute;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  border: 1px solid var(--line-strong);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  transition: background .25s, transform .25s;
}
.m-btn:hover { background: rgba(212,175,95,.85); color: var(--ink); transform: scale(1.06); }
.m-close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.m-prev { left: clamp(.6rem,2.5vw,2rem); top: 50%; transform: translateY(-50%); }
.m-next { right: clamp(.6rem,2.5vw,2rem); top: 50%; transform: translateY(-50%); }
.m-prev:hover, .m-next:hover { transform: translateY(-50%) scale(1.06); }
.m-cap {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem,3vw,2rem);
  transform: translateX(-50%);
  max-width: min(90%, 640px);
  text-align: center;
  font-size: .86rem;
  color: var(--fg-soft);
}

/* ── 19. ANIMAȚII REVEAL ────────────────────────────── */
/* Ascundem DOAR dacă JS este activ (clasa .js se pune inline în <head>).
   Fără JS, tot conținutul rămâne vizibil — nimic nu depinde de script. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.js .reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .09s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .27s; }
.d4 { transition-delay: .36s; }
.d5 { transition-delay: .45s; }

/* ── 20. UTILITARE ──────────────────────────────────── */
.center { text-align: center; }
.mt-1 { margin-top: .6rem; }
.mt-2 { margin-top: 1.2rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1.2rem; }
.flex-btns { display: flex; flex-wrap: wrap; gap: .8rem; }
.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;
}
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 1200;
  padding: .7rem 1.2rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top .25s;
}
.skip-link:focus { top: 0; }

/* ── 21. RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-list a { padding: .5rem .6rem; font-size: .82rem; }
  .header-phone span { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }

  .hamburger { display: block; }
  .header-phone { display: none; }

  .header-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 340px);
    z-index: 890;
    background: var(--ink-2);
    border-left: 1px solid var(--line);
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    transform: translateX(102%);
    /* visibility, nu doar transform: altfel sertarul (position:fixed) latea
       documentul cu ~15px si aparea scroll orizontal pe mobil, iar linkurile
       din meniul inchis ramaneau focusabile cu Tab. */
    visibility: hidden;
    transition: transform .4s var(--ease-out), visibility .4s;
    overflow-y: auto;
  }
  .header-nav.is-open { transform: none; visibility: visible; }
  .nav-list { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav-list a {
    padding: .85rem 1rem;
    font-size: 1rem;
    border-radius: var(--r-sm);
  }
  .nav-drawer-cta { display: grid; gap: .7rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

  .split.reverse .split-media { order: 0; }
  .gal-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .stat-float { right: 1rem; bottom: -1rem; padding: .9rem 1.2rem; }
}

@media (max-width: 620px) {
  /* 140px, nu 165px: la 360–390px latime ecran, 165px lasa loc pentru
     o singura coloana, iar galeria devine o coloana lunga de derulat. */
  .gallery { grid-template-columns: repeat(auto-fill, minmax(min(100%, 140px), 1fr)); gap: 10px; }
  /* zone de atins mai generoase pe ecran mic */
  .footer-links a { display: inline-block; padding-block: .3rem; }
  .footer-contact li { padding-block: .15rem; }
  .crumbs li { font-size: .8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-meta { gap: 1.4rem 2rem; }
  /* Pe ecran mic le asezam pe orizontala: acopera o singura banda de text,
     nu doua, si raman la fel de accesibile cu degetul. */
  .fabs { grid-auto-flow: column; gap: .6rem; }
  .fab { width: 48px; height: 48px; }
  .m-prev, .m-next { width: 40px; height: 40px; }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── 22. MOTION / PRINT ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .fabs, .modal, .hero-media, .nav-overlay { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
}
