/* ===========================================================
   Sai Kripa Band — stylesheet
   Palette: Maroon #7A1330, Deep Plum #2C0B24, Gold #D4A72C,
            Cream #FBF6EE, Ink #241419
   Type: Fraunces (display) + Manrope (body)
=========================================================== */

:root{
  --maroon: #7A1330;
  --maroon-dark: #5A0E24;
  --plum: #2B0B24;
  --plum-deep: #1D0719;
  --gold: #D4A72C;
  --gold-soft: #F0C955;
  --cream: #FBF6EE;
  --cream-2: #F5EEE0;
  --ink: #241419;
  --ink-soft: #5B4A52;
  --green: #1FA855;
  --white: #ffffff;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-card: 0 12px 30px rgba(43, 11, 36, 0.10);
  --shadow-soft: 0 6px 18px rgba(43, 11, 36, 0.08);
  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family:var(--font-display); margin:0; line-height:1.1; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

.container{
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 24px;
  border-radius:999px;
  font-weight:700;
  font-size:0.94rem;
  border:1.5px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-maroon{
  background:var(--maroon);
  color:var(--white);
  box-shadow:0 8px 20px rgba(122,19,48,0.35);
}
.btn-maroon:hover{ background:var(--maroon-dark); }
.btn-white{
  background:var(--white);
  color:var(--maroon);
}
.btn-outline-green{
  border-color:var(--green);
  color:var(--green);
  background:transparent;
}
.btn-outline-green:hover{ background:var(--green); color:var(--white); }
.btn-line-green{
  border-color:rgba(255,255,255,0.7);
  color:var(--white);
  background:rgba(255,255,255,0.08);
}
.btn-line-green:hover{ background:var(--green); border-color:var(--green); }
.btn-outline-maroon{
  border-color:var(--maroon);
  color:var(--maroon);
  background:transparent;
}
.btn-outline-maroon:hover{ background:var(--maroon); color:var(--white); }
.btn-block{ width:100%; }

.eyebrow{
  display:inline-block;
  font-size:0.75rem;
  font-weight:800;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--gold-soft);
  background:rgba(212,167,44,0.14);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:16px;
}
.eyebrow-dark{
  color:var(--maroon);
  background:rgba(122,19,48,0.08);
}

/* ---------- Top bar ---------- */
.topbar{
  background:var(--plum-deep);
  color:rgba(255,255,255,0.85);
  font-size:0.8rem;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 24px;
}
.topbar-follow{ display:flex; align-items:center; gap:10px; }
.topbar-follow a{
  width:22px; height:22px;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.12);
  border-radius:50%;
  color:rgba(255,255,255,0.9);
  transition:background .18s ease, color .18s ease, transform .18s ease;
}
.topbar-follow a svg{ width:11px; height:11px; }
.topbar-follow a:hover{ background:var(--gold); color:var(--plum-deep); transform:translateY(-1px); }

/* ---------- Header ---------- */
.site-header{
  background:var(--white);
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 2px 14px rgba(43,11,36,0.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 24px;
}
.brand{ display:flex; align-items:center; gap:14px; }
.brand-logo{
  height:44px;
  width:auto;
  display:block;
}
.brand-tag{ font-size:0.68rem; color:var(--ink-soft); max-width:120px; line-height:1.25; }

.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:600;
  font-size:0.94rem;
}
.main-nav a{ position:relative; padding:6px 0; color:var(--ink); }
.main-nav a.active,
.main-nav a:hover{ color:var(--maroon); }
.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-4px;
  height:2px;
  background:var(--gold);
  border-radius:2px;
}
.caret{ font-size:0.7em; }
.dropdown{ position:relative; }
.dropdown-menu{
  position:absolute;
  top:calc(100% + 14px);
  left:0;
  background:var(--white);
  border-radius:var(--radius-s);
  box-shadow:var(--shadow-card);
  padding:8px;
  min-width:180px;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:all .18s ease;
}
.dropdown:hover .dropdown-menu{
  opacity:1; visibility:visible; transform:translateY(0);
}
.dropdown-menu a{
  display:block;
  padding:8px 12px;
  border-radius:6px;
  font-weight:500;
}
.dropdown-menu a:hover{ background:var(--cream-2); color:var(--maroon); }

