/* ============================================================
   SHERIFF CONSTRUCT S.R.L. — Stylesheet
   Acoperișuri, mansardări, hidroizolații & hale industriale
   ============================================================ */

:root {
  --navy: #0f1b2d;
  --navy-2: #16263d;
  --steel: #1f3a5f;
  --amber: #f5a623;
  --amber-dark: #d98a05;
  --red: #c0392b;
  --white: #ffffff;
  --off: #f6f8fb;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --text: #1e293b;
  --shadow: 0 10px 30px rgba(15, 27, 45, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 27, 45, 0.18);
  --radius: 14px;
  --maxw: 1180px;
  --font: 'Segoe UI', 'Inter', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; color: var(--navy); }

.section { padding: 84px 0; }
.section--alt { background: var(--off); }
.section--navy { background: var(--navy); color: #cdd7e5; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--amber); }

.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--gray); font-size: 1.08rem; }
.section--navy .section-head p { color: #aab8ca; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--amber); color: var(--navy); box-shadow: 0 8px 22px rgba(245,166,35,.35); }
.btn--primary:hover { background: var(--amber-dark); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--wa { background: #25d366; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.35); }
.btn--wa:hover { background: #1eb954; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--steel); }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy);
  color: #cdd7e5;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.topbar a { color: #cdd7e5; transition: color .15s; }
.topbar a:hover { color: var(--amber); }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__badge { color: var(--amber); font-weight: 700; }

header.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow .2s;
}
header.nav.scrolled { box-shadow: 0 6px 24px rgba(15,27,45,.08); }
.nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo__badge {
  width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: grid; place-items: center;
  color: var(--navy); font-weight: 900; font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(245,166,35,.4);
}
.logo__text { line-height: 1.1; }
.logo__text strong { display: block; font-size: 1.16rem; font-weight: 900; color: var(--navy); letter-spacing: .3px; }
.logo__text span { font-size: 0.72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gray); }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 600; font-size: 0.98rem; color: var(--text); transition: color .15s; }
.nav__links a:hover { color: var(--amber-dark); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-weight: 800; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; font-size: 1.05rem; }
.nav__phone svg { color: var(--amber-dark); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(9,16,28,.82), rgba(9,16,28,.88)),
    url("../images/hero.jpg") center/cover no-repeat, var(--navy);
  color: #fff;
  padding: 96px 0 108px;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.22), transparent 70%);
}
.hero .container { position: relative; z-index: 2; max-width: 860px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.15); color: var(--amber);
  border: 1px solid rgba(245,166,35,.35);
  padding: 7px 16px; border-radius: 100px; font-weight: 700;
  font-size: 0.84rem; letter-spacing: .04em; margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5.4vw, 3.5rem); margin-bottom: 20px; }
.hero h1 .accent { color: var(--amber); }
.hero p.lead { font-size: 1.22rem; color: #d3dce8; max-width: 660px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: flex; gap: 42px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.14); padding-top: 28px; }
.hero__stat strong { display: block; font-size: 2rem; color: var(--amber); font-weight: 900; }
.hero__stat span { font-size: 0.92rem; color: #b9c4d3; }

/* ---------- Trust strip ---------- */
.trust { background: var(--white); border-bottom: 1px solid var(--gray-light); padding: 26px 0; }
.trust .container { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.trust__label { font-weight: 800; color: var(--gray); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.trust__items { display: flex; gap: 30px; flex-wrap: wrap; }
.trust__item { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); }
.trust__item svg { color: var(--amber-dark); flex-shrink: 0; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--gray-light); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--amber), var(--amber-dark)); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, #fff2db, #ffe1ad); color: var(--amber-dark); margin-bottom: 20px;
}
.service-card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: .98rem; margin-bottom: 16px; }
.service-card ul { list-style: none; margin-bottom: 0; }
.service-card li { position: relative; padding-left: 24px; margin-bottom: 7px; font-size: .93rem; color: var(--text); }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: var(--amber-dark); font-weight: 900; }

