/* =========================================================
   CHRONIC TATTOO STUDIO — Stiluri comune (TEMĂ DARK)
   Paletă: negru profund + auriu, serif elegant + sans letterspaced
   ========================================================= */

/* ---------- Fonturi ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ---------- Design tokens (dark) ---------- */
:root {
  --gold:        #b8985f;   /* auriu mat — accente, linii */
  --gold-bright: #e6c15e;   /* auriu strălucitor — butoane, linkuri active */

  --bg:          #0c0b0a;   /* fundal principal (negru cald) */
  --bg-soft:     #141210;   /* secțiuni alternate */
  --surface:     #1b1712;   /* carduri / inputuri */
  --black:       #060504;   /* cel mai întunecat */

  --text:        #f4efe6;   /* text principal (crem deschis) */
  --text-soft:   #9d9488;   /* text secundar */
  --on-gold:     #0c0b0a;   /* text pe fundal auriu */
  --white:       #ffffff;
  --line:        rgba(184, 152, 95, 0.22);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Segoe UI', sans-serif;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 4px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans); font-weight: 300;
  color: var(--text); line-height: 1.7;
  /* Fundal premium: glow auriu fin sus + degrade profund spre negru la scroll */
  background: var(--bg);
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(184,152,95,0.06), transparent 58%),
    linear-gradient(180deg, #0c0b0a 0%, #080705 55%, #050403 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--on-gold); }

/* ---------- Utilitare ---------- */
.label {
  font-family: var(--font-sans); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.35em; font-size: 0.72rem; color: var(--gold);
}
.serif { font-family: var(--font-serif); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 10vw, 8rem); }

.section-head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head .label { display: inline-block; margin-bottom: 1rem; }
.section-head h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.1; color: var(--text);
}
.section-head .lead {
  font-family: var(--font-script); font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--text-soft);
  max-width: 46ch; margin: 1.25rem auto 0;
}

.divider { display: flex; align-items: center; justify-content: center; gap: 1.5rem; color: var(--gold); }
.divider::before, .divider::after {
  content: ''; height: 1px; width: min(120px, 18vw);
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.divider .star { font-size: 0.8rem; }

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.78rem; padding: 1rem 2.25rem;
  border-radius: var(--radius); transition: all 0.35s var(--ease); white-space: nowrap;
  position: relative; overflow: hidden;
}
/* efect de „shine” care traversează butonul la hover */
.btn::before {
  content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease);
}
.btn:hover::before { left: 130%; }

.btn-primary { background: var(--gold); color: var(--on-gold); border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(230,193,94,0.55); }

.btn-outline { background: transparent; color: var(--gold-bright); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--on-gold); transform: translateY(-2px); }

.btn-ghost { color: var(--text); padding-inline: 0; overflow: visible; }
.btn-ghost::before { display: none; }
.btn-ghost::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.btn-ghost:hover::after { transform: scaleX(1); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(12, 11, 10, 0.82); backdrop-filter: blur(12px);
  padding-block: 1rem; box-shadow: 0 1px 0 var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 0.85rem; }
.nav-logo-img { height: 46px; width: auto; flex: none; border-radius: 8px; box-shadow: 0 4px 14px -6px rgba(0,0,0,0.6); transition: transform 0.4s var(--ease); }
.nav-brand:hover .nav-logo-img { transform: rotate(-4deg) scale(1.05); }
.nav-brand .brand-text {
  font-family: var(--font-serif); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.28em; font-size: 1rem; color: var(--gold);
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-family: var(--font-sans); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.78rem; color: var(--text);
  position: relative; padding-block: 0.25rem; transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); transition: all 0.35s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 7rem var(--gutter) 4rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3; overflow: hidden;
  background: #0f0f0f; /* bază închisă premium */
}
/* imaginea de fundal — estompată fin, doar ca textură atmosferică */
.hero-bg::before {
  content: ''; position: absolute; inset: -14px; /* bleed ca să nu se vadă marginile la blur */
  background: url('../assets/img/3.jpeg') center/cover no-repeat;
  filter: blur(3px) saturate(0.9);
  transform: scale(1.08);
}
/* overlay închis elegant peste imagine (exact ca în cerință) + glow auriu fin sus */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.9), rgba(15,15,15,0.7)),
    radial-gradient(120% 90% at 50% 0%, rgba(184,152,95,0.10), transparent 55%);
}
/* grilă decorativă subtilă (mutată pe .hero ca să rămână clară, neestompată) */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 70px 70px; opacity: 0.28;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black, transparent 72%);
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 72%);
}
/* glow auriu pulsatoriu */
.hero::after {
  content: ''; position: absolute; left: 50%; top: 38%; width: 70vmax; height: 70vmax; z-index: -2;
  transform: translate(-50%, -50%); pointer-events: none;
  background: radial-gradient(circle, rgba(184,152,95,0.14), transparent 65%);
  animation: glowPulse 9s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.9;  transform: translate(-50%, -50%) scale(1.18); }
}

