/* ============================================================
   ARIA CONCRETE — Lead Generation Site
   Built by Evic Media
   Brand: Black / White / Orange
   ============================================================ */

:root {
  --orange: #F47A20;
  --orange-dark: #D35F0C;
  --orange-soft: #FFF1E5;
  --black: #101114;
  --black-2: #1A1C21;
  --black-3: #24272E;
  --grey: #6E7480;
  --grey-light: #C9CDD4;
  --off-white: #F4F5F7;
  --white: #FFFFFF;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', -apple-system, 'Segoe UI', sans-serif;
  --font-logo: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --max: 1180px;
  --pad: 24px;
  --radius: 4px;
  --shadow: 0 18px 48px rgba(16, 17, 20, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  /* room for the sticky mobile call bar */
  padding-bottom: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 12px 16px;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: translateY(0); }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.5rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.lede { font-size: 1.12rem; color: var(--grey); max-width: 62ch; }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--dark .lede { color: var(--grey-light); }
.section--grey { background: var(--off-white); }
.section-head { max-width: 720px; margin-bottom: 52px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 17px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--ghost { border-color: var(--white); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--black); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--black-3); }
.btn--block { width: 100%; }
.btn--lg { padding: 20px 38px; font-size: 1.08rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--black-2);
  color: var(--grey-light);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar strong { color: var(--white); }
.topbar a:hover { color: var(--orange); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav a:hover { color: var(--orange); }

.header-cta { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.header-phone {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
  padding: 6px 10px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111210;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.5;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16,17,20,0.97) 0%, rgba(16,17,20,0.90) 32%, rgba(16,17,20,0.62) 62%, rgba(16,17,20,0.45) 100%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-top: clamp(56px, 7vw, 90px);
  padding-bottom: clamp(56px, 7vw, 90px);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--orange); display: block; }
.hero p {
  font-size: 1.15rem;
  color: var(--grey-light);
  max-width: 52ch;
  margin-bottom: 30px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.hero__trust span::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  margin-right: 8px;
}

/* ---------- Quote card (hero form) ---------- */
.quote-card {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quote-card__head {
  background: var(--orange);
  color: var(--white);
  padding: 20px 26px;
}
.quote-card__head h3 { font-size: 1.55rem; margin-bottom: 2px; }
.quote-card__head p { font-size: 0.9rem; opacity: 0.95; }
.quote-card form { padding: 24px 26px 26px; }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  padding: 13px 14px;
  border: 1.5px solid #D8DBE1;
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.field textarea { resize: vertical; min-height: 84px; }
.form-note {
  font-size: 0.82rem;
  color: var(--grey);
  text-align: center;
  margin-top: 12px;
}
.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
}
.form-status.is-error { display: block; background: #FDECEC; color: #A32020; }
.form-status.is-ok { display: block; background: var(--orange-soft); color: var(--orange-dark); }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Services ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Photo-led service card. Whole card is a link to the estimate form —
   six more routes into the one thing the page is trying to do. */
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #E3E6EA;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #D2D6DC; }

.svc-card__media {
  position: relative;
  flex: 0 0 auto;          /* never let the image shrink to make room */
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black-3);
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,17,20,0) 45%, rgba(16,17,20,0.82) 100%);
}
.svc-card__title {
  /* Anchors to .svc-card__media (position:relative). It must live INSIDE that
     div — as a sibling it anchors to .svc-card instead and lands on top of the
     CTA at the bottom of the card. */
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: balance;
}

