/* ═══════════════════════════════════════════════
   CUSTOM PROPERTIES
═══════════════════════════════════════════════ */
:root {
  --accent:      #fcb401;
  --accent-dark: #e5a200;
  --dark:        #252422;
  --dark-2:      #2f2d2a;
  --white:       #ffffff;
  --bg:          #ffffff;
  --bg-soft:     #f5f5f3;
  --gray:        #7a7775;
  --border:      #e2e2de;

  --font-display: 'Montserrat', sans-serif;
  --font-sans:    'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  --nav-h:    72px;
  --pad-x:    8%;
  --pad-sec:  96px;
  --radius:   8px;
  --ease:     0.3s ease;
  --shadow:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:0 12px 48px rgba(0,0,0,0.14);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: inherit; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-weight: 600; }

.label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.divider {
  width: 52px;
  height: 3px;
  background: var(--accent);
  margin: 20px 0 28px;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(252,180,1,0.35);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-2);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.transparent { background: transparent; }
.navbar.solid {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.nav-logo em {
  color: var(--accent);
  font-style: normal;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* CTA link in nav */
.nav-links .nav-cta {
  padding: 9px 22px;
  background: var(--accent);
  color: var(--dark) !important;
  border-radius: 2px;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--accent-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--ease);
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--dark);
  border-top: 2px solid var(--accent);
  padding: 28px var(--pad-x);
  flex-direction: column;
  gap: 6px;
  z-index: 899;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--ease);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--accent); }

/* ═══════════════════════════════════════════════
   HERO — HOME
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--dark);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 var(--pad-x);
  max-width: 1100px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 64px;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 800;
}
.hero-content h1 em {
  display: block;
  color: var(--accent);
  font-style: normal;
  margin-top: 22px;
}
.hero-content p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 0 36px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════
   PAGE HERO — SUB-PAGES
═══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 64px var(--pad-x);
  overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(37,36,34,0.95) 0%,
    rgba(37,36,34,0.55) 55%,
    rgba(37,36,34,0.3) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-content p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════ */
.section { padding: var(--pad-sec) var(--pad-x); }
.section-dark  { background: var(--dark); }
.section-soft  { background: var(--bg-soft); }
.section-accent { background: var(--accent); }

.sec-head { margin-bottom: 64px; }
.sec-head h2 { margin-bottom: 0; }
.sec-head.center { text-align: center; }
.sec-head.center .divider { margin-left: auto; margin-right: auto; }
.sec-head p {
  color: var(--gray);
  max-width: 540px;
  line-height: 1.85;
}
.sec-head.center p { margin: 0 auto; }

/* ═══════════════════════════════════════════════
   SERVICE CARDS — HOME
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
.sc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
}
.service-card:hover .sc-bg { transform: scale(1.06); }

/* Placeholder gradients per card */
.sc-medical   { background: linear-gradient(145deg, #0d2133 0%, #0a3a5a 100%); }
.sc-nunti     { background: linear-gradient(145deg, #251525 0%, #45204a 100%); }
.sc-corporate { background: linear-gradient(145deg, #151525 0%, #252545 100%); }
.sc-latino    { background: linear-gradient(145deg, #3a0a14 0%, #8b1538 100%); }

.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(37,36,34,0.96) 0%,
    rgba(37,36,34,0.25) 55%,
    transparent 100%
  );
  transition: opacity var(--ease);
}
.service-card:hover .sc-overlay { opacity: 0.82; }

.sc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 2;
}
.sc-icon { display: block; margin-bottom: 12px; }
.sc-icon svg { width: 40px; height: 40px; stroke: var(--accent); }
.sc-body h3 { color: var(--white); margin-bottom: 10px; }
.sc-body p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.service-card:hover .sc-body p { max-height: 120px; opacity: 1; }

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--ease);
}
.service-card:hover .sc-link { gap: 12px; }

/* ═══════════════════════════════════════════════
   ABOUT — HOME
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual-wrap { position: relative; }
.about-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #2f2d2a 0%, #141210 100%);
  display: flex;
  align-items: flex-end;
}
.about-visual-quote {
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  width: 100%;
}
.about-visual-quote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  opacity: 0.92;
  line-height: 1.5;
}
.about-accent {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 100px; height: 100px;
  background: var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.about-stat h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
}
.about-stat p {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.about-text .label { color: var(--accent); }
.about-text h2 { color: var(--white); }
.about-text p {
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-text p:last-of-type { margin-bottom: 32px; }

/* ═══════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step {
  padding: 36px 26px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border-top: 3px solid transparent;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.process-step:hover {
  border-top-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(37,36,34,0.07);
  line-height: 1;
  margin-bottom: 18px;
  user-select: none;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.process-step p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* 3-step process (sub-pages) */
.process-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ═══════════════════════════════════════════════
   PAGE INTRO — SUB-PAGES
═══════════════════════════════════════════════ */
.page-intro {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.page-intro-text h2 { margin-bottom: 0; }
.page-intro-text p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
}
.page-intro-text p:first-of-type { margin-top: 0; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 28px 0 36px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
}
.feature::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.page-intro-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   PORTFOLIO GRID
═══════════════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.port-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}
.port-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.port-item:hover .port-bg { transform: scale(1.06); }

.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37,36,34,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}
.port-item:hover .port-overlay { opacity: 1; }

.play-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.port-item:hover .play-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.port-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(37,36,34,0.92), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--ease);
}
.port-item:hover .port-info { transform: translateY(0); opacity: 1; }
.port-info h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.port-info span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