.header-actions{ display:flex; align-items:center; gap:14px; }
.call-block{ display:flex; align-items:center; gap:8px; }
.call-icon{
  width:38px; height:38px;
  border-radius:50%;
  background:var(--cream-2);
  display:flex; align-items:center; justify-content:center;
  color:var(--maroon);
}
.call-block small{ display:block; font-size:0.68rem; color:var(--ink-soft); }
.call-block strong{ font-size:0.92rem; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:8px;
}
.nav-toggle span{
  width:24px; height:2.5px;
  background:var(--ink);
  border-radius:2px;
  transition:transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 96px;
  color:var(--white);
}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(122,19,48,0.55), transparent 60%),
    linear-gradient(120deg, var(--plum-deep) 0%, var(--maroon-dark) 55%, var(--plum) 100%);
  z-index:0;
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle, rgba(212,167,44,0.18) 1.5px, transparent 1.5px);
  background-size:26px 26px;
  opacity:0.5;
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 0%, rgba(29,7,25,0.5) 100%);
  z-index:1;
}
.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
.hero h1{
  font-size:clamp(2.2rem, 4vw, 3.3rem);
  font-weight:600;
  margin-bottom:18px;
  letter-spacing:-0.01em;
}
.highlight{ color:var(--gold-soft); font-style:italic; }
.hero-desc{
  font-size:1.05rem;
  color:rgba(255,255,255,0.82);
  max-width:460px;
  margin-bottom:28px;
}
.hero-features{ display:flex; flex-direction:column; gap:16px; margin-bottom:32px; }
.hero-features li{ display:flex; align-items:flex-start; gap:14px; font-size:0.9rem; color:rgba(255,255,255,0.8); }
.feat-icon{
  flex:none;
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(212,167,44,0.18);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-soft);
}
.hero-features strong{ color:var(--white); font-size:0.96rem; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:22px; }
.hero-meta{ font-size:0.85rem; color:rgba(255,255,255,0.7); }

.hero-gallery{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.hg-item{
  border-radius:var(--radius-m);
  overflow:hidden;
  border:2px solid rgba(255,255,255,0.35);
  aspect-ratio:1/0.85;
}
.hg-item img{ width:100%; height:100%; object-fit:cover; }
.hg-more{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:118px; height:118px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--white);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  border:4px solid var(--plum-deep);
  box-shadow:0 10px 26px rgba(0,0,0,0.35);
  text-align:center;
  transition:transform .2s ease;
}
.hg-more:hover{ transform:translate(-50%,-50%) scale(1.05); }
.hg-more-icon{ font-size:1.1rem; }
.hg-more strong{ font-size:1.35rem; line-height:1; margin-top:2px; }
.hg-more small{ font-size:0.62rem; letter-spacing:0.03em; }