/* ---------- Bilka / Partner ---------- */
.partner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.partner__badge-big {
  background: linear-gradient(135deg, var(--steel), var(--navy));
  border-radius: 20px; padding: 46px; color: #fff; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.partner__badge-big::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,166,35,.25), transparent 70%); border-radius: 50%;
}
.partner__badge-big .seal {
  display: inline-flex; align-items: center; gap: 10px; background: var(--amber); color: var(--navy);
  padding: 8px 18px; border-radius: 100px; font-weight: 800; margin-bottom: 22px; font-size: .9rem;
}
.partner__badge-big h3 { color: #fff; font-size: 1.7rem; margin-bottom: 14px; }
.partner__badge-big p { color: #c6d2e2; position: relative; z-index: 2; }
.partner__list { list-style: none; margin-top: 22px; position: relative; z-index: 2; }
.partner__list li { padding-left: 30px; position: relative; margin-bottom: 12px; color: #dbe4f0; }
.partner__list li::before {
  content: "★"; position: absolute; left: 0; color: var(--amber); font-size: 1.05rem;
}
.partner__text h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 18px; }
.partner__text p { color: var(--gray); margin-bottom: 18px; font-size: 1.05rem; }

/* ---------- Brand partners strip ---------- */
.brands { border-top: 1px solid var(--gray-light); }
.brands__head { text-align: center; margin-bottom: 34px; }
.brands__head span { font-weight: 800; color: var(--gray); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.brands__head h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 8px; }
.brand-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.brand-logo {
  background: #fff; border: 1px solid var(--gray-light); border-radius: var(--radius);
  padding: 26px 20px; display: grid; place-items: center; min-height: 110px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.brand-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--amber); }
.brand-logo img { max-height: 56px; width: auto; }
.brands__note { text-align: center; margin-top: 22px; color: var(--gray); font-size: .95rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/3; border: 1px solid var(--gray-light); background: var(--off);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(9,16,28,.9), rgba(9,16,28,0));
  color: #fff; padding: 34px 18px 16px; font-weight: 700; font-size: 1.02rem;
  display: flex; align-items: center; gap: 8px;
}
.gallery-item figcaption span { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.gallery__note { text-align: center; margin-top: 26px; color: var(--gray); font-size: .95rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; counter-reset: step; }
.step { background: var(--navy-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 30px 26px; position: relative; }
.step__num {
  width: 46px; height: 46px; border-radius: 12px; background: var(--amber); color: var(--navy);
  font-weight: 900; font-size: 1.25rem; display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: #a9b7c9; font-size: .95rem; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.why-card { display: flex; gap: 18px; }
.why-card__icon {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy); color: var(--amber);
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: .96rem; }

/* ---------- Coverage / SEO area ---------- */
.coverage { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.coverage__text h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 18px; }
.coverage__text p { color: var(--gray); margin-bottom: 20px; font-size: 1.05rem; }
.county-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.county-tags span {
  background: #fff; border: 1px solid var(--gray-light); padding: 8px 16px; border-radius: 100px;
  font-size: .9rem; font-weight: 600; color: var(--steel); transition: .18s;
}
.county-tags span:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.coverage__panel {
  background: var(--navy); border-radius: 20px; padding: 40px; color: #fff; box-shadow: var(--shadow-lg);
}
.coverage__panel h3 { color: #fff; margin-bottom: 20px; font-size: 1.35rem; }
.coverage__panel ul { list-style: none; }
.coverage__panel li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: #cdd7e5; }
.coverage__panel li:last-child { border-bottom: none; }
.coverage__panel li strong { color: var(--amber); }

/* ---------- Stats band ---------- */
.stats-band { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); }
.stats-band .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 30px; text-align: center; }
.stat-item strong { display: block; font-size: 2.6rem; font-weight: 900; color: var(--navy); }
.stat-item span { color: #4a3403; font-weight: 700; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.testi { background: #fff; border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.testi__stars { color: var(--amber); margin-bottom: 14px; letter-spacing: 2px; }
.testi p { font-style: italic; color: var(--text); margin-bottom: 18px; }
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--amber); display: grid; place-items: center; font-weight: 800; }
.testi__author strong { display: block; font-size: .96rem; color: var(--navy); }
.testi__author span { font-size: .84rem; color: var(--gray); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-light); border-radius: 12px; margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-weight: 700; font-size: 1.05rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q:hover { color: var(--amber-dark); }
.faq-q .plus { flex-shrink: 0; font-size: 1.4rem; color: var(--amber-dark); transition: transform .25s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }
.faq-a p { color: var(--gray); }

/* ---------- Contact / CTA ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact__info h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 18px; }
.contact__info > p { color: var(--gray); margin-bottom: 28px; font-size: 1.05rem; }
.contact__methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--gray-light); border-radius: 12px; padding: 18px 20px; transition: .18s; }
.contact-method:hover { border-color: var(--amber); box-shadow: var(--shadow); }
.contact-method__icon { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--navy); color: var(--amber); flex-shrink: 0; }
.contact-method small { color: var(--gray); display: block; font-size: .82rem; }
.contact-method strong { color: var(--navy); font-size: 1.12rem; }

.contact-form { background: #fff; border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 8px; font-size: 1.4rem; }
.contact-form p.sub { color: var(--gray); margin-bottom: 24px; font-size: .96rem; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--gray-light); border-radius: 10px;
  font-family: inherit; font-size: 1rem; transition: border .15s; background: var(--off);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--amber); background: #fff; }
.form-note { font-size: .82rem; color: var(--gray); margin-top: 12px; text-align: center; }

/* ---------- Footer ---------- */
footer.site-footer { background: #0a1220; color: #93a3b8; padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #93a3b8; transition: color .15s; font-size: .95rem; }
.footer-col a:hover { color: var(--amber); }
.footer-brand p { font-size: .95rem; margin-bottom: 18px; max-width: 340px; }
.footer-brand .logo__text strong { color: #fff; }
.footer-brand .logo__text span { color: #6b7c92; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .95rem; }
.footer-contact-item svg { color: var(--amber); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .86rem; }
.footer-bottom a { color: #93a3b8; }
.footer-bottom a:hover { color: var(--amber); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 950;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,.5); transition: transform .2s;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .partner, .coverage, .contact { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-logos { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links, .nav__phone span.hide-sm { }
}
@media (max-width: 820px) {
  .nav__links {
    position: fixed; top: 74px; right: 0; width: min(300px, 82vw); height: calc(100vh - 74px);
    background: #fff; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 24px; transform: translateX(105%); transition: transform .3s; box-shadow: var(--shadow-lg);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--gray-light); }
  .burger { display: block; }
  .nav__cta .btn { display: none; }
  .section { padding: 62px 0; }
  .hero { padding: 70px 0 80px; }
  .hero__stats { gap: 26px; }
  .topbar { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero__stat strong { font-size: 1.6rem; }
  .stat-item strong { font-size: 2rem; }
  .partner__badge-big, .coverage__panel, .contact-form { padding: 28px 22px; }
}

/* ---------- Lightbox Modal ---------- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}
.lightbox__close:hover {
  color: var(--amber);
  transform: scale(1.1);
}
.lightbox__content {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox__content img {
  transform: scale(1);
}
.lightbox__caption {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  background: rgba(15, 27, 45, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
}

/* ---------- Video Gallery items ---------- */
.gallery-item--video {
  position: relative;
}
.gallery-item--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.9);
  color: var(--navy);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
}
.gallery-item:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--amber);
}
