/* ============================================================
   Balkrushna Shirsath — Sabhapati, Nashik Municipal Corporation
   Design tokens: civic-authoritative, Nashik/Godavari grounded
   ============================================================ */

:root{
  --navy: #0b2447;
  --navy-deep: #071730;
  --saffron: #d97a1a;
  --saffron-deep: #b25e0d;
  --green: #175c36;
  --paper: #f6f2e9;
  --paper-dim: #efe9db;
  --ink: #1c1f26;
  --ink-soft: #4a4f5a;
  --line: #dcd3bd;
  --white: #ffffff;

  --font-display-mr: 'Tiro Devanagari Marathi', serif;
  --font-display-en: 'Playfair Display', serif;
  --font-body-mr: 'Noto Sans Devanagari', sans-serif;
  --font-ui: 'Inter', sans-serif;

  --container: 1180px;
  --radius: 2px;
  --shadow: 0 18px 40px -20px rgba(11,36,71,.35);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body-mr), var(--font-ui);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ margin:0; font-weight:700; }
p{ margin:0 0 1em; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline:3px solid var(--saffron); outline-offset:2px; }

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--navy); color:var(--white);
  padding:12px 20px; z-index:999; font-family:var(--font-ui);
}
.skip-link:focus{ left:12px; top:12px; }

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  font-family:var(--font-ui); font-size:12.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--saffron-deep); font-weight:700; display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{
  content:''; width:26px; height:2px; background:var(--saffron-deep); display:inline-block;
}

/* ---------- seal motif (signature element) ---------- */
.seal{ display:inline-block; }
.seal svg{ display:block; }

/* ================= TOPBAR ================= */
.topbar{
  background:var(--navy-deep); color:#d8e0ee; font-family:var(--font-ui);
  font-size:13px;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  height:38px; flex-wrap:wrap; gap:6px;
}
.topbar-tag{ opacity:.85; letter-spacing:.02em; }
.topbar-right{ display:flex; align-items:center; gap:18px; }
.topbar-phone{
  display:inline-flex; align-items:center; gap:7px; color:var(--white); font-weight:600;
  border-left:1px solid rgba(255,255,255,.18); padding-left:18px;
}
.topbar-phone svg{ width:14px; height:14px; }
.topbar-social{ display:flex; gap:12px; }
.topbar-social a{
  width:24px; height:24px; display:grid; place-items:center; border-radius:50%;
  background:rgba(255,255,255,.08); transition:background .2s, transform .2s;
}
.topbar-social a:hover{ background:var(--saffron); transform:translateY(-1px); }
.topbar-social svg{ width:13px; height:13px; }

/* ================= HEADER / NAV ================= */
.site-header{
  background:var(--paper); border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:100;
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:12px 24px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:56px; width:auto; }
.brand-text{ font-family:var(--font-ui); line-height:1.25; }
.brand-text .name{
  font-family:var(--font-display-mr); font-size:19px; font-weight:700; color:var(--navy);
  display:block;
}
.brand-text .role{ font-size:11.5px; letter-spacing:.06em; color:var(--saffron-deep); font-weight:700; text-transform:uppercase; }

.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-family:var(--font-ui); font-size:14.5px; font-weight:600; color:var(--navy);
  position:relative; padding:6px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--saffron);
  transition:width .25s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after{ width:100%; }
.main-nav a[aria-current="page"]{ color:var(--saffron-deep); }

.header-cta{
  display:inline-flex; align-items:center; gap:9px; background:var(--navy); color:var(--white);
  font-family:var(--font-ui); font-weight:700; font-size:13.5px; padding:11px 18px;
  border-radius:var(--radius); white-space:nowrap; transition:background .2s, transform .2s;
}
.header-cta svg{ width:15px; height:15px; }
.header-cta:hover{ background:var(--saffron-deep); transform:translateY(-1px); }

.nav-toggle{
  display:none; background:none; border:2px solid var(--navy); border-radius:4px;
  width:42px; height:38px; align-items:center; justify-content:center;
}
.nav-toggle svg{ width:20px; height:20px; }

