/* =========================================================================
   Simple Acoustics — design system
   Lightweight, dependency-free. Brand: slate grey + warm orange.
   ========================================================================= */

:root {
  --slate-900: #2f373b;
  --slate-700: #4c5a60;
  --slate-500: #6b7a80;
  --slate-300: #aab4b8;
  --slate-100: #eef1f2;
  --slate-50:  #f6f8f9;
  --orange:    #e27d27;
  --orange-dark: #c4651a;
  --amber:     #f3a130;
  --amber-dark:#e08e1e;
  --cream:     #f4ecdd;
  --cream-line:#e7dcc6;
  --white: #ffffff;
  --ink: #2f373b;
  --muted: #5e6a70;

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 6px 24px rgba(47,55,59,.10);
  --shadow-lg: 0 18px 48px rgba(47,55,59,.16);
  --ease: cubic-bezier(.4,0,.2,1);

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--slate-900); line-height: 1.2; margin: 0 0 .6em; font-weight: 600; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -9999px; background: var(--orange); color:#fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .8em 1.5em; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: all .2s var(--ease);
  text-decoration: none; line-height: 1;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); text-decoration: none; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--slate-700); border-color: var(--slate-300); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange-dark); text-decoration: none; }
.btn--light { background: #fff; color: var(--slate-900); }
.btn--light:hover { background: var(--slate-100); text-decoration: none; }
.btn--lg { padding: 1em 2em; font-size: 1.05rem; }

/* ---------- Header ---------- */
.topbar { background: var(--amber); color: #fff; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; }
.topbar__phone { color: #fff; font-weight: 600; }
.topbar__phone:hover { color: var(--slate-900); text-decoration: none; }
.topbar__hours { color: rgba(255,255,255,.9); }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--cream); box-shadow: 0 1px 0 var(--cream-line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.brand__logo { width: auto; height: 56px; }

.primary-nav { margin-left: auto; }
.nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link { display: block; padding: .6em .9em; color: var(--slate-700); font-family: var(--font-head); font-weight: 500; font-size: .98rem; border-radius: var(--radius-sm); }
.nav__link:hover, .nav__link.is-active { color: var(--orange-dark); background: rgba(255,255,255,.6); text-decoration: none; }
.nav__cta { margin-left: 8px; }

.has-children > .nav__link::after { content: "▾"; font-size: .7em; margin-left: .35em; color: var(--slate-500); }
.subnav {
  position: absolute; top: 100%; left: 0; min-width: 270px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  list-style: none; margin: 0; padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .2s var(--ease); border: 1px solid var(--slate-100);
}
.nav__item.has-children:hover .subnav,
.nav__item.has-children:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a { display: block; padding: .55em .75em; border-radius: 6px; color: var(--slate-700); font-size: .92rem; }
.subnav a:hover, .subnav a.is-active { background: var(--slate-50); color: var(--orange-dark); text-decoration: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--slate-700); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--slate { background: var(--slate-50); }
.section--dark { background: var(--slate-900); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .6em; }
.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(135deg, var(--slate-900) 0%, #3a464b 60%, var(--slate-700) 100%); color: #fff; overflow: hidden; padding: 96px 0; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(226,125,39,.35), transparent 70%); border-radius: 50%; }
.hero__inner { position: relative; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,.88); margin-bottom: 1.6em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Hero mosaic (matches live site tile layout) ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.heromosaic {
  display: grid; gap: 8px; background: var(--slate-900); padding: 0;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: clamp(440px, 62vh, 600px);
}
.herotile {
  position: relative; overflow: hidden; display: flex; align-items: flex-end;
  text-decoration: none; color: #fff; isolation: isolate;
}
.herotile--lead { grid-row: 1 / span 2; }
.herotile:hover { text-decoration: none; }

.herotile__img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease);
}
.herotile::after { /* darkening overlay */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,34,37,.15) 0%, rgba(28,34,37,.30) 45%, rgba(28,34,37,.82) 100%);
  transition: background .3s var(--ease);
}
.herotile:hover .herotile__img { transform: scale(1.07); }
.herotile:hover::after { background: linear-gradient(180deg, rgba(28,34,37,.25) 0%, rgba(28,34,37,.45) 45%, rgba(28,34,37,.88) 100%); }