/* ---------- Trust strip ---------- */
.trust-strip{
  background:var(--white);
  margin-top:-40px;
  position:relative;
  z-index:5;
  padding:34px 0;
}
.trust-grid{
  background:var(--white);
  border-radius:var(--radius-l);
  box-shadow:var(--shadow-card);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:36px 24px;
}
.trust-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
  padding:0 12px;
  border-right:1px solid var(--cream-2);
}
.trust-item:last-child{ border-right:none; }
.trust-icon{
  width:52px; height:52px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  margin-bottom:4px;
}
.trust-icon.gold{ background:#FCEFC7; }
.trust-icon.green{ background:#DDF4E6; }
.trust-item strong{ font-size:1.02rem; }
.trust-item small{ color:var(--ink-soft); font-size:0.82rem; }

/* ---------- Services ---------- */
.services{ padding:96px 0 80px; }
.services-grid{
  display:grid;
  grid-template-columns:1.1fr repeat(2, 1fr);
  gap:22px;
}
.services-intro{ grid-row:span 2; padding-right:20px; }
.services-intro h2{ font-size:clamp(1.8rem,2.6vw,2.4rem); margin:6px 0 16px; }
.services-intro p{ color:var(--ink-soft); margin-bottom:26px; line-height:1.6; }
.service-card{
  background:var(--white);
  border-radius:var(--radius-m);
  padding:28px 22px;
  box-shadow:var(--shadow-soft);
  transition:transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
.service-icon{
  width:52px; height:52px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  margin-bottom:16px;
}
.service-icon.pink{ background:#FBE3EA; }
.service-icon.peach{ background:#FBE8D2; }
.service-icon.lilac{ background:#E7E2F7; }
.service-icon.mint{ background:#DDF2E6; }
.service-icon.sky{ background:#DDEBF7; }
.service-card h3{ font-size:1.08rem; margin-bottom:8px; }
.service-card p{ color:var(--ink-soft); font-size:0.88rem; line-height:1.5; }

/* ---------- Gallery ---------- */
.gallery-section{ padding:70px 0 90px; background:var(--cream-2); }
.gallery-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:34px;
  gap:20px;
  flex-wrap:wrap;
}
.gallery-head h2{ font-size:clamp(1.7rem,2.4vw,2.2rem); }
.gallery-strip{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
.gallery-strip img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:var(--radius-m);
  transition:transform .3s ease;
}
.gallery-strip img:hover{ transform:scale(1.03); }
.gallery-next{
  position:absolute;
  right:-18px; top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--white);
  border:none;
  font-size:1.3rem;
  box-shadow:var(--shadow-card);
}

/* ---------- Stats band ---------- */
.stats-band{
  background:linear-gradient(120deg, var(--plum-deep), var(--maroon-dark));
  color:var(--white);
  padding:46px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.stat-item{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:4px; }
.stat-icon{ font-size:1.5rem; margin-bottom:6px; color:var(--gold-soft); }
.stat-item strong{ font-family:var(--font-display); font-size:2rem; color:var(--gold-soft); }
.stat-item .plus{ font-family:var(--font-display); font-size:2rem; color:var(--gold-soft); margin-left:-4px; }
.stat-item small{ color:rgba(255,255,255,0.75); font-size:0.85rem; margin-top:4px; }

/* ---------- Testimonials (infinite loop marquee) ---------- */
.testimonials{ padding:96px 0 100px; text-align:left; overflow:hidden; }
.testimonials .container{ text-align:center; }
.testimonials h2{ font-size:clamp(1.8rem,2.6vw,2.3rem); margin:6px 0 44px; }
.testi-marquee{
  position:relative;
  width:100%;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.testi-track{
  display:flex;
  gap:24px;
  width:max-content;
  animation:testiScroll 38s linear infinite;
}
.testi-marquee:hover .testi-track{ animation-play-state:paused; }
@keyframes testiScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
.testi-card{
  background:var(--cream-2);
  border-radius:var(--radius-m);
  padding:30px 26px;
  position:relative;
  width:360px;
  flex:none;
}
.quote-mark{
  font-family:var(--font-display);
  font-size:3rem;
  color:var(--gold);
  line-height:1;
  display:block;
  margin-bottom:8px;
}
.testi-card p{ color:var(--ink); font-size:0.94rem; line-height:1.6; margin-bottom:18px; }
.testi-stars{ color:var(--gold); letter-spacing:2px; margin-bottom:16px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-person img{ width:44px; height:44px; border-radius:50%; object-fit:cover; }
.testi-person strong{ display:block; font-size:0.92rem; }
.testi-person small{ color:var(--ink-soft); font-size:0.78rem; }

/* ---------- Quote / Contact ---------- */
.quote-section{ padding:0 0 100px; }
.quote-grid{
  background:var(--white);
  border-radius:var(--radius-l);
  box-shadow:var(--shadow-card);
  display:grid;
  grid-template-columns:0.9fr 1.4fr;
  gap:40px;
  padding:46px;
}
.quote-info h2{ font-size:clamp(1.6rem,2.2vw,2rem); margin-bottom:14px; }
.quote-info p{ color:var(--ink-soft); margin-bottom:24px; line-height:1.6; }
.quote-contact{ display:flex; flex-direction:column; gap:12px; font-size:0.92rem; font-weight:600; }
.form-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:16px; }
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-size:0.78rem; font-weight:700; color:var(--ink-soft); }
.field input, .field select, .field textarea{
  padding:12px 14px;
  border:1.5px solid var(--cream-2);
  border-radius:10px;
  background:var(--cream);
  font-size:0.92rem;
  color:var(--ink);
  outline:none;
  transition:border-color .18s ease;
  resize:none;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--maroon); }
.field-message{ grid-column:span 1; }
.form-status{ margin-top:14px; font-size:0.88rem; font-weight:600; min-height:1.2em; color:var(--green); }
.form-status.is-error{ color:#c0392b; }
.hp-field{
  position:absolute;
  opacity:0;
  height:0; width:0;
  overflow:hidden;
  pointer-events:none;
}

/* ---------- Footer ---------- */
.site-footer{ background:var(--plum-deep); color:rgba(255,255,255,0.78); padding-top:64px; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr;
  gap:32px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand p{ margin:14px 0 18px; font-size:0.88rem; line-height:1.6; }
.footer-brand-logo{ height:40px; width:auto; display:block; }
.footer-brand .brand-tag{ color:rgba(255,255,255,0.55); }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:36px; height:36px;
  border-radius:50%;
  background:rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.85);
  transition:background .18s ease, color .18s ease, transform .18s ease;
}
.footer-social a svg{ width:16px; height:16px; }
.footer-social a:hover{ background:var(--gold); color:var(--plum-deep); transform:translateY(-3px); }
.footer-col h4{
  font-family:var(--font-display);
  color:var(--white);
  font-size:1.02rem;
  margin-bottom:18px;
}
.footer-col{ display:flex; flex-direction:column; gap:11px; font-size:0.88rem; }
.footer-col a:hover{ color:var(--gold-soft); }
.newsletter-form{ display:flex; flex-direction:column; gap:10px; margin-top:6px; }
.newsletter-form input{
  padding:11px 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.06);
  color:var(--white);
  outline:none;
}
.newsletter-form input::placeholder{ color:rgba(255,255,255,0.5); }
.footer-bottom{ padding:20px 0; font-size:0.82rem; }
.footer-bottom-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.footer-legal a:hover{ color:var(--gold-soft); }

/* ---------- Floating buttons ---------- */
.whatsapp-float{
  position:fixed;
  right:24px; bottom:24px;
  width:56px; height:56px;
  border-radius:50%;
  background:var(--green);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(31,168,85,0.4);
  z-index:200;
  animation:pulse 2.4s infinite;
}
.whatsapp-float svg{ width:26px; height:26px; }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(31,168,85,0.45); }
  70%{ box-shadow:0 0 0 14px rgba(31,168,85,0); }
  100%{ box-shadow:0 0 0 0 rgba(31,168,85,0); }
}
.scroll-top{
  position:fixed;
  right:24px; bottom:90px;
  width:44px; height:44px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--white);
  border:none;
  font-size:1.1rem;
  box-shadow:var(--shadow-card);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:all .25s ease;
  z-index:200;
}
.scroll-top.show{ opacity:1; visibility:visible; transform:translateY(0); }

/* ---------- About ---------- */
.about-section{ padding:96px 0; background:var(--white); }
.about-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:56px;
  align-items:center;
}
.about-media img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:var(--radius-l);
  box-shadow:var(--shadow-card);
}
.about-copy h2{ font-size:clamp(1.8rem,2.6vw,2.3rem); margin:6px 0 16px; }
.about-copy p{ color:var(--ink-soft); line-height:1.7; margin-bottom:20px; }
.about-points{ display:flex; flex-direction:column; gap:10px; margin-bottom:28px; font-weight:600; font-size:0.94rem; }