@media (max-width:960px){
  .main-nav{
    position:fixed; inset:0 0 0 auto; width:min(78vw,340px); height:100vh;
    background:var(--navy); flex-direction:column; align-items:flex-start; gap:2px;
    padding:90px 28px 28px; transform:translateX(100%); transition:transform .35s ease;
    overflow-y:auto;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav a{ color:var(--white); width:100%; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.1); }
  .main-nav a::after{ display:none; }
  .main-nav a[aria-current="page"]{ color:var(--saffron); }
  .nav-toggle{ display:inline-flex; }
  .header-cta span{ display:none; }
  .header-cta{ padding:11px 13px; }
  .hero{ height:min(60vh,560px); min-height:420px; }
}
/* ================= HERO SLIDER ================= */
.hero{
  position:relative; overflow:hidden; height:min(86vh,760px); min-height:480px;
  background:var(--navy-deep);
}
.hero-slide{
  position:absolute; inset:0; opacity:0; transition:opacity 1.1s ease;
  display:flex; align-items:flex-end;
}
.hero-slide.active{ opacity:1; z-index:2; }
.hero-slide img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:saturate(1.05);
}
.hero-slide::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(7,23,48,.35) 0%, rgba(7,23,48,.35) 40%, rgba(7,23,48,.92) 100%);
  z-index:1;
}
.hero-content{
  position:relative; z-index:2; color:var(--white); padding:0 24px 76px;
  max-width:var(--container); margin:0 auto; width:100%;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:10px; background:rgba(217,122,26,.16);
  border:1px solid rgba(217,122,26,.55); color:#ffd8a3; padding:7px 14px; border-radius:999px;
  font-family:var(--font-ui); font-size:12.5px; font-weight:700; letter-spacing:.04em; margin-bottom:20px;
}
.hero-badge svg{ width:15px; height:15px; }
.hero-title{
  font-family:var(--font-display-mr); font-size:clamp(30px,5vw,54px); line-height:1.18;
  max-width:820px; text-shadow:0 4px 24px rgba(0,0,0,.35); margin-bottom:14px;
}
.hero-sub{
  font-family:var(--font-body-mr); font-size:clamp(15px,1.8vw,18px); color:#e8ecf4;
  max-width:600px; margin-bottom:28px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; gap:9px; font-family:var(--font-ui); font-weight:700;
  font-size:14.5px; padding:14px 24px; border-radius:var(--radius); transition:transform .2s, background .2s, box-shadow .2s;
}
.btn svg{ width:16px; height:16px; flex:none; }
.btn-primary{ background:var(--saffron); color:var(--navy-deep); }
.btn-primary:hover{ background:#f0912f; transform:translateY(-2px); box-shadow:0 12px 24px -10px rgba(217,122,26,.6); }
.btn-outline{ background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.65); }
.btn-outline:hover{ background:rgba(255,255,255,.12); transform:translateY(-2px); }
.btn-navy{ background:var(--navy); color:var(--white); }
.btn-navy:hover{ background:var(--navy-deep); transform:translateY(-2px); }

.hero-dots{
  position:absolute; z-index:3; right:24px; bottom:26px; display:flex; gap:9px;
}
.hero-dots button{
  width:34px; height:4px; background:rgba(255,255,255,.35); border:none; border-radius:2px;
  padding:0; transition:background .25s;
}
.hero-dots button.active{ background:var(--saffron); }
.hero-arrows{ position:absolute; z-index:3; left:24px; bottom:26px; display:flex; gap:10px; }
.hero-arrows button{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.5);
  background:rgba(7,23,48,.35); color:var(--white); display:grid; place-items:center;
}
.hero-arrows button:hover{ background:var(--saffron); border-color:var(--saffron); }
.hero-arrows svg{ width:16px; height:16px; }

@media (max-width:640px){
  .hero-dots{ display:none; }
  .hero-arrows{ display:none; }
}