.herotile__body { position: relative; padding: 32px 34px; max-width: 92%; }
.herotile--lead .herotile__body { padding: 44px 48px; }
.herotile__title {
  display: block; font-family: var(--font-head); font-weight: 600; color: #fff;
  line-height: 1.18; font-size: 1.3rem; text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.herotile--lead .herotile__title { font-size: clamp(1.9rem, 3.2vw, 3rem); }
.herotile__sub { display: block; color: rgba(255,255,255,.92); margin-top: .5em; font-size: 1rem; }
.herotile--lead .herotile__sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.herotile__btn { margin-top: 22px; pointer-events: none; }

@media (max-width: 760px) {
  .heromosaic { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .herotile { min-height: 300px; }
  .herotile--lead { grid-row: auto; min-height: 380px; }
  .herotile__title { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) { .herotile__img { transition: none; } }

/* ---------- Feature strip (under hero) ---------- */
.features { padding: 30px 0; background: #fff; border-bottom: 1px solid var(--slate-100); }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { display: flex; align-items: center; justify-content: center; gap: 14px; text-align: left; }
.feature svg { width: 34px; height: 34px; flex: none; stroke: var(--slate-500); }
.feature span { font-family: var(--font-head); font-weight: 600; color: var(--slate-900); font-size: 1.02rem; line-height: 1.25; }
@media (max-width: 900px) { .features__grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; } }
@media (max-width: 480px) { .features__grid { grid-template-columns: 1fr; } .feature { justify-content: flex-start; } }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.card__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(226,125,39,.12); color: var(--orange-dark); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }

/* split (text + image) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ---------- Lists ---------- */
.ticks { list-style: none; margin: 0 0 1.4em; padding: 0; }
.ticks li { display: flex; align-items: flex-start; gap: .7em; margin-bottom: .6em; }
.ticks li::before { content: "✓"; flex: none; margin-top: .18em; width: 1.4em; height: 1.4em; color: #fff; background: var(--orange); border-radius: 50%; display: inline-grid; place-items: center; font-size: .72rem; font-weight: 700; line-height: 1; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: .88rem; color: var(--muted); padding: 18px 0 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--orange-dark); }

/* ---------- Page header ---------- */
.page-head { background: var(--slate-50); padding: 52px 0; border-bottom: 1px solid var(--slate-100); }
.page-head h1 { margin: .2em 0 .2em; }
.page-head p { color: var(--muted); font-size: 1.1rem; margin: 0; max-width: 680px; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border-left: 4px solid var(--orange); }
.quote blockquote { margin: 0 0 16px; font-size: 1.05rem; color: var(--slate-700); font-style: italic; }
.quote cite { font-style: normal; font-weight: 600; color: var(--slate-900); font-family: var(--font-head); }
.quote cite span { display: block; font-weight: 400; font-size: .9rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 620px; margin: 0 auto 1.6em; font-size: 1.12rem; }

/* ---------- Forms ---------- */
.form { background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form__row { margin-bottom: 18px; }
.form label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .92rem; margin-bottom: 6px; color: var(--slate-700); }
.form label .req { color: var(--orange); }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--slate-300); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .15s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(226,125,39,.15); }
.form textarea { min-height: 130px; resize: vertical; }
.form .hp { position: absolute; left: -9999px; }
.notice { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: .96rem; }
.notice--ok { background: #e7f6ec; color: #1c6b39; border: 1px solid #b6e2c4; }
.notice--err { background: #fdecea; color: #a02b1a; border: 1px solid #f3c4bd; }

/* ---------- Contact details cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.contact-cards .card { text-align: center; }
.contact-cards .card__icon { margin: 0 auto 14px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .grid--3 { grid-template-columns: repeat(2,1fr); }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 52px 0; }
  .topbar__hours { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: #fff; box-shadow: var(--shadow-lg); padding: 90px 22px 30px;
    transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto;
  }
  .primary-nav.open { transform: translateX(0); }
  .nav { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { padding: .9em .8em; font-size: 1.05rem; }
  .subnav { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 14px; }
  .nav__cta { margin: 16px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(47,55,59,.45); opacity: 0; visibility: hidden; transition: .25s; z-index: 99; }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-900); color: var(--slate-300); margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 60px 24px; }
.footer__logo { height: 54px; width: auto; margin-bottom: 18px; }
.footer__tagline { color: #fff; font-family: var(--font-head); font-weight: 500; margin-bottom: .4em; }
.footer__region { font-size: .9rem; color: var(--slate-300); }
.footer__heading { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: 9px; }
.footer__list a { color: var(--slate-300); font-size: .94rem; }
.footer__list a:hover { color: var(--orange); text-decoration: none; }
.footer__contact strong { color: #fff; display: inline-block; width: 1.6em; }
.footer__col .btn { margin-top: 14px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.10); font-size: .85rem; }
.footer__bar .container { padding-top: 18px; padding-bottom: 18px; }
.footer__bar p { margin: 0; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 30px; } }

/* ===========================================================================
   Case studies, articles, pods & gallery (added for new pages)
   =========================================================================== */

/* Article / case study body — full width with floated inline images */
.article { max-width: 100%; margin: 0; }
.article::after { content: ""; display: block; clear: both; }
.article__meta { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.article > p { color: var(--slate-700); font-size: 1.06rem; line-height: 1.75; }
.article__hero { border-radius: var(--radius); box-shadow: var(--shadow-lg); margin: 0 0 32px; width: 100%; }
.article h2 { margin-top: 1.6em; font-size: 1.55rem; clear: both; }
.article h2 .dot { color: var(--orange); }
.article .lead { max-width: 60ch; }

/* Floated inline figures (keep small images crisp, wrap text around) */
.article__figure { margin: 6px 0 20px; width: clamp(240px, 32%, 360px); }
.article__figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.article__figure--right { float: right; margin-left: 34px; }
.article__figure--left  { float: left;  margin-right: 34px; }
.article__figcaption { font-size: .85rem; color: var(--muted); margin: 10px 0 0; font-style: italic; }

.article__pull { clear: both; background: var(--slate-50); border-left: 4px solid var(--orange); border-radius: var(--radius-sm); padding: 22px 26px; margin: 30px 0; font-style: italic; color: var(--slate-700); }
.article__author { font-family: var(--font-head); font-weight: 600; color: var(--slate-900); margin-top: 1.5em; }
.article__author span { display: block; font-weight: 400; color: var(--muted); font-size: .92rem; }

/* Author bio — headshot left of text on desktop */
.article__bio { clear: both; display: flex; gap: 26px; align-items: flex-start; background: var(--slate-50); border-left: 4px solid var(--orange); border-radius: var(--radius-sm); padding: 26px 28px; margin: 2.4em 0 0; }
.article__bio__photo { flex: none; width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.article__bio p { color: var(--slate-700); }
.article__bio p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .article__figure { float: none; width: 100%; margin: 16px 0; }
  .article__bio { flex-direction: column; gap: 16px; }
}

/* Case study cards (index) */
.cs-card { background:#fff; border:1px solid var(--slate-100); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s var(--ease), box-shadow .2s var(--ease); display:flex; flex-direction:column; }
.cs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cs-card a.cs-card__imglink { display:block; aspect-ratio: 16/9; overflow:hidden; }
.cs-card img { width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.cs-card:hover img { transform: scale(1.05); }
.cs-card__body { padding: 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.cs-card__tag { font-size:.75rem; text-transform:uppercase; letter-spacing:.1em; color:var(--orange); font-weight:600; font-family:var(--font-head); }
.cs-card__body h3 { margin:0; font-size:1.15rem; line-height:1.3; }
.cs-card__body h3 a { color:var(--slate-900); }
.cs-card__body h3 a:hover { color:var(--orange-dark); text-decoration:none; }
.cs-card__excerpt { color:var(--muted); font-size:.95rem; margin:0; }
.cs-card__more { margin-top:auto; font-family:var(--font-head); font-weight:600; font-size:.9rem; color:var(--orange-dark); }

/* Pods page */
.pods-hero { position: relative; background: var(--slate-900); background-size: cover; background-position: center right; color:#fff; padding: 90px 0; }
.pods-hero h1 { color:#fff; }
.pods-hero p.lead { color: rgba(255,255,255,.9); }
.chip-row { display:flex; flex-wrap:wrap; gap:12px; margin: 26px 0 0; }
.chip { background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); color:#fff; padding:.55em 1em; border-radius:999px; font-size:.92rem; font-family:var(--font-head); font-weight:500; }
.persona-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.persona { text-align:center; }
.persona img { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom:16px; aspect-ratio:1/1; object-fit:cover; width:100%; }
.persona h3 { font-size:1.1rem; margin-bottom:.3em; }
.persona p { color:var(--muted); font-size:.94rem; margin:0; }
.pod-gallery { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.pod-gallery .lead-img { grid-column: span 2; grid-row: span 2; }
.pod-gallery img { width:100%; height:100%; object-fit:cover; border-radius:var(--radius-sm); box-shadow:var(--shadow); }
@media (max-width:900px){ .persona-grid{grid-template-columns:repeat(2,1fr);} .pod-gallery{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .persona-grid{grid-template-columns:1fr;} }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom:1px solid var(--slate-100); }
.faq summary { cursor:pointer; list-style:none; padding: 18px 0; font-family:var(--font-head); font-weight:600; color:var(--slate-900); display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after { content:"+"; color:var(--orange); font-size:1.4rem; line-height:1; transition:transform .2s; }
.faq details[open] summary::after { content:"\2212"; }
.faq details p { color:var(--muted); padding: 0 0 18px; margin:0; }

/* Gallery grid + lightbox */
.gallery-grid { columns: 4 240px; column-gap: 12px; }
.gallery-grid button { display:block; width:100%; margin:0 0 12px; padding:0; border:0; background:none; cursor:zoom-in; border-radius:var(--radius-sm); overflow:hidden; box-shadow:var(--shadow); line-height:0; }
.gallery-grid img { width:100%; height:auto; transition: transform .4s var(--ease), filter .2s; }
.gallery-grid button:hover img { transform: scale(1.04); filter: brightness(1.05); }
.lightbox { position:fixed; inset:0; background:rgba(20,24,26,.92); display:none; align-items:center; justify-content:center; z-index:1000; padding:24px; }
.lightbox.open { display:flex; }
.lightbox img { max-width:92vw; max-height:88vh; border-radius:8px; box-shadow:0 20px 60px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav { position:absolute; background:rgba(255,255,255,.14); color:#fff; border:0; width:52px; height:52px; border-radius:50%; font-size:1.6rem; cursor:pointer; display:grid; place-items:center; }
.lightbox__close { top:20px; right:20px; }
.lightbox__nav--prev { left:20px; top:50%; transform:translateY(-50%); }
.lightbox__nav--next { right:20px; top:50%; transform:translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background:var(--orange); }
@media (max-width:560px){ .lightbox__nav{width:44px;height:44px;} }