.hero-inner { position: relative; max-width: 760px; }
.hero-loc { display: inline-block; margin-bottom: 1.75rem; animation: fadeUp 0.9s var(--ease) both 0.1s; }
.hero-title { display: flex; flex-direction: column; align-items: center; line-height: 0.95; }
.hero-title-main {
  font-family: var(--font-serif); font-weight: 900;
  font-size: clamp(3.5rem, 14vw, 8.5rem); letter-spacing: 0.02em;
  background: linear-gradient(110deg, #f4efe6 0%, #fffaf0 30%, #cbb98f 50%, #f4efe6 72%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: fadeUp 1s var(--ease) both 0.25s, shimmer 7s linear infinite 1.4s;
}
@keyframes shimmer { to { background-position: 220% center; } }
.hero-title-sub {
  font-family: var(--font-sans); font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.45em; font-size: clamp(1rem, 4vw, 2rem); color: var(--gold-bright);
  margin-top: 0.4rem; padding-left: 0.45em; animation: fadeUp 1s var(--ease) both 0.4s;
}
.hero-tagline {
  font-family: var(--font-script); font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.7rem); color: var(--text-soft);
  margin-top: 2.5rem; animation: fadeUp 1s var(--ease) both 0.55s;
}
.hero-cta { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-top: 2.75rem; animation: fadeUp 1s var(--ease) both 0.7s; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  animation: fadeUp 1s var(--ease) both 0.95s;
}
.hero-scroll .label { font-size: 0.62rem; color: var(--text-soft); }
.hero-scroll-line { width: 1px; height: 48px; background: var(--line); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold); animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { top: -50%; } 100% { top: 100%; } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* =========================================================
   DESPRE
   ========================================================= */
.despre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.despre-media { position: relative; }
.despre-img {
  width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius);
  object-fit: cover; object-position: center;
  background: var(--surface); /* fallback dacă imaginea lipsește */
  border: 1px solid var(--line); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}
.despre-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--gold); color: var(--on-gold);
  padding: 1.25rem 1.75rem; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  box-shadow: 0 20px 40px -18px rgba(184,152,95,0.5);
}
.despre-badge-num { font-size: 2.4rem; font-weight: 700; line-height: 1; color: var(--on-gold); }
.despre-badge .label { color: var(--on-gold); font-size: 0.6rem; }

.despre-text .label { display: block; margin-bottom: 1rem; }
.despre-text h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.1; margin-bottom: 1.5rem; }
.despre-text p { color: var(--text-soft); margin-bottom: 1.1rem; }
.despre-text strong { color: var(--text); font-weight: 500; }
.despre-features { margin: 1.75rem 0 2rem; }
.despre-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.4rem 0; color: var(--text); }
.despre-features .star { color: var(--gold); font-size: 0.8rem; }

/* =========================================================
   SERVICII
   ========================================================= */
.servicii { background: var(--bg-soft); }
.servicii-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.serviciu {
  background: var(--surface); padding: 2.5rem 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.serviciu:hover {
  transform: translateY(-8px);
  border-color: var(--gold-bright);
  /* fundal deschis insesizabil + strălucire fină aurie/bronz */
  background: linear-gradient(160deg, rgba(184,152,95,0.10), var(--surface));
  box-shadow:
    0 26px 50px -28px rgba(0,0,0,0.85),
    0 0 0 1px rgba(184,152,95,0.25),
    0 14px 44px -14px rgba(184,152,95,0.30);
}
.serviciu-num { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); letter-spacing: 0.1em; }
.serviciu h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.4rem; margin: 0.75rem 0 0.6rem; color: var(--text); }
.serviciu p { color: var(--text-soft); font-size: 0.92rem; }
.serviciu-feature { border-color: var(--gold); background: linear-gradient(160deg, rgba(184,152,95,0.14), var(--surface)); }
.serviciu-tag { display: inline-block; margin-top: 0.5rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.58rem; color: var(--on-gold); background: var(--gold); padding: 0.25rem 0.6rem; border-radius: 100px; }
.serviciu-feature h3 { margin-top: 0.5rem; }