/* ================= STAT / SEAL STRIP ================= */
.stat-strip{ background:var(--navy); color:var(--white); position:relative; }
.stat-strip .container{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
}
.stat-item{
  padding:34px 22px; text-align:center; border-left:1px solid rgba(255,255,255,.12);
}
.stat-item:first-child{ border-left:none; }
.stat-num{ font-family:var(--font-display-en); font-size:34px; color:var(--saffron); font-weight:700; }
.stat-label{ font-family:var(--font-ui); font-size:12.5px; letter-spacing:.05em; color:#c6cfe0; margin-top:6px; }
@media (max-width:760px){
  .stat-strip .container{ grid-template-columns:repeat(2,1fr); }
  .stat-item{ border-left:none; border-top:1px solid rgba(255,255,255,.12); }
  .stat-item:nth-child(1),.stat-item:nth-child(2){ border-top:none; }
}

/* ================= SECTION SHELL ================= */
.section{ padding:88px 0; }
.section-tight{ padding:64px 0; }
.section-head{ max-width:640px; margin-bottom:46px; }
.section-title{
  font-family:var(--font-display-mr); font-size:clamp(26px,3.4vw,38px); color:var(--navy);
  margin-top:12px; line-height:1.25;
}
.section-title .en{ font-family:var(--font-display-en); font-style:italic; color:var(--saffron-deep); }
.section-desc{ color:var(--ink-soft); margin-top:14px; font-size:15.5px; }
.section-link{
  display:inline-flex; align-items:center; gap:8px; font-family:var(--font-ui); font-weight:700;
  font-size:14px; color:var(--navy); border-bottom:2px solid var(--saffron); padding-bottom:2px;
}
.section-link svg{ width:14px; height:14px; transition:transform .2s; }
.section-link:hover svg{ transform:translateX(4px); }

.river-divider{ display:block; width:100%; height:46px; }
.river-divider path{ fill:var(--paper); }
.bg-navy .river-divider path{ fill:var(--navy); }

/* ================= ABOUT ================= */
.about{ background:var(--white); }
.about-grid{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:60px; align-items:center;
}
.about-photo{ position:relative; }
.about-photo img{
  width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.about-photo-frame{
  position:absolute; inset:18px -18px -18px 18px; border:2px solid var(--saffron); z-index:-1;
}
.about-quote{
  margin-top:26px; padding:20px 22px; background:var(--paper); border-left:4px solid var(--saffron);
  font-family:var(--font-display-mr); font-size:16.5px; color:var(--navy); font-style:normal;
}
.about-body p{ color:var(--ink-soft); font-size:15.8px; }
.about-signoff{
  margin-top:26px; display:flex; align-items:center; gap:16px;
}
.about-signoff .name-en{ font-family:var(--font-display-en); font-style:italic; font-size:19px; color:var(--navy); }
.about-signoff .title-en{ font-family:var(--font-ui); font-size:12px; color:var(--ink-soft); letter-spacing:.03em; }
.about-cta{ margin-top:28px; display:flex; gap:14px; flex-wrap:wrap; }

/* ================= FOCUS AREAS ================= */
.focus{ background:var(--paper-dim); position:relative; }
.focus-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line); border:1px solid var(--line); }
.focus-card{
  background:var(--paper-dim); padding:36px 30px; transition:background .25s;
}
.focus-card:hover{ background:var(--white); }
.focus-num{ font-family:var(--font-display-en); font-size:13px; color:var(--saffron-deep); font-weight:700; letter-spacing:.04em; }
.focus-icon{ width:44px; height:44px; margin:16px 0 18px; color:var(--navy); }
.focus-icon svg{ width:100%; height:100%; }
.focus-title{ font-family:var(--font-display-mr); font-size:19px; color:var(--navy); margin-bottom:8px; }
.focus-desc{ color:var(--ink-soft); font-size:14.5px; }
@media (max-width:860px){ .focus-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .focus-grid{ grid-template-columns:1fr; } }