/* Portfolio item placeholder gradients (legacy, folosit doar dacă imaginile reale lipsesc) */
.pi-1 { background: linear-gradient(135deg, #0d2133, #0a3a5a); }
.pi-2 { background: linear-gradient(135deg, #1a0d22, #381545); }
.pi-3 { background: linear-gradient(135deg, #0d1a1a, #0a3a3a); }
.pi-4 { background: linear-gradient(135deg, #1a1a0d, #3a3a0a); }
.pi-5 { background: linear-gradient(135deg, #1a0d0d, #4a1515); }
.pi-6 { background: linear-gradient(135deg, #0d0d1a, #15154a); }

/* ═══════════════════════════════════════════════
   CASE STUDIES — OVERVIEW GRID
   Folosit pe studii-de-caz.html. Carduri mari,
   imagine fundal + overlay text. Click → studiu.
═══════════════════════════════════════════════ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 24px;
  padding: 60px var(--pad-x);
  max-width: 1400px;
  margin: 0 auto;
}

.case-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
}

.case-card img,
.case-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter var(--ease);
  filter: saturate(0.95);
}
.case-card:hover img,
.case-card:hover video {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.case-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(37,36,34,0.92) 0%,
    rgba(37,36,34,0.45) 45%,
    rgba(37,36,34,0.1) 75%,
    transparent 100%);
}

.case-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 32px 28px;
  z-index: 2;
  color: var(--white);
}
.case-card-body .label {
  margin-bottom: 8px;
  color: var(--accent);
}
.case-card-body h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 6px;
}
.case-card-body p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
  line-height: 1.6;
}
.case-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--ease);
}
.case-card:hover .case-card-link { gap: 14px; }

/* ═══════════════════════════════════════════════
   CASE STUDY — INDIVIDUAL PAGE
   Folosit pe pagini individuale de studiu (ex: studiu-fullarchclinic.html)
═══════════════════════════════════════════════ */
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 48px var(--pad-x) 24px;
  border-bottom: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}
.case-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-meta-item .label {
  margin-bottom: 0;
  font-size: 0.65rem;
}
.case-meta-item span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.case-featured-video {
  padding: 60px var(--pad-x);
  max-width: 1400px;
  margin: 0 auto;
}
.case-featured-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
}
.case-featured-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.case-about {
  padding: 60px var(--pad-x);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.case-about p {
  color: var(--gray);
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
    padding: 40px var(--pad-x);
    gap: 16px;
  }
  .case-card { aspect-ratio: 4 / 3; }
  .case-card-body { padding: 22px 22px 20px; }
  .case-meta { gap: 24px; padding: 32px var(--pad-x) 20px; }
  .case-featured-video { padding: 40px var(--pad-x); }
  .case-about { padding: 40px var(--pad-x); }
}

/* ═══════════════════════════════════════════════
   TEAM / STORY — pagina Despre Noi
═══════════════════════════════════════════════ */
.team-photo-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 20px;
}
.team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-caption {
  max-width: 800px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
   <details>/<summary> nativ, fără JS, ușor de
   recreat în Webflow (native accordion component).
═══════════════════════════════════════════════ */
.faq-group { max-width: 880px; margin: 0 auto 56px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--dark);
  transition: color var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 20px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent-dark); }
.faq-item p {
  color: var(--gray);
  line-height: 1.85;
  padding: 0 36px 26px 0;
  max-width: 720px;
}

/* ═══════════════════════════════════════════════
   BENTO GRID — SUB-PAGE SHOWCASE
   Folosit pe medical/nunti/corporate ca grilă vizuală
   asimetrică. Suportă <img> sau <video> ca media.
═══════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
  padding: 60px var(--pad-x);
}

.bento-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: var(--dark);
}

/* Size modifiers — aplicate pe .bento-item */
.bento-lg   { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }

/* Media (img / video) umple complet itemul */
.bento-item img,
.bento-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter var(--ease);
  filter: saturate(0.95);
}
.bento-item:hover img,
.bento-item:hover video {
  transform: scale(1.06);
  filter: saturate(1.05);
}

/* Overlay gradient — pentru lizibilitatea info-ului */
.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(37,36,34,0.85) 0%,
    rgba(37,36,34,0.15) 45%,
    transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.bento-item:hover::after { opacity: 1; }

/* Info — invizibil până la hover */
.bento-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 24px;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.bento-item:hover .bento-info {
  transform: translateY(0);
  opacity: 1;
}
.bento-info h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.bento-info span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
}

/* Iframe în bento (ex: YouTube embed) */
.bento-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}
.bento-item.bento-video {
  cursor: default;
}
.bento-item.bento-video::after { display: none; }

/* Play icon — pentru itemuri video (opțional) */
.bento-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease, background var(--ease);
  pointer-events: none;
}
.bento-item:hover .bento-play {
  opacity: 1;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

/* ═══════════════════════════════════════════════
   VIDEO ROW + PHOTO WALL — SUB-PAGE SHOWCASE
   Layout curat pentru sub-paginile de niță:
   .video-row  → 2 col 16:9 pentru videouri
   .photo-wall → 3 col 1:1 pentru poze
   Fiecare respectă aspect-ul propriu, fără crop-uri ciudate.
═══════════════════════════════════════════════ */

/* Video showcase — 1-2 coloane 16:9 (auto-fit: 1 video = full width, 2+ = side-by-side) */
.video-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 20px;
  padding: 60px var(--pad-x) 30px;
  max-width: 1400px;
  margin: 0 auto;
}
.video-row-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
}
.video-row-item iframe,
.video-row-item video,
.video-row-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* WhatsApp Floating Action Button (folosit pe nunti.html) */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #25D366;
  color: #ffffff;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
  background: #128C7E;
  box-shadow: 0 14px 36px rgba(37,211,102,0.5);
}
.whatsapp-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.72rem;
    gap: 8px;
  }
  .whatsapp-fab svg { width: 20px; height: 20px; }
}