/* ---------- Inner page hero (Gallery, etc.) ---------- */
.page-hero{
  position:relative;
  overflow:hidden;
  padding:70px 0 90px;
  color:var(--white);
  text-align:center;
}
.page-hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(122,19,48,0.55), transparent 60%),
    linear-gradient(120deg, var(--plum-deep) 0%, var(--maroon-dark) 55%, var(--plum) 100%);
  z-index:0;
}
.page-hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(212,167,44,0.18) 1.5px, transparent 1.5px);
  background-size:26px 26px;
  opacity:0.5;
}
.page-hero-inner{ position:relative; z-index:2; max-width:640px; margin:0 auto; }
.page-hero-inner h1{ font-size:clamp(2rem,3.6vw,2.9rem); margin:14px 0 16px; }
.page-hero-inner p{ color:rgba(255,255,255,0.82); line-height:1.6; }

/* ---------- Full gallery page ---------- */
.full-gallery{ padding:70px 0 90px; background:var(--cream-2); }
.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-bottom:40px;
}
.filter-btn{
  border:1.5px solid var(--maroon);
  background:transparent;
  color:var(--maroon);
  padding:10px 20px;
  border-radius:999px;
  font-weight:700;
  font-size:0.86rem;
  transition:background .18s ease, color .18s ease;
}
.filter-btn:hover{ background:rgba(122,19,48,0.08); }
.filter-btn.active{ background:var(--maroon); color:var(--white); }

