/* ==========================================================================
   IRIMIA CREATIVE PRODUCTION
   Apple-inspired light aesthetic, mobile-first, gold subtle accents
   ========================================================================== */

:root {
  /* Culori */
  --white: #ffffff;
  --bg: #fbfbfd;
  --bg-soft: #f5f5f7;
  --bg-tinted: #f0eee9;
  --line: #e6e6ea;
  --line-soft: #ededf0;

  --ink: #1d1d1f;
  --ink-2: #2c2c2e;
  --muted: #6e6e73;
  --muted-2: #86868b;

  --gold: #b8924b;
  --gold-soft: #d4b478;
  --gold-bg: rgba(184, 146, 75, 0.08);

  /* Tipografie */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spațiere */
  --container: 1200px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Umbre */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.04);
  --shadow:    0 12px 40px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 70px rgba(0,0,0,0.10);

  /* Tranziții */
  --t: 360ms cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 220ms cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 68px;
}

/* Reset minimal */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Fundal tip hero pe tot conținutul; footer-ul rămâne separat */
#main {
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(184,146,75,0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, var(--bg) 100%);
}
.hero,
.page-hero,
.section-soft {
  background: transparent;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografie */
h1, h2, h3, h4, h5 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.7rem, 4vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--ink-2); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); font-weight: 400; line-height: 1.55; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.gold { color: var(--gold); }

/* ============== BUTOANE ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #a3803f; color: #fff; box-shadow: 0 10px 30px rgba(184,146,75,0.3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-white { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn-white:hover { background: #fff; border-color: var(--ink); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-link { padding: 0; background: none; color: var(--ink); border-radius: 0; }
.btn-link:hover { color: var(--gold); transform: none; }
.btn-link::after {
  content: '→';
  margin-left: 6px;
  transition: transform var(--t-fast);
  display: inline-block;
}
.btn-link:hover::after { transform: translateX(4px); }

/* ============== HEADER ============== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
  padding-top: env(safe-area-inset-top);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  will-change: transform;
}
.site-header.hidden {
  transform: translate3d(0, -100%, 0);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-line-1 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.brand-line-2 { font-size: 0.7rem; color: var(--muted); font-weight: 400; letter-spacing: 0.04em; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}
.nav-desktop a, .nav-dropdown-trigger {
  position: relative;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-desktop a:hover, .nav-dropdown-trigger:hover { color: var(--ink); background: var(--bg-soft); }
.nav-desktop a.active { color: var(--ink); }
.nav-desktop a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-cta { display: none; }

.hamburger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--bg-soft); }
.hamburger span {
  display: block;
  width: 20px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============== DRAWER MOBIL ============== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  height: 100dvh;
  background: rgba(20, 20, 22, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
  z-index: 200;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100dvh;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform var(--t);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.08);
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.1;
}
.drawer-brand img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.drawer-brand small {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.drawer-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.drawer-close:hover { background: var(--bg-soft); }

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-nav a, .drawer-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--t-fast);
}
.drawer-nav a:hover, .drawer-group summary:hover { background: var(--bg-soft); }
.drawer-nav a.active { color: var(--gold); }
.drawer-group { border-radius: 12px; }
.drawer-group summary { list-style: none; }
.drawer-group summary::-webkit-details-marker { display: none; }
.drawer-group summary::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(-45deg);
  transition: transform var(--t-fast);
}
.drawer-group[open] summary::after { transform: rotate(45deg); }
.drawer-group a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-2);
  padding-left: 28px;
}

.drawer-foot {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.drawer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.drawer-socials {
  display: flex;
  gap: 10px;
}
.drawer-foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.drawer-socials a:hover { background: var(--gold); color: #fff; }
.drawer-cta { width: 100%; margin-top: 4px; }

.drawer-dev {
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
}
.drawer-dev img {
  height: 32px;
  width: auto;
  display: block;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

html.lightbox-open {
  overflow: hidden;
}
body.lightbox-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 80px;
  text-align: center;
  overflow: hidden;
}
.hero-content {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold); }
.hero .lead {
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  margin-top: 70px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: #ececef;
}
.hero-visual img,
.hero-visual .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video {
  position: relative;
  z-index: 1;
  background: #ececef;
}
.hero-video-loading {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f5f5f7 0%, #ececef 100%);
  pointer-events: none;
}
.hero-video-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(29,29,31,0.12);
  border-top-color: var(--ink);
  animation: hero-spin 0.8s linear infinite;
}
@keyframes hero-spin {
  to { transform: rotate(360deg); }
}
.hero-visual.is-playing .hero-video-loading {
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* ============== SECȚIUNI ============== */
.section {
  padding: 56px 0;
}
.section-tight { padding: 36px 0; }
.section-soft { background: transparent; }
.section-dark { background: var(--ink); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.section-dark .lead, .section-dark p { color: rgba(255,255,255,0.72); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-head h1,
.section-head h2 { margin-bottom: 16px; }

/* ============== CARDS SERVICII ============== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.service-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card-media img { transform: scale(1.04); }
.service-card-body {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: var(--muted); margin-bottom: 18px; flex: 1; }
.service-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ============== FEATURES VALUES ============== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.value-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t);
}
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gold-bg);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value-item h4 { margin-bottom: 8px; font-size: 1.1rem; }
.value-item p { color: var(--muted); font-size: 0.95rem; }

/* ============== PROCES ============== */
.process {
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.95rem; }

/* ============== CTA STRIP ============== */
.cta-strip {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2a2c 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(184,146,75,0.25), transparent 70%);
  pointer-events: none;
}
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 28px; }
.cta-strip .btn-primary { background: #fff; color: var(--ink); }
.cta-strip .btn-primary:hover { background: var(--gold); color: #fff; }

/* ============== TESTIMONIALE ============== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 1.02rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-meta { color: var(--muted); font-size: 0.82rem; }

/* ============== PORTOFOLIU ============== */
.portfolio-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 18px;
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-2);
  transition: all var(--t-fast);
}
.filter-btn:hover { background: var(--line); }
.filter-btn.active { background: var(--ink); color: #fff; }

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-soft);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.78) 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 1;
  transition: background var(--t);
}
.portfolio-item:hover .portfolio-item-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
}
.portfolio-item-title { color: #fff; font-weight: 600; font-size: 1rem; }
.portfolio-item-cat { color: var(--gold-soft); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; }
.portfolio-item.is-hidden { display: none; }
.portfolio-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 48px 0;
}