/* Coming soon banner — pentru sub-pagini fără content real încă */
.coming-soon {
  position: relative;
  min-height: 65vh;
  padding: 100px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.coming-soon-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.7) 100%
  );
}
.coming-soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}
.coming-soon-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 0;
}
.coming-soon-content h2 em {
  color: var(--accent);
  font-style: normal;
  display: block;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .coming-soon { padding: 70px var(--pad-x); min-height: 55vh; }
}

/* Portrait video row — pentru content vertical (dance, social media reels) */
.video-portrait-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 80px var(--pad-x) 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.video-portrait-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
}
.video-portrait-item iframe,
.video-portrait-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Photo wall — 3 coloane 1:1 */
.photo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 30px var(--pad-x) 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.photo-wall-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
}
.photo-wall-item img,
.photo-wall-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter var(--ease);
  filter: saturate(0.95);
}
.photo-wall-item:hover img,
.photo-wall-item:hover video {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.photo-wall-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(37,36,34,0.85) 0%,
    rgba(37,36,34,0.15) 45%,
    transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.photo-wall-item:hover::after { opacity: 1; }

.photo-wall-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.photo-wall-item:hover .photo-wall-info {
  transform: translateY(0);
  opacity: 1;
}
.photo-wall-info h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.photo-wall-info span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .video-row { grid-template-columns: 1fr; padding: 50px var(--pad-x) 24px; }
  .video-portrait-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px var(--pad-x) 40px;
    gap: 18px;
  }
  .photo-wall { padding: 24px var(--pad-x) 50px; }
}
@media (max-width: 768px) {
  .video-row { padding: 40px var(--pad-x) 20px; gap: 14px; }
  .video-portrait-row {
    grid-template-columns: 1fr;
    padding: 40px var(--pad-x) 20px;
    gap: 14px;
    max-width: 480px;
  }
  .photo-wall {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px var(--pad-x) 40px;
    gap: 12px;
  }
  /* Pe mobil, info-ul e mereu vizibil (nu există hover real) */
  .photo-wall-item::after { opacity: 1; }
  .photo-wall-info { opacity: 1; transform: none; }
}
@media (max-width: 480px) {
  .photo-wall { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 88px var(--pad-x);
  background: var(--accent);
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--dark);
  margin-bottom: 18px;
}
.cta-section p {
  color: rgba(37,36,34,0.72);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 8px; }