.full-gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.gallery-tile{
  position:relative;
  border-radius:var(--radius-m);
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:1/1;
  box-shadow:var(--shadow-soft);
}
.gallery-tile img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.gallery-tile:hover img{ transform:scale(1.08); }
.gallery-tile-overlay{
  position:absolute; inset:0;
  display:flex; align-items:flex-end;
  padding:14px;
  background:linear-gradient(180deg, transparent 40%, rgba(29,7,25,0.75) 100%);
  opacity:0;
  transition:opacity .25s ease;
}
.gallery-tile:hover .gallery-tile-overlay{ opacity:1; }
.gallery-tile-overlay span{
  color:var(--white);
  font-weight:700;
  font-size:0.8rem;
  background:rgba(122,19,48,0.85);
  padding:5px 12px;
  border-radius:999px;
}
.gallery-tile.hidden{ display:none; }
.gallery-empty{ text-align:center; color:var(--ink-soft); padding:40px 0 0; font-weight:600; }

/* ---------- Lightbox ---------- */
.lightbox{
  position:fixed; inset:0;
  background:rgba(15,4,12,0.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:500;
  padding:40px;
}
.lightbox.open{ display:flex; }
.lightbox img{
  max-width:min(900px, 90vw);
  max-height:82vh;
  border-radius:var(--radius-m);
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close{
  position:absolute; top:24px; right:28px;
  width:44px; height:44px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.12);
  color:var(--white);
  font-size:1.2rem;
}
.lightbox-close:hover{ background:var(--maroon); }
.lightbox-nav{
  position:absolute; top:50%;
  transform:translateY(-50%);
  width:50px; height:50px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.12);
  color:var(--white);
  font-size:1.7rem;
}
.lightbox-nav:hover{ background:var(--maroon); }
.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }

/* ---------- Gallery CTA band ---------- */
.gallery-cta{
  background:linear-gradient(120deg, var(--plum-deep), var(--maroon-dark));
  color:var(--white);
  padding:56px 0;
}
.gallery-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px;
}
.gallery-cta-inner h2{ font-size:clamp(1.5rem,2.2vw,2rem); margin-bottom:8px; }
.gallery-cta-inner p{ color:rgba(255,255,255,0.8); }
.gallery-cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- Reveal animation ---------- */
[data-animate]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-animate].in-view{ opacity:1; transform:translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .services-grid{ grid-template-columns:1fr 1fr; }
  .services-intro{ grid-column:span 2; grid-row:auto; }
  .quote-grid{ grid-template-columns:1fr; }
  .gallery-strip{ grid-template-columns:repeat(3,1fr); }
  .gallery-strip img:nth-child(4), .gallery-strip img:nth-child(5){ display:none; }
  .about-grid{ grid-template-columns:1fr; }
  .about-media img{ height:320px; }
  .full-gallery-grid{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width: 860px){
  .topbar-inner{ font-size:0.72rem; }
  .main-nav{
    position:fixed;
    top:0; right:0;
    height:100vh;
    width:min(78vw, 320px);
    background:var(--white);
    flex-direction:column;
    align-items:flex-start;
    padding:100px 28px 28px;
    gap:22px;
    box-shadow:-10px 0 30px rgba(0,0,0,0.12);
    transform:translateX(100%);
    transition:transform .3s ease;
    z-index:99;
  }
  .main-nav.open{ transform:translateX(0); }
  .dropdown-menu{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; display:none; padding-left:10px; }
  .dropdown.open .dropdown-menu{ display:block; }
  .header-actions .call-block{ display:none; }
  .header-actions .btn-outline-green{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-gallery{ display:none; }
  .trust-grid{ grid-template-columns:1fr 1fr; row-gap:26px; }
  .trust-item{ border-right:none; }
  .services-grid{ grid-template-columns:1fr; }
  .services-intro{ grid-column:auto; }
  .stats-grid{ grid-template-columns:1fr 1fr; row-gap:24px; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:span 2; }
  .gallery-strip{ grid-template-columns:repeat(2,1fr); }
  .gallery-strip img:nth-child(3){ display:none; }
  .full-gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-cta-inner{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 520px){
  .header-inner{ padding:12px 16px; }
  .brand-logo{ height:34px; }
  .brand-tag{ display:none; }
  .hero{ padding:48px 0 70px; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; }
  .trust-grid{ grid-template-columns:1fr; padding:26px 20px; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-brand{ grid-column:auto; }
  .quote-grid{ padding:26px; }
  .gallery-strip{ grid-template-columns:1fr 1fr; }
  .testi-card{ width:280px; }
  .full-gallery-grid{ grid-template-columns:1fr 1fr; }
  .lightbox{ padding:16px; }
  .lightbox-nav{ width:40px; height:40px; font-size:1.3rem; }
}