.svc-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* 1 1 auto, not the `flex: 1` shorthand — that sets flex-basis to 0, so the
     body adds nothing to the card's intrinsic height and its content gets
     sliced by the card's overflow:hidden. */
  flex: 1 1 auto;
  padding: 20px 22px 22px;
}
.svc-card__body p { font-size: 0.97rem; color: var(--grey); margin: 0; }
.svc-card__cta {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.svc-card__cta::after {
  content: '→';
  transition: transform 0.2s ease;
  font-size: 1rem;
}
.svc-card:hover .svc-card__cta::after { transform: translateX(4px); }

/* stretched link keeps the whole card clickable without nesting anchors */
.svc-card__link::after { content: ''; position: absolute; inset: 0; z-index: 3; }
.svc-card__link:focus-visible::after { outline: 3px solid var(--orange); outline-offset: -3px; }

/* Supporting services — deliberately lighter weight than the six above */
.svc-more {
  margin-top: 30px;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid #E3E6EA;
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}
.svc-more__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-right: 4px;
}
.svc-more a {
  padding: 9px 16px;
  border: 1px solid #DDE0E5;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.93rem;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.svc-more a:hover { border-color: var(--orange); background: var(--orange); color: var(--white); }
.svc-more a:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* Plain text card — the "How We Work" section and the thank-you page.
   Deliberately quieter than .svc-card so the photo cards stay dominant. */
.svc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid #E3E6EA;
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc h3 {
  position: relative;
  padding-top: 14px;
  margin: 0;
}
.svc h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--orange);
}
.svc p { font-size: 0.98rem; color: var(--grey); margin: 0; }
.svc a { color: var(--orange); font-weight: 700; }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why__item { text-align: left; }
.why__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.why__item h3 { margin-bottom: 8px; }
.why__item p { font-size: 0.98rem; color: var(--grey-light); }

/* ---------- Process ---------- */
.step { position: relative; padding-left: 62px; }
.step__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: 0.98rem; color: var(--grey); }

/* ---------- Process image band ---------- */
.procband {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}
.procband figure {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-3);
}
.procband img { width: 100%; height: 100%; object-fit: cover; }
.procband figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 16px 12px;
  background: linear-gradient(180deg, rgba(16,17,20,0) 0%, rgba(16,17,20,0.9) 100%);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 620px) { .procband { grid-template-columns: 1fr; } }

/* ---------- Section background video ----------
   Used by any section that carries a looping backdrop. The section needs
   position:relative and its .wrap needs to sit above the media layer. */
.section--video { position: relative; overflow: hidden; }
.section--video > .wrap { position: relative; z-index: 2; }
.sec-media { position: absolute; inset: 0; z-index: 0; }
.sec-media video,
.sec-media .sec-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sec-media__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16,17,20,0.94) 0%, rgba(16,17,20,0.80) 28%,
                            rgba(16,17,20,0.80) 72%, rgba(16,17,20,0.94) 100%),
    linear-gradient(90deg, rgba(16,17,20,0.72) 0%, rgba(16,17,20,0.34) 55%, rgba(16,17,20,0.55) 100%);
}

/* Service areas turns dark when it carries a backdrop */
.section--video .areas li {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.24);
  color: var(--white);
  backdrop-filter: blur(3px);
}

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ba {
  background: var(--white);
  border: 1px solid #E3E6EA;
  border-radius: var(--radius);
  overflow: hidden;
}
.ba__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #E3E6EA; }
.ba__shot { position: relative; aspect-ratio: 9 / 10; background: var(--black-3); }
.ba__shot img { width: 100%; height: 100%; object-fit: cover; }
.ba__tag {
  position: absolute;
  top: 10px; left: 10px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ba__tag--before { background: rgba(16,17,20,0.88); color: var(--white); }
.ba__tag--after  { background: var(--orange); color: var(--white); }
.ba__caption {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.96rem;
}
.ba__caption span { display: block; color: var(--grey); font-weight: 500; font-size: 0.88rem; }
@media (max-width: 860px) { .ba-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--black-3);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(180deg, rgba(16,17,20,0) 0%, rgba(16,17,20,0.88) 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gallery .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--grey);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: repeating-linear-gradient(45deg, #24272E, #24272E 12px, #1F2228 12px, #1F2228 24px);
}

/* ---------- Areas ---------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.areas li {
  list-style: none;
  padding: 11px 20px;
  border: 1px solid #DDE0E5;
  background: var(--white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
}
.areas li::before { content: '📍'; margin-right: 8px; }

/* ---------- Reviews ---------- */
.review {
  background: var(--white);
  border: 1px solid #E3E6EA;
  border-radius: var(--radius);
  padding: 28px 26px;
}
.review__stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 12px; }
.review p { font-size: 1rem; margin-bottom: 16px; }
.review cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review cite span { display: block; color: var(--grey); font-weight: 500; letter-spacing: 0; text-transform: none; font-size: 0.88rem; }

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid #DDE0E5;
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--orange); font-size: 1.8rem; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin-top: 12px; color: var(--grey); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: clamp(52px, 7vw, 84px) 0;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { font-size: 1.1rem; margin-bottom: 26px; opacity: 0.96; }
.cta-band .btn--dark { border-color: var(--black); }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: var(--grey-light); padding: 64px 0 0; font-size: 0.95rem; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: var(--orange); }
.footer__logo img { height: 92px; width: auto; margin-bottom: 16px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0 96px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--grey);
}

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--black);
  border-top: 2px solid var(--orange);
  padding: 10px 12px;
  gap: 10px;
}
.callbar .btn { flex: 1; padding: 15px 10px; font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1150px) {
  .header-phone { display: none; }
  .nav { gap: 20px; }
}