.contact-info > p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 36px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--dark); }

.contact-form-wrap {
  background: var(--white);
  padding: 52px 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--bg-soft);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 72px var(--pad-x) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 52px;
}
.footer-brand .nav-logo { margin-bottom: 18px; font-size: 1.25rem; }
.footer-brand p {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  line-height: 1.85;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.soc-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.soc-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.22s; }
.fade-up.delay-3 { transition-delay: 0.34s; }
.fade-up.delay-4 { transition-delay: 0.46s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --pad-x: 6%; --pad-sec: 80px; }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .process-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .about-grid     { gap: 52px; }
  .contact-grid   { gap: 52px; }
  .page-intro     { gap: 52px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  /* Bento: 4 → 3 coloane */
  .bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .bento-lg { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 768px) {
  :root { --pad-x: 5%; --pad-sec: 64px; }

  /* Nav */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .hero-content h1 { font-size: clamp(1.4rem, 5vw, 2.2rem); }

  /* MP4 muted autoplay funcționează pe iOS, hero video rămâne vizibil și pe mobil */

  /* Service cards */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4 / 3; }
  .sc-body p { max-height: 120px; opacity: 1; } /* always visible on touch */

  /* Grids → single col */
  .about-grid     { grid-template-columns: 1fr; }
  .about-accent   { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .page-intro     { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 40px; }

  /* Process */
  .process-grid,
  .process-grid-3 { grid-template-columns: 1fr; }

  /* Misc */
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .page-hero { height: 52vh; padding: 48px var(--pad-x); }
  .features-grid { grid-template-columns: 1fr; }
  .faq-item summary { padding: 18px 30px 18px 0; font-size: 0.95rem; }
  .faq-item p { padding: 0 30px 22px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-intro-visual { aspect-ratio: 16 / 9; }

  /* Bento: 3 → 2 coloane, fără tall/lg dominant */
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
    padding: 40px var(--pad-x);
  }
  .bento-lg   { grid-column: span 2; grid-row: span 2; }
  .bento-wide { grid-column: span 2; }
  .bento-tall { grid-row: span 1; grid-column: span 1; }

  /* Pe mobil, info-ul e mereu vizibil (nu există hover real) */
  .bento-item::after { opacity: 1; }
  .bento-info { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  :root { --pad-sec: 52px; }
  .about-stats { gap: 24px; }
  .contact-form-wrap { padding: 24px 16px; }
}
