* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #111; color: #f0ece4; font-family: 'Open Sans', sans-serif; overflow-x: hidden; }

:root {
  --gold: #c9a84c;
  --gold-light: #e2c168;
  --d1: #0d0d0d;
  --d2: #111;
  --d3: #141414;
  --d4: #1a1a1a;
  --d5: #1e1e1e;
  --border: rgba(201,168,76,0.18);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px; height: 110px; background: transparent;
  transition: background 0.4s, box-shadow 0.4s, height 0.3s;
}
.navbar.scrolled {
  background: rgba(13,11,9,0.97); height: 90px;
  box-shadow: 0px 2px 24px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.navbar.menu-open {
  background: rgba(13,11,9,0.98);
  border-bottom: none;
  box-shadow: none;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo-emblem { width: auto; height: 150px; object-fit: contain; display: block; transition: height 0.3s; }
.navbar.scrolled .nav-logo-emblem { height: 145px;margin-top: 19px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: 'Merriweather', serif; font-size: 1.12rem; font-weight: 900;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.nav-logo-tag { font-size: 0.58rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(201,168,76,0.5); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,0.7); color: var(--gold);
  background: transparent; padding: 9px 22px; border-radius: 50px;
  font-family: 'Open Sans', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn-nav:hover { background: var(--gold); color: #111; box-shadow: 0 4px 18px rgba(201,168,76,0.35); }
.btn-nav:active { background: #a07820; color: #111 !important; box-shadow: none; }
.btn-nav svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-mobile {
  display: none; position: fixed; top: 110px; left: 0; right: 0;
  background: rgba(13,11,9,0.98); 
  padding: 12px 36px 28px; flex-direction: column; gap: 20px; z-index: 998;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn-nav { align-self: flex-start; width: auto; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero { position: relative; width: 100%; min-height: 520px; height: 58vw; max-height: 720px; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.55) 45%, rgba(10,8,6,0.1) 100%);
}
.hero-dark {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.60);
  pointer-events: none;
  z-index: 1;
}
.hero-overlay { z-index: 1; }
.hero-content { position: absolute; left: 0; bottom: 0; padding: 0 38px 44px; max-width: 580px; z-index: 2; }
.hero h1 {
  font-family: 'Merriweather', serif; font-size: clamp(2rem, 4.8vw, 3.6rem);
  font-weight: 900; line-height: 1.12; color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5); margin-bottom: 10px;
}
.hero-sub { font-size: clamp(0.82rem, 1.5vw, 1rem); color: rgba(255,255,255,0.72); font-weight: 300; margin-bottom: 26px; }
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: #1a1208; font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 0.88rem;
  padding: 13px 34px; border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 3px 16px rgba(201,168,76,0.35); transition: box-shadow 0.25s, transform 0.2s; margin-bottom: 18px;
}
.btn-gold:hover { box-shadow: 0 6px 28px rgba(201,168,76,0.6); transform: translateY(-1px); }
.hero-rating { display: flex; align-items: center; gap: 7px; }
.rating-num { font-size: 0.95rem; font-weight: 700; color: #fff; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; fill: var(--gold); }
.google-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar { background: var(--d2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 24px; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 860px; margin: 0 auto; }
.stat-item { text-align: center; padding: 0 16px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Merriweather', serif; font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,236,228,0.45); font-weight: 600; }

/* ══════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════ */
.sec-head { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 40px; }
.sec-head span { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.sec-head::before, .sec-head::after { content: ''; display: block; width: 60px; height: 1px; background: var(--gold); opacity: 0.5; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services { background: var(--d2); padding: 64px 24px 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; max-width: 820px; margin: 0 auto 28px; }
.svc-card {
  border: 1px solid var(--border); background: var(--d4);
  padding: 36px 20px 32px; text-align: center; border-radius: 3px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}
.svc-card.active { border-color: var(--border); background: var(--d4); }
.svc-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(201,168,76,0.1); }
.svc-icon { font-size: 1.6rem; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; height: 44px; }
.svc-icon img { height: 44px; width: auto; object-fit: contain; display: block; }
.svc-name { font-family: 'Merriweather', serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.svc-desc { font-size: 0.78rem; color: rgba(240,236,228,0.45); margin-bottom: 14px; line-height: 1.6; }
.svc-price { font-size: 1rem; font-weight: 600; color: var(--gold); }
.svc-price b { font-size: 1.4rem; font-weight: 900; }
.svc-duration { font-size: 0.7rem; color: rgba(201,168,76,0.45); margin-top: 4px; letter-spacing: 1px; }
.services-cta { text-align: center; }

/* ══════════════════════════════════════════
   BOOKING
══════════════════════════════════════════ */
.booking { background: var(--d2); padding: 64px 24px; position: relative; overflow: hidden; }
.booking-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.booking-box { background: var(--d4); border: 1px solid var(--border); border-radius: 4px; padding: 44px 40px; }
.booking-box h3 { font-family: 'Merriweather', serif; font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 6px; text-align: center; }
.booking-box p { font-size: 0.82rem; color: rgba(240,236,228,0.45); text-align: center; margin-bottom: 32px; }
.booking-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-method {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--d5); border: 1px solid var(--border); border-radius: 3px;
  padding: 26px 16px; text-decoration: none;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.25s;
}
.bk-method:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.1); }
.bk-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: center; }
.bk-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.bk-label { font-size: 0.9rem; font-weight: 700; color: #fff; }
.bk-sub { font-size: 0.72rem; color: rgba(240,236,228,0.38); text-align: center; line-height: 1.6; }

/* ── Section fade divider ─────────────────── */
.section-fade {
  height: 0;
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery { background: var(--d2); padding: 64px 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; max-width: 960px; margin: 0 auto; }
.gal-item { aspect-ratio: 3/4; overflow: hidden; border-radius: 3px; position: relative; cursor: pointer; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block; transition: transform 0.5s, filter 0.4s; filter: brightness(0.85);
}
.gal-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gal-item::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,168,76,0); border-radius: 3px; transition: border-color 0.3s; }
.gal-item:hover::after { border-color: rgba(201,168,76,0.5); }
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.93); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 3px; }
.lb-close { position: fixed; top: 22px; right: 26px; font-size: 2rem; color: var(--gold); cursor: pointer; background: none; border: none; line-height: 1; }

/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
.team { background: var(--d2); padding: 64px 24px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1060px; margin: 0 auto; }
.team-card { background: var(--d4); border: 1px solid var(--border); border-radius: 3px; overflow: hidden; transition: border-color 0.3s, transform 0.25s; }
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-photo { width: 100%; aspect-ratio: 1/1.1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(25%); transition: filter 0.4s, transform 0.5s; }
.team-card:hover .team-photo img { filter: grayscale(0%); transform: scale(1.04); }
.team-info { padding: 20px 18px; text-align: center; }
.team-name { font-family: 'Merriweather', serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.team-phone { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; color: rgba(201,168,76,0.55); text-decoration: none; letter-spacing: 0.5px; transition: color 0.25s; margin-top: 2px; }
.team-phone svg { width: 11px; height: 11px; stroke: currentColor; flex-shrink: 0; }
.team-card:hover .team-phone { color: var(--gold); }
.team-role { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.team-exp { font-size: 0.74rem; color: rgba(240,236,228,0.38); margin-top: 6px; }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews { background: var(--d2); padding: 64px 24px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 960px; margin: 0 auto 36px; }
.rv-card { background: var(--d4); border: 1px solid var(--border); border-radius: 3px; padding: 26px 22px; transition: border-color 0.3s; }
.rv-card:hover { border-color: rgba(201,168,76,0.4); }
.rv-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rv-stars svg { width: 13px; height: 13px; fill: var(--gold); }
.rv-text { font-size: 0.84rem; color: rgba(240,236,228,0.7); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.rv-author { display: flex; align-items: center; gap: 10px; }
.rv-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.rv-name { font-size: 0.82rem; font-weight: 700; color: #fff; }
.rv-date { font-size: 0.68rem; color: rgba(240,236,228,0.3); margin-top: 1px; }
.reviews-cta { text-align: center; }

/* ══════════════════════════════════════════
   WHY / DE CE SĂ NE ALEGI
══════════════════════════════════════════ */
.why { background: var(--d2); padding: 64px 24px; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; max-width: 760px; margin: 0 auto; }

.why-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--d4);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.35s, transform 0.3s, box-shadow 0.35s, background 0.35s;
}
/* shimmer sweep */
.why-card::before {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(201,168,76,0.08) 50%, transparent 70%);
  transform: skewX(-15deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
/* bottom gold line */
.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 0 0 6px 6px;
  transition: width 0.4s ease;
}
.why-card:hover {
  border-color: rgba(201,168,76,0.55);
  transform: translateY(-4px) translateX(2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.12), 0 2px 8px rgba(0,0,0,0.4);
  background: #1f1d18;
}
.why-card:hover::before { left: 120%; }
.why-card:hover::after  { width: 100%; }

.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.07);
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.4s;
}
.why-card:hover .why-icon {
  background: rgba(201,168,76,0.16);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 16px rgba(201,168,76,0.25);
  transform: rotate(-6deg) scale(1.1);
}
.why-icon svg {
  width: 22px; height: 22px; stroke: var(--gold);
  fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke-width 0.3s;
}
.why-card:hover .why-icon svg { stroke-width: 2.2; }
.why-label {
  font-size: 0.92rem; font-weight: 600;
  color: rgba(232,226,216,0.75);
  transition: color 0.3s, letter-spacing 0.3s;
}
.why-card:hover .why-label { color: #fff; letter-spacing: 0.4px; }

/* ══════════════════════════════════════════
   LOCATION & CONTACT
══════════════════════════════════════════ */
.location { background: var(--d2); padding: 64px 24px; }
.loc-inner { display: grid; grid-template-columns: 1fr 1.7fr; gap: 48px; max-width: 1140px; margin: 0 auto; align-items: start; }
.loc-info h3 { font-family: 'Merriweather', serif; font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: 28px; }
.loc-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.loc-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(201,168,76,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.loc-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.loc-lbl { font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; font-weight: 600; }
.loc-val { font-size: 1.02rem; color: rgba(240,236,228,0.7); line-height: 1.7; }
.loc-val a { color: rgba(240,236,228,0.7); text-decoration: none; transition: color 0.25s; }
.loc-val a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 8px; background: var(--d4); border: 1px solid var(--border); border-radius: 50px; padding: 10px 18px; text-decoration: none; font-size: 0.75rem; font-weight: 600; color: rgba(240,236,228,0.55); letter-spacing: 1px; transition: border-color 0.3s, color 0.3s, transform 0.2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.social-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.loc-map-wrap { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); height: 420px; position: relative; background: var(--d4); z-index: 0; }
#btw-map { width: 100%; height: 100%; min-height: 380px; }
.map-open-btn {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(13,11,9,0.92); border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 50px; text-decoration: none;
  white-space: nowrap; backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s;
}
.map-open-btn:hover { background: var(--gold); color: #1a1208; border-color: var(--gold); }
.loc-directions { display: flex; gap: 10px; margin: 18px 0 6px; flex-wrap: wrap; }
.loc-dir-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.loc-dir-btn:hover { transform: translateY(-2px); }
.loc-dir-btn svg { width: 17px; height: 17px; }
.loc-dir-btn.gmaps { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1a1208; box-shadow: 0 3px 14px rgba(201,168,76,0.3); }
.loc-dir-btn.gmaps:hover { box-shadow: 0 6px 22px rgba(201,168,76,0.5); }
.loc-dir-btn.waze { background: transparent; border: 1px solid rgba(201,168,76,0.4); color: rgba(240,236,228,0.65); }
.loc-dir-btn.waze:hover { border-color: var(--gold); color: var(--gold); }

/* ── Location Tabs ─────────────────────── */
.loc-tabs {
  display: flex; gap: 10px; justify-content: center;
  max-width: 960px; margin: 0 auto 40px;
}
.loc-tab {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--d4); border: 1px solid var(--border);
  color: rgba(240,236,228,0.5); padding: 11px 28px; border-radius: 50px;
  font-family: 'Open Sans', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s, box-shadow 0.25s;
}
.loc-tab svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.loc-tab:hover { border-color: rgba(201,168,76,0.5); color: rgba(240,236,228,0.8); }
.loc-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.07);
  box-shadow: 0 4px 18px rgba(201,168,76,0.15);
}
.loc-panel { display: none; }
.loc-panel.active { display: block; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
/* ── FOOTER DESKTOP — modificările de aici nu afectează telefonul ── */
@media (min-width: 641px) {
  footer { background: var(--d2); border-top: 1px solid rgba(201,168,76,0.12); padding: 0; }

  .ft-top {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px; max-width: 1100px; margin: 0 auto; padding: 56px 32px 48px;
  }
  .ft-emblem { display: block; width: auto; height: 150px; object-fit: contain; margin-bottom: 4px; }
  .ft-col-brand { display: flex; flex-direction: column; align-items: flex-start; }
  .ft-brand { font-family: 'Merriweather', serif; font-size: 1.3rem; font-weight: 900; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; margin-top: -55px; margin-left:  -15px;}
  .ft-tag { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(201,168,76,0.4); margin-bottom: 16px; }
  .ft-firm-info { font-size: 0.86rem; color: rgba(240,236,228,0.35); line-height: 1.9; }
  .ft-firm-info strong { color: rgba(240,236,228,0.55); font-weight: 600; }
  .ft-col h4 { font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
  .ft-col ul { list-style: none; }
  .ft-col ul li { margin-bottom: 10px; }
  .ft-col ul li a { font-size: 0.9rem; color: rgba(240,236,228,0.4); text-decoration: none; transition: color 0.25s; }
  .ft-col ul li a:hover { color: var(--gold); }
  .ft-col-contact p { font-size: 0.78rem; color: rgba(240,236,228,0.4); line-height: 1.85; }
  .ft-col-contact a { color: rgba(240,236,228,0.4); text-decoration: none; transition: color 0.25s; }
  .ft-col-contact a:hover { color: var(--gold); }
  .ft-social { display: flex; gap: 10px; margin-top: 16px; }
  .ft-soc-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.25s, border-color 0.25s; }
  .ft-soc-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
  .ft-soc-btn svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .ft-div-line { border: none; border-top: 1px solid rgba(201,168,76,0.1); margin: 0; }
  .ft-bottom { text-align: center; padding: 18px 24px; }
  .ft-copy { font-size: 0.82rem; color: rgba(240,236,228,0.3); letter-spacing: 0.4px; line-height: 1.7; }
  .ft-copy a { color: rgba(240,236,228,0.3); text-decoration: none; transition: color 0.25s; }
  .ft-copy a:hover { color: var(--gold); }
}


/* ══════════════════════════════════════════
   LEGAL MODALS
══════════════════════════════════════════ */
.legal-modal { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.88); align-items: center; justify-content: center; padding: 20px; }
.legal-modal.open { display: flex; }
.lm-box { background: #141414; border: 1px solid rgba(201,168,76,0.25); border-radius: 6px; max-width: 680px; width: 100%; max-height: 88vh; overflow-y: auto; position: relative; padding: 40px 40px 36px; }
.lm-box::-webkit-scrollbar { width: 6px; }
.lm-box::-webkit-scrollbar-track { background: #1a1a1a; }
.lm-box::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 3px; }
.lm-close { position: absolute; top: 16px; right: 20px; font-size: 1.3rem; color: rgba(201,168,76,0.6); background: none; border: none; cursor: pointer; line-height: 1; transition: color 0.2s; }
.lm-close:hover { color: var(--gold); }
.lm-box h2 { font-family: 'Merriweather', serif; font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 6px; padding-right: 32px; }
.lm-date { font-size: 0.7rem; color: rgba(201,168,76,0.5); letter-spacing: 0.5px; margin-bottom: 28px; }
.lm-body h3 { font-family: 'Merriweather', serif; font-size: 0.92rem; font-weight: 700; color: var(--gold); margin: 22px 0 8px; }
.lm-body p { font-size: 0.82rem; color: rgba(240,236,228,0.65); line-height: 1.8; margin-bottom: 10px; }
.lm-body a { color: var(--gold); text-decoration: none; }
.lm-body a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
  background: rgba(18,15,12,0.97); border-top: 1px solid rgba(201,168,76,0.25);
  padding: 18px 32px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.78rem; color: rgba(240,236,228,0.6); line-height: 1.6; flex: 1; min-width: 220px; }