@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .grid--4, .why { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--black-2);
    padding: 8px 24px 18px;
    border-bottom: 2px solid var(--orange);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-toggle { display: block; }
  .header .wrap { position: relative; }
}

@media (max-width: 860px) {
  .header .wrap { min-height: 72px; }
  .grid--3, .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--3, .grid--2, .grid--4, .why, .gallery, .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .callbar { display: flex; }
  .logo img { height: 42px; }
  .eyebrow { letter-spacing: 0.13em; font-size: 0.74rem; }
  /* the sticky bottom bar carries the CTAs on phones — free up header room */
  .header-cta .btn { display: none; }
  .header .wrap { min-height: 64px; }
  .topbar { text-align: center; }
  .topbar .wrap { justify-content: center; gap: 2px 12px; padding-top: 8px; padding-bottom: 8px; }
  .topbar .wrap span { flex: 1 1 100%; }
  .quote-card__head { padding: 18px 20px; }
  .quote-card form { padding: 20px; }
  /* keep content clear of the fixed call bar */
  .footer__bottom { padding-bottom: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}


/* ============================================================
   LIGHTBOX
   ============================================================ */

/* the trigger sits flush inside its figure — it must not add its own box */
.zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
}
.zoom img { width: 100%; height: 100%; object-fit: cover; }
.zoom:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }

.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb[hidden] { display: none; }
.lb__backdrop { position: absolute; inset: 0; background: rgba(9, 10, 12, 0.94); cursor: zoom-out; }

.lb__stage {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: min(94vw, 1500px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.lb__img {
  max-width: min(94vw, 1500px);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  background: var(--black-3);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.lb__img.is-ready { opacity: 1; }

.lb__caption {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--grey-light);
  font-size: 0.95rem;
  text-align: center;
}
.lb__count {
  color: var(--grey);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.lb__close,
.lb__nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.18s ease, border-color 0.18s ease;
  line-height: 1;
}
.lb__close:hover, .lb__nav:hover { background: var(--orange); border-color: var(--orange); }
.lb__close:focus-visible, .lb__nav:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.lb__close { top: 20px; right: 22px; width: 46px; height: 46px; font-size: 1.9rem; }
.lb__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.2rem; }
.lb__nav--prev { left: 22px; }
.lb__nav--next { right: 22px; }
.lb__nav[disabled] { opacity: 0.28; cursor: default; }
.lb__nav[disabled]:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }

.lb__spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: lb-spin 0.7s linear infinite;
  opacity: 0;
  pointer-events: none;
}
.lb__spinner.is-on { opacity: 1; }
@keyframes lb-spin { to { transform: rotate(360deg); } }

body.lb-open { overflow: hidden; }

@media (max-width: 700px) {
  .lb__nav { width: 44px; height: 44px; font-size: 1.8rem; }
  .lb__nav--prev { left: 8px; }
  .lb__nav--next { right: 8px; }
  .lb__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lb__img { max-height: 68vh; }
}

@media (prefers-reduced-motion: reduce) {
  .lb__img { transition: none; }
  .lb__spinner { animation-duration: 2s; }
}