/* =========================================================
   LUCRĂRI RECENTE — slider orizontal (CSS scroll-snap)
   ========================================================= */
.works-slider { position: relative; margin-top: 0.5rem; }
.works-track {
  display: flex; gap: 1.25rem;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scroll-padding-inline: var(--gutter);
  padding: 0.5rem var(--gutter) 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.works-track::-webkit-scrollbar { display: none; } /* WebKit */
.works-track:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

.work-card {
  flex: 0 0 clamp(230px, 30vw, 330px);
  scroll-snap-align: start;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--surface);
  box-shadow: 0 20px 40px -28px rgba(0,0,0,0.8);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.work-card img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.work-card:hover {
  border-color: var(--gold-bright);
  box-shadow: 0 26px 50px -28px rgba(0,0,0,0.85), 0 0 0 1px rgba(184,152,95,0.22), 0 14px 44px -16px rgba(184,152,95,0.28);
}
.work-card:hover img { transform: scale(1.05); }

.works-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(12,11,10,0.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--gold-bright);
  font-size: 1.7rem; line-height: 1; padding-bottom: 3px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.works-arrow:hover { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }
.works-prev { left: clamp(0.4rem, 1.5vw, 1.25rem); }
.works-next { right: clamp(0.4rem, 1.5vw, 1.25rem); }

.works-cta { text-align: center; margin-top: 2.5rem; }

/* Pe mobil ascundem săgețile — navigarea se face prin swipe */
@media (max-width: 720px) {
  .works-arrow { display: none; }
  .work-card { flex-basis: 78vw; }
}

/* =========================================================
   INSTAGRAM marquee
   ========================================================= */
.ig { background: var(--bg); padding-block: clamp(3rem, 7vw, 5rem); overflow: hidden; }
.ig-marquee { overflow: hidden; white-space: nowrap; }
.ig-track { display: inline-flex; gap: 3rem; animation: marquee 28s linear infinite; }
.ig-track span { font-family: var(--font-script); font-style: italic; font-size: clamp(1.5rem, 5vw, 3rem); color: var(--text-soft); opacity: 0.55; }
.ig-track .star { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-33.333%); } }
.ig-cta { text-align: center; margin-top: 2.5rem; }

/* =========================================================
   PAGINI INTERIOARE
   ========================================================= */
.page-inner { padding-top: 84px; }
.page-hero { text-align: center; padding: clamp(3.5rem, 8vw, 6rem) var(--gutter) clamp(2rem, 4vw, 3rem); }
.page-hero .label { display: inline-block; margin-bottom: 1rem; animation: fadeUp 0.8s var(--ease) both 0.05s; }
.page-hero h1 { font-family: var(--font-serif); font-weight: 900; font-size: clamp(2.8rem, 9vw, 5.5rem); line-height: 1; color: var(--text); animation: fadeUp 0.9s var(--ease) both 0.2s; }
.page-hero-lead { font-family: var(--font-script); font-style: italic; color: var(--text-soft); font-size: clamp(1.1rem, 2.5vw, 1.5rem); max-width: 50ch; margin: 1.25rem auto 0; animation: fadeUp 0.9s var(--ease) both 0.35s; }

/* ----- Filtre ----- */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; }
.filter {
  font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.15em;
  font-size: 0.74rem; color: var(--text-soft); padding: 0.65rem 1.4rem;
  border: 1px solid var(--line); border-radius: 100px; transition: all 0.3s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--gold); }
.filter.active { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }

/* ----- Grilă galerie ----- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item { position: relative; cursor: pointer; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.gallery-item.hide { display: none; }
.gallery-item .ph, .gallery-item img { aspect-ratio: 1; width: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease), filter 0.4s var(--ease); }
.gallery-item:hover .ph, .gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(6,5,4,0.92)); color: var(--text);
  font-size: 0.82rem; letter-spacing: 0.05em; opacity: 0; transform: translateY(10px);
  transition: all 0.4s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; transform: none; }

/* Placeholders decorative */
.ph { background: var(--surface); position: relative; }
.ph::after { content: '✦'; position: absolute; inset: 0; display: grid; place-items: center; color: rgba(184,152,95,0.5); font-size: 2rem; }
.ph-1 { background: linear-gradient(135deg, #2b2b2b, #5a5550); }
.ph-2 { background: linear-gradient(135deg, #6b5f49, #221d16); }
.ph-3 { background: linear-gradient(135deg, #3a342d, #0a0908); }
.ph-4 { background: linear-gradient(135deg, #8a6f3e, #c9a35a); }
.ph-5 { background: linear-gradient(135deg, #4a4540, #1a1714); }
.ph-6 { background: linear-gradient(135deg, #241f1a, #4a443c); }
.ph-7 { background: linear-gradient(135deg, #7a6a4a, #2a241b); }
.ph-8 { background: linear-gradient(135deg, #b8985f, #e0b94d); }
.ph-9 { background: linear-gradient(135deg, #1a1714, #3a342d); }

.gallery-note { text-align: center; margin-top: 3rem; color: var(--text-soft); }
.gallery-note .btn-ghost { color: var(--gold); }

/* ----- Feed Instagram live ----- */
.ig-feed-section { background: var(--bg-soft); }
.ig-feed-section .lead .btn-ghost { color: var(--gold); }
behold-widget { --behold-gap: 1.25rem; --behold-row-gap: 1.25rem; --behold-border-radius: var(--radius); display: block; max-width: var(--maxw); margin-inline: auto; }
.ig-feed-fallback { text-align: center; color: var(--text-soft); margin-top: 1.5rem; font-family: var(--font-script); font-style: italic; font-size: 1.15rem; }
.ig-feed-fallback .btn-ghost { color: var(--gold); }
behold-widget:not(:empty) + .ig-feed-fallback { display: none; }

/* ----- Lightbox ----- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(6,5,4,0.95); backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.35s var(--ease); }
/* CRITIC: când are atributul [hidden] trebuie scos complet din pagină —
   altfel `display:flex` anulează regula implicită `[hidden]{display:none}`
   și overlay-ul invizibil fură toate click-urile de pe ecran. */
.lightbox[hidden] { display: none !important; pointer-events: none; visibility: hidden; }
.lightbox:not([hidden]) { opacity: 1; }
.lightbox-content { max-width: min(90vw, 720px); text-align: center; }
.lightbox-media { width: min(90vw, 720px); aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; }
.lightbox-media img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-content figcaption { color: var(--text); margin-top: 1rem; letter-spacing: 0.1em; font-size: 0.85rem; }
.lightbox-close { position: fixed; top: 1.5rem; right: 2rem; font-size: 2.5rem; color: var(--text); line-height: 1; transition: color 0.3s var(--ease); }
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); font-size: 3rem; color: var(--text); padding: 1rem; opacity: 0.7; transition: opacity 0.3s var(--ease); }
.lightbox-nav:hover { opacity: 1; color: var(--gold); }
.lightbox-prev { left: 1rem; } .lightbox-next { right: 1rem; }

/* ----- Bandă CTA ----- */
.cta-band { background: linear-gradient(135deg, #16130f, var(--black)); text-align: center; border-block: 1px solid var(--line); }
.cta-band h2 { font-family: var(--font-serif); color: var(--text); font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 2rem; }

/* =========================================================
   PROGRAMARE / FORMULAR
   ========================================================= */
.booking-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.booking-form { display: flex; flex-direction: column; gap: 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field label { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--text-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.85rem 1rem; width: 100%; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6b6258; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,152,95,0.18); }
.field select option { background: var(--surface); color: var(--text); }
.field input.invalid, .field textarea.invalid { border-color: #e06a5b; }
.field-error { color: #e06a5b; font-size: 0.78rem; min-height: 1em; }

.checkbox { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; color: var(--text-soft); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin-top: 0.2rem; accent-color: var(--gold); flex: none; }

.booking-submit { align-self: flex-start; margin-top: 0.5rem; }
.booking-success { background: rgba(184,152,95,0.12); border: 1px solid var(--gold); border-radius: var(--radius); padding: 1rem 1.25rem; color: var(--text); font-size: 0.92rem; }

.booking-info { display: flex; flex-direction: column; gap: 2rem; padding: 2rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.info-block .label { display: block; margin-bottom: 0.6rem; }
.info-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.info-block p { color: var(--text-soft); font-size: 0.92rem; }
.info-link { color: var(--text); transition: color 0.3s var(--ease); }
.info-link:hover { color: var(--gold); }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.35rem 0; font-size: 0.9rem; color: var(--text-soft); border-bottom: 1px solid var(--line); }
.hours li:last-child { border-bottom: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-top { border-top: 1px solid var(--line); padding-top: 3rem; }
.footer-logo-img { height: 64px; width: auto; border-radius: 10px; margin-bottom: 1.1rem; box-shadow: 0 6px 18px -8px rgba(0,0,0,0.6); }
.footer-brand { font-family: var(--font-serif); text-transform: uppercase; letter-spacing: 0.22em; font-size: 1.3rem; color: var(--gold); margin-bottom: 1rem; }
.footer-copy { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; color: var(--text-soft); transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-map { margin-top: 3rem; }
.footer-map iframe, .footer-map .map-placeholder { width: 100%; height: clamp(280px, 40vw, 600px); border: 0; display: block; background: var(--black); filter: grayscale(0.4) contrast(1.05); }

.footer-company { color: var(--text-soft); font-size: 0.78rem; letter-spacing: 0.06em; margin-bottom: 1.5rem; }
.footer-company strong { color: var(--text); font-weight: 500; }

.footer-anpc { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 1.75rem; }
.footer-anpc a {
  font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.68rem; color: var(--text-soft); border: 1px solid var(--line);
  padding: 0.55rem 0.95rem; border-radius: 4px; transition: all 0.3s var(--ease);
}
.footer-anpc a:hover { color: var(--gold); border-color: var(--gold); }

.footer-credit { text-align: center; padding: 1.5rem var(--gutter); border-top: 1px solid var(--line); }
.footer-credit p { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); }
.footer-credit a, .footer-credit strong { color: var(--gold); font-weight: 500; transition: color 0.3s var(--ease); }
.footer-credit a:hover { color: var(--gold-bright); }

/* =========================================================
   BANNER COOKIES
   ========================================================= */
.cookie {
  position: fixed; left: 50%; bottom: 1.25rem; z-index: 300;
  width: min(700px, calc(100% - 2rem));
  background: rgba(20,18,16,0.94); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 12px;
  padding: 1.1rem 1.35rem; display: flex; gap: 1.5rem; align-items: center; justify-content: space-between;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,0.8);
  animation: cookieIn 0.5s var(--ease) both;
}
.cookie[hidden] { display: none; }
@keyframes cookieIn { from { opacity: 0; transform: translateX(-50%) translateY(24px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.cookie { transform: translateX(-50%); }
.cookie-text { font-size: 0.85rem; color: var(--text-soft); line-height: 1.55; }
.cookie-text strong { color: var(--text); font-weight: 500; }
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 0.6rem; flex: none; }
.cookie-btn { padding: 0.65rem 1.3rem; font-size: 0.7rem; }

/* =========================================================
   Animații la scroll (reveal)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
/* stagger pentru elemente succesive */
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  [class*="hero-"] { animation: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0;
    width: 100%; height: 100vh; height: 100dvh; /* fallback + dvh pt. bara de adresă mobil */
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 30px; margin: 0; padding: 2rem;
    background: #0a0a0a; /* complet opac — nu se mai vede conținutul „ridicat” la scroll */
    transform: translateX(100%); opacity: 0;
    visibility: hidden; pointer-events: none; /* închis = nu blochează NIMIC */
    /* visibility se schimbă instant la deschidere, dar cu delay la închidere (după slide) */
    transition: transform 0.45s var(--ease), opacity 0.45s var(--ease), visibility 0s linear 0.45s;
  }
  .nav-links.open {
    transform: translateX(0); opacity: 1;
    visibility: visible; pointer-events: auto;
    transition: transform 0.45s var(--ease), opacity 0.45s var(--ease), visibility 0s;
  }
  .nav-links a { font-size: 1.25rem; letter-spacing: 0.25em; padding: 0.4rem 0; }
}
@media (max-width: 980px) { .servicii-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .booking-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .despre-grid { grid-template-columns: 1fr; }
  .despre-media { max-width: 380px; margin-inline: auto; }
  .despre-badge { left: 0.5rem; }
  .servicii-grid { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cookie { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
}