/* Lightbox — galerie per proiect */
.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  max-height: 100svh;
  background: #0a0a0c;
  z-index: 300;
  display: none;
}
.lightbox.open {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;
}

.lightbox-dialog {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  height: 100%;
  background: #111114;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  display: flex;
  flex-direction: column;
}

.lightbox-stage {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0c;
  min-height: 42svh;
  min-height: 42dvh;
  padding: 56px 0 20px;
}
.lightbox-figure {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
}
.lightbox-figure img {
  width: 100%;
  max-width: 100%;
  max-height: 48svh;
  max-height: 48dvh;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  cursor: zoom-in;
  touch-action: manipulation;
}

.lightbox-panel {
  flex: 0 0 auto;
  padding: 24px 20px calc(40px + env(safe-area-inset-bottom, 0px));
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lightbox-cat {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 8px;
}
.lightbox-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.02em;
}
.lightbox-desc {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 18px;
}
.lightbox-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 0 0 20px;
  font-size: 0.9rem;
}
.lightbox-meta dt {
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.lightbox-meta dd {
  margin: 0;
  color: rgba(255,255,255,0.88);
}
.lightbox-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.lightbox-thumb {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: opacity var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  padding: 0;
  background: none;
  flex-shrink: 0;
}
.lightbox-thumb:hover { opacity: 0.85; }
.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--gold-soft);
}
.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lightbox-counter {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.lightbox-close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 302;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.88);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.88);
}
.lightbox-prev:disabled, .lightbox-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Zoom viewer — fullscreen pe poza curentă */
.zoom-viewer {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  background: #050506;
  touch-action: none;
  overscroll-behavior: none;
  user-select: none;
  -webkit-user-select: none;
}
.zoom-viewer.open {
  display: block;
}
.zoom-viewer-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: grab;
}
.zoom-viewer-stage.is-dragging {
  cursor: grabbing;
}
.zoom-viewer-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
  -webkit-user-drag: none;
}
.zoom-viewer-close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.zoom-viewer-close:hover {
  background: rgba(255,255,255,0.88);
}
.zoom-viewer-controls {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  left: max(12px, env(safe-area-inset-left));
  z-index: 3;
  display: none;
  gap: 8px;
}
.zoom-viewer-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.zoom-viewer-btn:hover {
  background: rgba(255,255,255,0.88);
}
.zoom-viewer-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.zoom-viewer-hint {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: max(28px, calc(16px + env(safe-area-inset-bottom)));
  z-index: 3;
  margin: 0 auto;
  max-width: min(92vw, 520px);
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.zoom-viewer.open .zoom-viewer-hint.is-visible {
  opacity: 1;
}
.zoom-hint-desktop { display: none; }
.zoom-hint-mobile { display: inline; }

@media (hover: hover) and (pointer: fine) {
  .zoom-viewer-controls {
    display: flex;
  }
  .zoom-hint-desktop { display: inline; }
  .zoom-hint-mobile { display: none; }
  .zoom-viewer-hint {
    left: 50%;
    right: auto;
    bottom: max(20px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    max-width: min(92vw, 520px);
    width: max-content;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    line-height: 1.35;
  }
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact-grid--solo {
  justify-items: stretch;
}
.contact-info {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.contact-info h3 { margin-bottom: 8px; }
.contact-info > p { color: var(--muted); margin-bottom: 28px; line-height: 1.65; }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-list-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-list-icon svg { width: 18px; height: 18px; }
.contact-list-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.contact-list-value { font-weight: 500; font-size: 1rem; line-height: 1.4; }
.contact-list-value a { color: inherit; transition: color var(--t-fast); }
.contact-list-value a:hover { color: var(--gold); }

.contact-socials-wrap { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact-socials { display: flex; gap: 10px; margin-top: 12px; }
.contact-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.contact-socials a svg { width: 18px; height: 18px; }
.contact-socials a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 0.95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-bg);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-actions { margin-top: 24px; }
.form-msg {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  display: none;
}
.form-msg.success { background: #ecf7ed; color: #1d6e2e; display: block; }
.form-msg.error { background: #fdecec; color: #b03434; display: block; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; }

/* ============== PAGE HEADER (interior) ============== */
.page-hero {
  padding: calc(var(--header-h) + 70px) 0 36px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin: 0 auto 16px;
}
.page-hero .lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

/* Pagini interioare (servicii, despre): spațiere mai compactă */
body.page-interior .page-hero {
  padding-bottom: 36px;
}
body.page-interior .section {
  padding: 40px 0;
}
body.page-interior .section-tight {
  padding: 28px 0;
}
body.page-interior .section-head {
  margin-bottom: 32px;
}
.section.section-about-cards {
  padding: 32px 0 48px;
}

.page-hero--portfolio {
  padding-bottom: 36px;
}
.section.section-portfolio {
  padding: 28px 0 60px;
}
.section.section-portfolio .portfolio-grid {
  gap: 20px;
}

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }

/* ============== FOOTER ============== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line-soft);
  padding: 70px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.footer-brand small { font-weight: 400; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.04em; }
.footer-tagline { color: var(--muted); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--ink-2); font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { color: var(--ink-2); font-size: 0.92rem; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.footer-socials a:hover { background: var(--gold); color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  text-align: left;
  color: var(--muted);
  font-size: 0.84rem;
}
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.footer-legal a {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-legal a:hover { color: var(--gold); }

/* Legal pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
}
.legal-content .legal-updated {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}
.legal-content h2 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content li { color: var(--ink-2); }
.legal-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--ink); }
.section-legal {
  padding-top: 8px;
  padding-bottom: 64px;
}
.footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.footer-dev:hover { opacity: 1; color: var(--muted); }
.footer-dev img {
  height: 80px;
  width: auto;
  display: block;
}
@media (min-width: 900px) {
  .footer-dev img { height: 64px; }
}

/* ============== COOKIE BANNER ============== */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 150;
  font-size: 0.88rem;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}
.cookie-banner-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.cookie-banner-text p { color: var(--muted); font-size: 0.86rem; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-decline {
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: underline;
  text-decoration-color: rgba(110,110,115,0.3);
  text-underline-offset: 3px;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.cookie-decline:hover { color: var(--ink-2); }

/* ============== ANIMAȚII ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============== BREAKPOINTS ============== */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
  .cookie-banner { flex-direction: row; align-items: center; left: auto; right: 16px; bottom: 16px; max-width: 520px; }
  .cookie-banner-actions { flex-shrink: 0; }
  .cookie-decline {
    text-decoration: none;
    border: 1px solid var(--line);
    padding: 9px 18px;
    font-size: 0.85rem;
    color: var(--ink-2);
    white-space: nowrap;
  }
  .cookie-decline:hover {
    color: var(--ink);
    border-color: var(--ink);
    background: var(--bg-soft);
  }
}

@media (min-width: 900px) {
  :root { --header-h: 76px; }
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero--portfolio { padding-bottom: 40px; }
  .section.section-portfolio { padding: 32px 0 80px; }
  .section.section-portfolio .portfolio-grid { gap: 22px; }
  .page-hero { padding-bottom: 40px; }
  .section.section-about-cards { padding: 36px 0 64px; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-bottom-left { gap: 12px; }
  .section { padding: 72px 0; }
  body.page-interior .section { padding: 52px 0; }
  body.page-interior .section-tight { padding: 36px 0; }
  .container { padding: 0 32px; }

  .contact-grid--solo {
    max-width: 920px;
    margin: 0 auto;
  }
  .contact-grid--solo .contact-info {
    padding: 56px 64px;
  }
  .contact-grid--solo .contact-info h3 {
    font-size: clamp(1.65rem, 2.2vw, 2rem);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .contact-grid--solo .contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 54ch;
  }
  .contact-grid--solo .contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
  }
  .contact-grid--solo .contact-list-item {
    gap: 18px;
    align-items: center;
  }
  .contact-grid--solo .contact-list-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .contact-grid--solo .contact-list-icon svg {
    width: 24px;
    height: 24px;
  }
  .contact-grid--solo .contact-list-label {
    font-size: 0.84rem;
    margin-bottom: 8px;
    letter-spacing: 0.14em;
  }
  .contact-grid--solo .contact-list-value {
    font-size: 1.15rem;
    font-weight: 600;
  }
  .contact-grid--solo .contact-list-item:first-child .contact-list-value a {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .contact-grid--solo .contact-socials-wrap {
    margin-top: 40px;
    padding-top: 32px;
  }
  .contact-grid--solo .contact-socials {
    gap: 14px;
    margin-top: 16px;
  }
  .contact-grid--solo .contact-socials a {
    width: 50px;
    height: 50px;
  }
  .contact-grid--solo .contact-socials a svg {
    width: 22px;
    height: 22px;
  }

  .lightbox.open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    touch-action: auto;
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .lightbox-dialog {
    display: grid;
    grid-template-columns: 1.45fr 0.55fr;
    width: min(1560px, 98vw);
    height: min(94dvh, 920px);
    max-height: 94dvh;
    min-height: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.55);
    overflow: hidden;
    flex-direction: unset;
  }
  .lightbox-stage {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    height: 100%;
    padding: 0;
  }
  .lightbox-figure {
    height: 100%;
    padding: 28px 80px;
  }
  .lightbox-figure img {
    width: auto;
    max-width: 100%;
    max-height: calc(94dvh - 56px);
    height: auto;
    border-radius: calc(var(--radius) - 2px);
  }
  .lightbox-panel {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    overflow-y: auto;
    padding: 52px 32px 36px;
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.08);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .lightbox-panel::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .lightbox-title {
    font-size: clamp(1.5rem, 2vw, 1.85rem);
    margin-bottom: 14px;
  }
  .lightbox-desc {
    font-size: 1rem;
    margin-bottom: 22px;
  }
  .lightbox-meta {
    font-size: 0.94rem;
    margin-bottom: 24px;
  }
  .lightbox-thumbs {
    gap: 10px;
    margin-bottom: 24px;
  }
  .lightbox-thumb {
    width: 80px;
    height: 60px;
  }
  .lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
  }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .lightbox-prev, .lightbox-next {
    width: 52px;
    height: 52px;
  }
}