/* ================= GROUND REPORT MOSAIC ================= */
.mosaic{ background:var(--white); }
.mosaic-grid{
  display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:150px; gap:8px;
}
.mosaic-grid a{ position:relative; overflow:hidden; border-radius:var(--radius); display:block; }
.mosaic-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.mosaic-grid a:hover img{ transform:scale(1.07); }
.mosaic-grid a::after{
  content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 55%, rgba(7,23,48,.65) 100%);
  opacity:0; transition:opacity .3s;
}
.mosaic-grid a:hover::after{ opacity:1; }
.m-cap{
  position:absolute; left:12px; bottom:10px; color:var(--white); font-family:var(--font-ui);
  font-size:12px; font-weight:600; opacity:0; transform:translateY(6px); transition:.3s; z-index:2;
}
.mosaic-grid a:hover .m-cap{ opacity:1; transform:translateY(0); }
.mosaic-grid a:nth-child(1){ grid-column:span 2; grid-row:span 2; }
.mosaic-grid a:nth-child(4){ grid-column:span 2; }
@media (max-width:760px){
  .mosaic-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:130px; }
  .mosaic-grid a:nth-child(1){ grid-column:span 2; grid-row:span 1; }
}
.mosaic-foot{ margin-top:30px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }

/* ================= PRESS / NEWSLETTER PREVIEW ================= */
.press{ background:var(--paper); }
.press-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.press-card{
  background:var(--white); border:1px solid var(--line); box-shadow:var(--shadow); overflow:hidden;
  transition:transform .25s, box-shadow .25s;
}
.press-card:hover{ transform:translateY(-6px); }
.press-thumb{ aspect-ratio:4/3; overflow:hidden; background:#eee; }
.press-thumb img{ width:100%; height:100%; object-fit:cover; }
.press-body{ padding:18px 20px 22px; }
.press-tag{ font-family:var(--font-ui); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--saffron-deep); font-weight:700; }
.press-title{ font-family:var(--font-display-mr); font-size:17px; color:var(--navy); margin-top:8px; line-height:1.4; }
.press-meta{ font-family:var(--font-ui); font-size:12px; color:var(--ink-soft); margin-top:10px; }
@media (max-width:860px){ .press-grid{ grid-template-columns:1fr; max-width:440px; margin:0 auto; } }

/* ================= JANATA DARBAR CTA BAND ================= */
.cta-band{
  background:var(--saffron); color:var(--navy-deep); position:relative; overflow:hidden;
}
.cta-band .container{
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  padding-top:48px; padding-bottom:48px;
}
.cta-band-text .eyebrow{ color:var(--navy-deep); }
.cta-band-text .eyebrow::before{ background:var(--navy-deep); }
.cta-band h3{ font-family:var(--font-display-mr); font-size:clamp(22px,3vw,30px); margin-top:10px; max-width:520px; }
.cta-band p{ margin-top:8px; font-size:14.5px; max-width:480px; }
.cta-band-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.cta-band .btn-navy:hover{ background:#0f1e39; }

/* ================= CONTACT ================= */
.contact{ background:var(--navy); color:#e6ebf5; }
.contact .section-title{ color:var(--white); }
.contact .section-desc{ color:#b9c3d6; }
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
.contact-list{ margin-top:8px; }
.contact-list li{
  display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.12);
}
.contact-list li:first-child{ padding-top:0; }
.c-icon{
  width:42px; height:42px; flex:none; border-radius:50%; background:rgba(217,122,26,.18);
  border:1px solid rgba(217,122,26,.5); display:grid; place-items:center; color:var(--saffron);
}
.c-icon svg{ width:19px; height:19px; }
.c-label{ font-family:var(--font-ui); font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; color:#9aa8c2; margin-bottom:4px; }
.c-value{ font-family:var(--font-ui); font-size:16px; font-weight:600; color:var(--white); }
.c-value a:hover{ color:var(--saffron); }
.map-frame{
  border:1px solid rgba(255,255,255,.18); border-radius:var(--radius); overflow:hidden; height:100%; min-height:340px;
}
.map-frame iframe{ width:100%; height:100%; min-height:340px; border:0; filter:grayscale(.2) contrast(1.05); }

/* ================= FOOTER ================= */
.site-footer{ background:var(--navy-deep); color:#aab4c8; padding:56px 0 0; font-family:var(--font-ui); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; }
.footer-brand{ display:flex; gap:14px; align-items:center; margin-bottom:16px; }
.footer-brand img{ height:52px; }
.footer-brand .name{ font-family:var(--font-display-mr); color:var(--white); font-size:17px; }
.footer-brand .role{ font-size:11.5px; color:var(--saffron); letter-spacing:.05em; text-transform:uppercase; font-weight:700; }
.footer-about p{ font-size:13.6px; line-height:1.7; max-width:340px; }
.footer-col h4{ color:var(--white); font-size:13px; letter-spacing:.05em; text-transform:uppercase; margin-bottom:16px; }
.footer-col li{ margin-bottom:10px; font-size:14px; }
.footer-col a:hover{ color:var(--saffron); }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:grid;
  place-items:center; transition:.2s;
}
.footer-social a:hover{ background:var(--saffron); border-color:var(--saffron); color:var(--navy-deep); }
.footer-social svg{ width:15px; height:15px; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1); padding:20px 0; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:10px; font-size:12.5px;
}
.footer-bottom a{ font-weight:600; }
.footer-bottom a:hover{ color:var(--saffron); }
@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .about-photo{ max-width:380px; margin:0 auto; }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; }
  .section{ padding:60px 0; }
}