.cookie-text a { color: var(--gold); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1208; border: none; padding: 9px 22px; border-radius: 50px;
  font-family: 'Open Sans', sans-serif; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; transition: box-shadow 0.25s;
}
.cookie-accept:hover { box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
.cookie-decline {
  background: transparent; border: 1px solid rgba(201,168,76,0.35);
  color: rgba(240,236,228,0.5); padding: 9px 18px; border-radius: 50px;
  font-family: 'Open Sans', sans-serif; font-size: 0.78rem; cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.cookie-decline:hover { border-color: var(--gold); color: var(--gold); }


/* Footer mobile wrapper — ascuns pe desktop */
.ft-cols-mobile { display: none; }

/* Prevenim scroll orizontal global */
body { overflow-x: hidden; }


.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .loc-inner { grid-template-columns: 1fr; }
  .loc-map-wrap { height: 340px; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .loc-dir-btn { padding: 13px 22px; font-size: 0.88rem; }
  .loc-lbl { font-size: 0.78rem; }
  .loc-val { font-size: 0.97rem; }
}
@media (max-width: 760px) {
  .nav-links, .btn-nav.desktop { display: none; }
  .nav-burger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .stat-item { border-right: none; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 640px) {
  .hero { height: 100svh; max-height: none; min-height: 100svh; }
  .hero-content { padding: 0 22px 32px; }
  .services-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 24px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-methods { grid-template-columns: 1fr; }
  .booking-box { padding: 30px 20px; }
  .cookie-banner { padding: 16px 20px; }
  .loc-tabs { flex-direction: column; align-items: center; gap: 8px; }
  .loc-tab { width: 100%; max-width: 320px; justify-content: center; padding: 13px 20px; font-size: 0.85rem; }
  .loc-dir-btn { padding: 12px 18px; font-size: 0.82rem; }
  .loc-dir-btn svg { width: 15px; height: 15px; }
  .loc-lbl { font-size: 0.75rem; }
  .loc-val { font-size: 0.92rem; }
  .loc-icon { width: 42px; height: 42px; }
  .loc-icon svg { width: 20px; height: 20px; }
  .loc-map-wrap { height: 280px; }
  .loc-info h3 { font-size: 1.3rem; }
  .lm-box { padding: 28px 20px 24px; }

  /* ── FOOTER MOBILE ─────────────────────── */
  .ft-top {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 32px 22px 28px;
    overflow-x: hidden;
  }

  .ft-copy { font-size: 0.82rem; color: rgba(240,236,228,0.3); letter-spacing: 0.4px; line-height: 1.7;text-align:center; }
  .ft-copy a { color: rgba(240,236,228,0.3); text-decoration: none; transition: color 0.25s; }
  .ft-div-line { border: none; border-top: 1px solid rgba(201,168,76,0.1); margin: 0; }

  /* Ascundem coloanele desktop */
  .ft-col-nav,
  .ft-col-legal,
  .ft-col-contact { display: none; }

  /* Logo centrat deasupra celor 2 coloane */
  .ft-col-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    margin-bottom: 24px;
    width: 100%;
  }
  .ft-emblem { height: 90px; margin-bottom: 8px; display: block; margin-left: auto; margin-right: auto; }
  .ft-brand { font-family: 'Merriweather', serif; font-size: 1rem; font-weight: 900; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; text-align: center; width: 100%; margin-bottom: 4px; margin-top: -38px;}
  .ft-tag { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(201,168,76,0.4); margin-bottom: 0; text-align: center; width: 100%; }
  .ft-firm-info { display: none; }

  /* Afișăm wrapper-ul 2 coloane mobile */
  .ft-cols-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    width: 100%;
    padding-left: 30%;
  }

  .ft-col h4 { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
  .ft-col ul { list-style: none; padding: 0; margin: 0; }
  .ft-col ul li { margin-bottom: 8px; }
  .ft-col ul li a { font-size: 0.84rem; color: rgba(240,236,228,0.4); text-decoration: none; transition: color 0.25s; }
  .ft-col ul li a:hover { color: var(--gold); }
  .ft-col-contact p { font-size: 0.72rem; color: rgba(240,236,228,0.4); line-height: 1.85; }
  .ft-col-contact a { color: rgba(240,236,228,0.4); text-decoration: none; transition: color 0.25s; }
  .ft-social { margin-top: 12px; gap: 8px; display: flex; }
  .ft-soc-btn { width: 30px; height: 30px; border-radius: 50%; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; text-decoration: none; }
  .ft-soc-btn svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
}
/* ══════════════════════════════════════════
   MODAL SELECTIE FRIZER
══════════════════════════════════════════ */
.bk-modal { display:none; position:fixed; inset:0; z-index:1100; background:rgba(0,0,0,0.75); align-items:center; justify-content:center; padding:20px; }
.bk-modal.open { display:flex; }
.bk-modal-box { background:var(--d3); border:1px solid rgba(201,168,76,0.25); border-radius:6px; width:100%; max-width:420px; padding:32px 28px 24px; position:relative; }
.bk-modal-close { position:absolute; top:14px; right:16px; background:none; border:none; color:rgba(240,236,228,0.4); font-size:1.1rem; cursor:pointer; line-height:1; transition:color 0.2s; }
.bk-modal-close:hover { color:var(--gold); }
.bk-modal-title { font-family:'Merriweather',serif; font-size:1.2rem; font-weight:900; color:#fff; margin-bottom:6px; }
.bk-modal-subtitle { font-size:0.75rem; color:rgba(240,236,228,0.4); letter-spacing:0.5px; margin-bottom:22px; }
.bk-barber-row { display:flex; align-items:center; gap:14px; padding:14px 16px; border:1px solid rgba(201,168,76,0.12); border-radius:4px; margin-bottom:10px; text-decoration:none; transition:border-color 0.25s, background 0.25s; }
.bk-barber-row:last-child { margin-bottom:0; }
.bk-barber-row:hover { border-color:var(--gold); background:rgba(201,168,76,0.06); }
.bk-barber-avatar { width:40px; height:40px; border-radius:50%; background:rgba(201,168,76,0.15); border:1px solid rgba(201,168,76,0.3); display:flex; align-items:center; justify-content:center; font-family:'Merriweather',serif; font-size:1rem; font-weight:900; color:var(--gold); flex-shrink:0; }
.bk-barber-info { flex:1; }
.bk-barber-name { font-size:0.88rem; font-weight:700; color:#fff; margin-bottom:2px; }
.bk-barber-tel { font-size:0.72rem; color:rgba(201,168,76,0.55); letter-spacing:0.5px; }
.bk-barber-action { color:var(--gold); flex-shrink:0; display:flex; }