/* reveal on scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ================= GALLERY & NEWSLETTER PAGES ================= */
.page-hero{
  background:var(--navy); color:var(--white); padding:64px 0 54px; position:relative; overflow:hidden;
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero-title{ font-family:var(--font-display-mr); font-size:clamp(28px,4vw,44px); margin-top:12px; }
.breadcrumbs{ font-family:var(--font-ui); font-size:13px; color:#aab4c8; margin-top:16px; }
.breadcrumbs a:hover{ color:var(--saffron); }

.filters{
  display:flex; gap:10px; flex-wrap:wrap; margin:36px 0 6px;
}
.filter-btn{
  font-family:var(--font-ui); font-size:13px; font-weight:700; padding:9px 18px; border-radius:999px;
  border:1.5px solid var(--line); background:var(--white); color:var(--navy); transition:.2s;
}
.filter-btn:hover{ border-color:var(--saffron); }
.filter-btn.active{ background:var(--navy); border-color:var(--navy); color:var(--white); }

.gallery-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:30px;
}
.g-item{
  background:var(--white); border:1px solid var(--line); overflow:hidden; box-shadow:var(--shadow);
}
.g-photo{ aspect-ratio:4/3; overflow:hidden; background:var(--paper-dim); display:flex; align-items:center; justify-content:center; }
.g-photo img{ width:100%; height:100%; object-fit:contain; transition:transform .5s; }
.g-item:hover .g-photo img{ transform:scale(1.04); }
.g-body{ padding:16px 18px 20px; }
.g-cat{ font-family:var(--font-ui); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--saffron-deep); font-weight:700; }
.g-title{ font-family:var(--font-display-mr); font-size:16px; color:var(--navy); margin-top:7px; }
@media (max-width:860px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .gallery-grid{ grid-template-columns:1fr; } }

.news-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:30px;
}
.news-card{ background:var(--white); border:1px solid var(--line); box-shadow:var(--shadow); }
.news-photo{ aspect-ratio:3/4; overflow:hidden; border-bottom:4px solid var(--saffron); background:#fff; }
.news-photo img{ width:100%; height:100%; object-fit:contain; background:#fff; }
.news-body{ padding:18px 20px 22px; }
.news-source{ font-family:var(--font-ui); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--saffron-deep); font-weight:700; }
.news-title{ font-family:var(--font-display-mr); font-size:17px; color:var(--navy); margin-top:9px; line-height:1.4; }
.news-date{ font-family:var(--font-ui); font-size:12px; color:var(--ink-soft); margin-top:10px; }
@media (max-width:860px){ .news-grid{ grid-template-columns:1fr; max-width:440px; margin:30px auto 0; } }

/* lightbox */
.lightbox{
  position:fixed; inset:0; background:rgba(7,11,20,.92); z-index:1000; display:none;
  align-items:center; justify-content:center; padding:40px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width:min(90vw,1000px); max-height:85vh; object-fit:contain; border:3px solid var(--white); }
.lightbox-close{
  position:absolute; top:24px; right:28px; width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.1); color:var(--white); border:1px solid rgba(255,255,255,.3);
  display:grid; place-items:center;
}
.lightbox-close:hover{ background:var(--saffron); }
.lightbox-close svg{ width:18px; height:18px; }
