/* ===============================================================
   Mighty Ducks Plumbing & Remodel — base styles
   Black + Yellow brand. Mobile-first. PWA / app-like.
   =============================================================== */

:root {
  /* Brand */
  --ink: #0A0A0A;
  --ink-2: #161616;
  --ink-3: #1f1f1f;
  --line: #2a2a2a;
  --line-soft: #e6e6e6;
  --paper: #FAFAF7;
  --paper-2: #f1f0ec;
  --yellow: #FFCB05;
  --yellow-deep: #F4B400;
  --yellow-soft: #FFE38A;
  --text: #111111;
  --muted: #5a5a5a;
  --on-dark: #f4f4f0;
  --on-dark-muted: #b3b2ab;

  /* Type */
  --display: "Clash Display", "Satoshi", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --body: "Satoshi", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Sizes (clamp = fluid) */
  --t-hero: clamp(2.6rem, 7vw, 5.5rem);
  --t-h1:   clamp(2rem, 4.6vw, 3.6rem);
  --t-h2:   clamp(1.6rem, 3.6vw, 2.6rem);
  --t-h3:   1.25rem;
  --t-base: 1rem;
  --t-sm:   0.9rem;
  --t-xs:   0.78rem;

  /* Layout */
  --pad-x: clamp(1.1rem, 4vw, 3rem);
  --section: clamp(4rem, 8vw, 7rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* Shadow */
  --shadow-1: 0 1px 2px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
  --shadow-2: 0 4px 16px rgba(0,0,0,.12), 0 24px 60px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  font-size: var(--t-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
[hidden] { display: none !important; }

/* iOS safe-area */
.botnav { padding-bottom: env(safe-area-inset-bottom); }

/* ============== TYPOGRAPHY ============== */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,203,5,0.08);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}
.eyebrow--dark { color: var(--ink); background: rgba(0,0,0,0.08); }

.section__head {
  max-width: 880px;
  padding: 0 var(--pad-x);
  margin: 0 auto var(--pad-x);
  text-align: center;
}
.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--t-h2);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0.6rem 0 0.4rem;
}
.section__lede { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.btn--lg { padding: 1.05rem 1.6rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--solid {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 26px -8px rgba(255,203,5,0.7), inset 0 -2px 0 rgba(0,0,0,0.06);
}
.btn--solid:hover { transform: translateY(-1px); background: var(--yellow-deep); }
.btn--ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); }
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0,0,0,0.25);
}
.btn--ghost-dark:hover { background: rgba(0,0,0,0.06); }
.btn--outline {
  background: rgba(0,0,0,0.4);
  color: white;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn--outline:hover { background: rgba(0,0,0,0.6); }

/* ============== TOP NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem var(--pad-x);
  background: rgba(10,10,10,0.92);
  color: var(--on-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__brand {
  display: flex; align-items: center; gap: 0.7rem;
  margin-right: auto;
}
.nav__brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: white;
  flex: none;
  box-shadow: 0 4px 12px rgba(255,203,5,0.28);
  overflow: hidden;
}
.nav__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.nav__brand-text strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav__brand-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--on-dark-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav__links { display: none; gap: 1.6rem; }
.nav__links a {
  font-size: 0.93rem;
  color: var(--on-dark);
  opacity: 0.85;
  transition: opacity 120ms ease;
  position: relative;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform 200ms ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 0.5rem; }
.nav__cta .btn--ghost { padding: 0.6rem 1rem; font-size: 0.85rem; }
.nav__cta .btn--solid { padding: 0.7rem 1.05rem; font-size: 0.9rem; }
@media (max-width: 720px) {
  .nav__cta .btn--solid { display: none; }
}
@media (min-width: 980px) {
  .nav__links { display: flex; }
}
@media (min-width: 980px) and (max-width: 1120px) {
  .nav__links { gap: 1rem; }
  .nav__links a { font-size: 0.86rem; }
  .nav__brand-text small { letter-spacing: 0.11em; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: clamp(600px, 78vh, 760px);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 5.8rem var(--pad-x) 4.5rem;
  background:
    radial-gradient(circle at 74% 18%, rgba(255,203,5,0.42) 0 14%, transparent 33%),
    radial-gradient(circle at 15% 84%, rgba(255,203,5,0.2) 0 13%, transparent 34%),
    linear-gradient(112deg, #030303 0%, #151515 45%, #050505 100%);
}
.hero--brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(255,203,5,0.12), transparent 28%, rgba(255,203,5,0.1) 72%, transparent),
    linear-gradient(90deg, rgba(255,203,5,0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 100%);
  background-size: auto, 58px 58px, 58px 58px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}
.hero--brand::after {
  content: none;
  position: absolute;
  right: -0.08em;
  bottom: -0.22em;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(5rem, 15vw, 14rem);
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.035);
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
}
.hero__media,
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media { z-index: -2; }
.hero__media img { z-index: -2; filter: saturate(0.95) contrast(1.05); object-position: center 30%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 35%, rgba(10,10,10,0.85) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.1) 60%);
  z-index: -1;
}
.hero__content { max-width: 980px; }
.hero__content--brand {
  width: min(1320px, 100%);
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.6rem);
}
.hero__copy {
  min-width: 0;
  position: relative;
}
.hero__copy::before {
  content: "8K ACRYLIC BATH SPECIAL";
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: rgba(255,203,5,0.68);
  font-family: var(--display);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--display);
  font-size: var(--t-hero);
  line-height: 0.98;
  letter-spacing: 0;
  word-spacing: 0.04em;
  font-weight: 700;
  max-width: 12ch;
  margin: 0 0 1.1rem;
  text-shadow: 0 2px 22px rgba(0,0,0,0.35);
}
.hero__title .accent {
  display: inline-block;
  color: var(--yellow);
  letter-spacing: 0.005em;
  word-spacing: 0.08em;
}
.hero__lede {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 0 1.5rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.5rem; }
.hero__chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem;
  padding: 0; margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.hero__chips li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__chips li::before {
  content: ""; width: 6px; height: 6px; border-radius: 99px; background: var(--yellow);
}
.hero__offer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 720px;
  margin-top: 1.15rem;
}
.hero__offer div {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045)),
    rgba(0,0,0,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.hero__offer span {
  color: rgba(255,255,255,0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__offer strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero__offer small {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  line-height: 1.25;
}
.hero__scroll {
  position: absolute; right: var(--pad-x); bottom: 1.4rem;
  width: 28px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  display: none;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 7px;
  transform: translateX(-50%);
  width: 2px; height: 8px; background: var(--yellow);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot { 0%,100% { top: 7px; opacity: 1; } 50% { top: 22px; opacity: 0.3; } }
@media (min-width: 768px) { .hero__scroll { display: block; } }
.hero__brand-card {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.98), rgba(255,255,255,0.78)),
    white;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: clamp(22px, 4vw, 34px);
  padding: clamp(0.85rem, 2vw, 1.35rem);
  box-shadow:
    0 28px 90px rgba(0,0,0,0.45),
    0 0 70px rgba(255,203,5,0.16),
    inset 0 0 0 1px rgba(0,0,0,0.08);
  transform: rotate(1deg);
}
.hero__brand-card::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px dashed rgba(255,203,5,0.35);
  border-radius: inherit;
  transform: rotate(-3deg);
  pointer-events: none;
}
.hero__brand-card::after {
  content: "Louisville • KY";
  position: absolute;
  top: 1.6rem;
  right: -0.6rem;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}
.hero__showcase {
  display: grid;
  gap: 0.7rem;
}
.hero__main-photo {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.hero__main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.32), transparent 48%),
    linear-gradient(115deg, transparent 0 46%, rgba(255,255,255,0.2) 50%, transparent 56%);
  background-size: auto, 240% 100%;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: hero-shine 5.2s ease-in-out infinite;
}
.hero__main-photo > img:first-child {
  width: 100%;
  height: clamp(440px, 58vh, 660px);
  max-height: none;
  object-fit: cover;
  object-position: center 54%;
  display: block;
  background: white;
  transform: scale(1.015);
  animation: hero-photo-settle 900ms cubic-bezier(.2,.7,.2,1) both;
}
.hero__main-photo > img:first-child.is-swapping {
  animation: hero-slide-in 360ms cubic-bezier(.2,.7,.2,1) both;
}
.hero__photo-tag {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  background: rgba(0,0,0,0.72);
  color: var(--yellow);
  border: 1px solid rgba(255,203,5,0.42);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero__photo-tag::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,203,5,0.16);
}
.hero__logo-sticker {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: clamp(92px, 11vw, 138px);
  height: auto;
  padding: 0.45rem;
  border-radius: 16px;
  background: white;
  border: 2px solid var(--ink);
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
  transform: rotate(-3deg);
}
.hero__slide-copy {
  position: absolute;
  z-index: 3;
  left: 1rem;
  right: clamp(8rem, 15vw, 10.5rem);
  bottom: 1rem;
  display: grid;
  gap: 0.16rem;
  padding: 0.85rem 0.95rem;
  color: white;
  background: linear-gradient(135deg, rgba(0,0,0,0.78), rgba(0,0,0,0.44));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.26);
  backdrop-filter: blur(10px);
}
.hero__slide-copy span {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__slide-copy strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero__slide-copy small {
  color: rgba(255,255,255,0.84);
  font-size: 0.78rem;
  line-height: 1.35;
}
.hero__carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__carousel-controls span {
  flex: 1;
  text-align: center;
  color: rgba(10,10,10,0.62);
}
.hero__arrow {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(0,0,0,0.16);
  border-radius: 999px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  transition: transform 140ms ease, background 140ms ease;
}
.hero__arrow:hover {
  transform: translateY(-1px);
  background: #000;
}
.hero__mini-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}
.hero__thumb {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 104px;
  border-radius: 16px;
  background: var(--ink);
  border: 2px solid rgba(0,0,0,0.12);
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
  animation: hero-thumb-rise 650ms cubic-bezier(.2,.7,.2,1) both;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.hero__thumb:nth-child(2) { animation-delay: 90ms; }
.hero__thumb:nth-child(3) { animation-delay: 180ms; }
.hero__thumb:nth-child(4) { animation-delay: 270ms; }
.hero__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.72), transparent 62%);
}
.hero__thumb:hover,
.hero__thumb.is-active {
  transform: translateY(-2px);
  border-color: var(--yellow);
  box-shadow: 0 16px 34px rgba(0,0,0,0.2), 0 0 0 2px rgba(255,203,5,0.2);
}
.hero__mini-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__thumb-img--level {
  object-position: center 72%;
}
.hero__thumb span {
  position: absolute;
  z-index: 1;
  left: 0.55rem;
  bottom: 0.45rem;
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__brand-note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 0.85rem;
  color: var(--ink);
  padding: 0.1rem 0.1rem 0;
}
.hero__brand-note strong {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__brand-note span {
  max-width: 210px;
  font-size: 0.8rem;
  line-height: 1.3;
  color: rgba(10,10,10,0.72);
}
@keyframes hero-photo-settle {
  from { transform: scale(1.08); filter: saturate(0.85) contrast(0.95); }
  to { transform: scale(1.015); filter: saturate(1) contrast(1); }
}
@keyframes hero-thumb-rise {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hero-slide-in {
  from { opacity: 0.62; transform: scale(1.045); filter: saturate(0.88) contrast(0.96); }
  to { opacity: 1; transform: scale(1.015); filter: saturate(1) contrast(1); }
}
@keyframes hero-shine {
  0%, 58% { background-position: 0 0, 120% 0; opacity: 0.52; }
  86%, 100% { background-position: 0 0, -80% 0; opacity: 0.18; }
}
@media (max-width: 860px) {
  .hero {
    padding-top: 4rem;
    align-items: flex-start;
    min-height: auto;
  }
  .hero__content--brand {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hero__brand-card {
    order: -1;
    max-width: 460px;
    margin: 0 auto;
    transform: rotate(0deg);
  }
  .hero__main-photo > img:first-child { height: 360px; }
  .hero__brand-note { align-items: flex-start; flex-direction: column; gap: 0.25rem; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero__lede { font-size: 1rem; }
}
@media (max-width: 640px) {
  .hero {
    padding-top: 1.45rem;
    padding-left: 0;
    padding-right: 0;
  }
  .hero__content--brand {
    width: 100%;
  }
  .hero__brand-card {
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .hero__brand-card::before {
    content: none;
  }
  .hero__brand-card::after {
    top: 0.8rem;
    right: 0.75rem;
    font-size: 0.58rem;
    box-shadow: 0 10px 22px rgba(0,0,0,0.26);
  }
  .hero__showcase {
    width: 100%;
    gap: 0.42rem;
  }
  .hero__offer { grid-template-columns: 1fr; }
  .hero__offer div {
    min-height: auto;
    gap: 0.35rem;
  }
  .hero__main-photo {
    border-radius: 0;
    box-shadow: none;
  }
  .hero__main-photo > img:first-child {
    height: 206px;
    max-height: none;
    object-position: center 58%;
  }
  .hero__logo-sticker {
    width: 72px;
    right: 0.6rem;
    bottom: 0.6rem;
    border-radius: 12px;
    padding: 0.34rem;
  }
  .hero__photo-tag {
    left: 0.6rem;
    top: 0.6rem;
    font-size: 0.58rem;
    padding: 0.34rem 0.5rem;
  }
  .hero__slide-copy {
    left: 0.55rem;
    right: 5.45rem;
    bottom: 0.55rem;
    padding: 0.5rem 0.58rem;
    border-radius: 12px;
    gap: 0.08rem;
  }
  .hero__slide-copy span {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }
  .hero__slide-copy strong {
    font-size: 0.72rem;
  }
  .hero__slide-copy small {
    display: none;
  }
  .hero__carousel-controls {
    display: none;
  }
  .hero__mini-row {
    gap: 0.32rem;
    padding: 0 0.45rem;
  }
  .hero__thumb,
  .hero__mini-row img {
    min-height: 0;
  }
  .hero__thumb {
    height: 48px;
    border-radius: 10px;
  }
  .hero__mini-row img {
    height: 100%;
  }
  .hero__thumb span {
    left: 0.4rem;
    bottom: 0.35rem;
    font-size: 0.48rem;
  }
  .hero__brand-note {
    display: none;
  }
  .hero__copy::before {
    margin-bottom: 0.45rem;
  }
  .hero__copy {
    padding-inline: var(--pad-x);
  }
  .hero__title {
    margin-bottom: 0.75rem;
    font-size: clamp(2.15rem, 10.4vw, 3.35rem);
    line-height: 0.94;
  }
  .hero__lede {
    line-height: 1.45;
    margin-bottom: 0.82rem;
    font-size: 0.92rem;
  }
  .hero__actions {
    margin-bottom: 0.78rem;
    gap: 0.48rem;
  }
  .hero__actions .btn {
    min-height: 50px;
    padding-inline: 1.05rem;
  }
}

/* ============== MARQUEE STRIP ============== */
.strip {
  display: none;
  background: var(--ink);
  color: var(--yellow);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  min-height: 54px;
  align-items: center;
}
.strip__track {
  display: flex; align-items: center; gap: 1.6rem;
  padding: 1.05rem 0 1rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.1rem;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.strip__track span { flex: none; }
.strip__track span:nth-child(odd) { color: var(--yellow); }
.strip__track span:nth-child(even) { color: rgba(255,255,255,0.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ============== 8K SPECIAL ============== */
.special {
  background: var(--yellow);
  color: var(--ink);
  padding: var(--section) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.special::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.18) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.15;
  pointer-events: none;
}
.special__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
@media (min-width: 980px) {
  .special__inner { grid-template-columns: 1.05fr 1fr; }
}
.special__title {
  font-family: var(--display); font-weight: 700;
  font-size: var(--t-h1);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0.6rem 0 1rem;
}
.special__title .hl {
  display: inline-block;
  background: var(--ink); color: var(--yellow);
  padding: 0.05em 0.25em;
  border-radius: 8px;
  transform: skew(-3deg);
}
.special__lede { font-size: 1.1rem; line-height: 1.55; max-width: 56ch; }
.special__list {
  list-style: none; padding: 0; margin: 1.6rem 0;
  display: grid; grid-template-columns: 1fr; gap: 0.65rem;
  border-top: 1.5px solid rgba(0,0,0,0.18);
  padding-top: 1.2rem;
}
@media (min-width: 560px) { .special__list { grid-template-columns: 1fr 1fr; } }
.special__list li {
  display: flex; gap: 0.7rem; align-items: baseline;
  font-weight: 500;
}
.special__list li span {
  font-family: var(--display);
  font-weight: 700; font-size: 0.85rem;
  background: var(--ink); color: var(--yellow);
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px;
  flex: none;
}
.special__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.5rem; }
.special__fine { font-size: 0.85rem; color: rgba(0,0,0,0.65); margin-top: 1rem; max-width: 60ch; }
.special__exclusions {
  display: grid;
  gap: 0.25rem;
  margin: -0.4rem 0 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34);
  max-width: 62ch;
}
.special__exclusions strong {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.special__exclusions span {
  color: rgba(0,0,0,0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.special__visual { position: relative; }
.special__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  box-shadow: var(--shadow-2);
}
.special__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.special__photo:hover img { transform: scale(1.03); }

.special__price-card {
  position: absolute;
  right: -8px; bottom: -22px;
  background: var(--ink); color: var(--yellow);
  padding: 1.1rem 1.4rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  border: 3px solid var(--yellow);
  min-width: 200px;
  text-align: left;
}
.price-card__label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
}
.price-card__amount {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-card__amount .dollar { color: var(--yellow); margin-right: 4px; font-size: 0.7em; vertical-align: top; }
.price-card__sub { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 0.4rem; }
@media (min-width: 980px) {
  .special__price-card { right: 12px; bottom: 24px; }
}

/* ============== PRICE ESTIMATOR ============== */
.estimate {
  background:
    radial-gradient(circle at 12% 8%, rgba(255,203,5,0.2), transparent 28%),
    var(--paper);
  padding: var(--section) var(--pad-x);
  color: var(--ink);
}
.estimate__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}
.estimate__form {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 3vw, 2rem);
  box-shadow: var(--shadow-1);
}
.estimate__checks {
  border: 1.5px dashed rgba(10,10,10,0.18);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0.2rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.estimate__checks legend {
  padding: 0 0.4rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.estimate__checks label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink);
  line-height: 1.35;
}
.estimate__checks input {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--yellow);
}
.estimate__result {
  position: sticky;
  top: 92px;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.estimate__result::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(255,203,5,0.28), transparent 28%),
    linear-gradient(135deg, transparent, rgba(255,203,5,0.06));
  pointer-events: none;
}
.estimate__result > * { position: relative; }
.estimate__label {
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
#estimateAmount {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;
  margin: 0.6rem 0 1rem;
  color: white;
}
.estimate__bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  margin-bottom: 1rem;
}
.estimate__bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), #fff3a6);
  transition: width 220ms ease;
}
#estimateSummary {
  color: rgba(255,255,255,0.82);
  margin: 0 0 1rem;
}
.estimate__factors {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.estimate__factors li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
}
.estimate__factors li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--yellow);
  flex: none;
  margin-top: 0.55rem;
}
.estimate__fine {
  margin: 0.9rem 0 0;
  color: var(--on-dark-muted);
  font-size: 0.82rem;
}
@media (max-width: 900px) {
  .estimate__inner { grid-template-columns: 1fr; }
  .estimate__result { position: relative; top: auto; }
}

/* ============== SERVICES ============== */
.services {
  padding: var(--section) var(--pad-x);
  background: var(--paper);
}
.services__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.svc-card {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem;
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.svc-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 70%, rgba(255,203,5,0.08) 100%);
  pointer-events: none;
}
.svc-card:hover { transform: translateY(-3px); border-color: var(--yellow); box-shadow: var(--shadow-1); }
.svc-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--ink); color: var(--yellow);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.svc-card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 1.2rem; margin: 0 0 0.4rem;
}
.svc-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ============== VIDEOS ============== */
.videos {
  padding: var(--section) var(--pad-x);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.videos__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .videos__grid { grid-template-columns: repeat(3, 1fr); } }

.vid {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow-1);
}
@media (min-width: 760px) { .vid { aspect-ratio: 3 / 4; } }
.vid__el {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--ink);
}
/* Hide video element until source actually loads metadata */
.vid__el:not(.is-ready) { opacity: 0; }
.vid__el.is-ready { opacity: 1; }
.vid__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.85);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.65)),
    radial-gradient(ellipse at 30% 20%, rgba(255,203,5,0.18), transparent 60%),
    var(--ink);
  padding: 1.4rem;
  pointer-events: none;
}
.vid__placeholder p {
  font-family: var(--display); font-weight: 700;
  font-size: 1.15rem; margin: 0.6rem 0 0.4rem;
}
.vid__placeholder small { color: rgba(255,255,255,0.55); font-size: 0.78rem; }
.vid__placeholder small code {
  background: rgba(255,255,255,0.08);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}
.vid__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.3rem 0.55rem; border-radius: 999px;
}
.vid__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.92);
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
}

/* ============== GALLERY ============== */
.gallery { padding: var(--section) var(--pad-x); background: var(--paper); }
.gallery__filters {
  max-width: 1200px; margin: 0 auto 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center;
}
.chip {
  background: white;
  border: 1.5px solid var(--line-soft);
  color: var(--ink);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 120ms ease;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active {
  background: var(--ink); color: var(--yellow); border-color: var(--ink);
}
.gallery__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 0.7rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1080px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }

.gcard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  cursor: zoom-in;
  isolation: isolate;
}
.gcard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gcard:hover img { transform: scale(1.05); }
.gcard__label {
  position: absolute; left: 10px; top: 10px;
  background: var(--ink); color: var(--yellow);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.55rem; border-radius: 6px;
}
.gcard__title {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.7rem 0.9rem;
  color: white;
  font-size: 0.9rem; font-weight: 600;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
}
.gcard.is-hidden { display: none; }

/* ============== PROCESS / TRUST ============== */
.process {
  padding: var(--section) var(--pad-x);
  background: var(--ink);
  color: var(--on-dark);
}
.process__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .process__inner { grid-template-columns: 1.3fr 1fr; gap: 3rem; } }

.process .section__title { color: var(--on-dark); margin-top: 0.8rem; }
.steps { list-style: none; padding: 0; margin: 1.5rem 0 0; counter-reset: step; }
.steps li {
  display: block;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  color: var(--on-dark-muted);
  font-size: 1rem;
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li strong { color: var(--on-dark); display: inline-block; margin-right: 0.4rem; font-family: var(--display); font-weight: 600; }

.trust { display: grid; gap: 1rem; }
.trust__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  background: var(--ink-2);
}
.trust__card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; margin: 0 0 0.4rem; color: var(--yellow);
}
.trust__card p { color: var(--on-dark-muted); font-size: 0.95rem; margin: 0; }
.trust__card--quote {
  background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
  border-color: rgba(255,203,5,0.25);
}
.trust__card--quote p { color: var(--on-dark); font-style: italic; }
.trust__card--quote cite { color: var(--yellow); font-style: normal; font-size: 0.85rem; display: inline-block; margin-top: 0.6rem; }

/* ============== BOOKING ============== */
.book {
  padding: var(--section) var(--pad-x);
  background: var(--yellow);
  color: var(--ink);
}
.book__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .book__inner { grid-template-columns: 1fr 1.1fr; gap: 3rem; } }
.book .section__title { margin: 0.6rem 0 0.6rem; font-size: var(--t-h1); }
.book__copy p { font-size: 1.05rem; max-width: 50ch; }
.book__contact { display: grid; gap: 0.6rem; margin-top: 1.5rem; max-width: 380px; }
.contact-line {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--ink); color: var(--on-dark);
  border-radius: var(--radius);
  transition: transform 120ms ease, background 120ms ease;
}
.contact-line:hover { transform: translateY(-1px); background: var(--ink-2); }
.contact-line svg { color: var(--yellow); flex: none; }
.contact-line span { display: flex; flex-direction: column; }
.contact-line small { color: var(--on-dark-muted); font-size: 0.78rem; margin-top: 2px; }

.form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-2);
  position: relative;
}
@media (min-width: 600px) { .form { padding: 2.2rem; } }
.form__row { display: grid; gap: 0.9rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.field { display: block; margin-bottom: 0.9rem; }
.field span {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1.5px solid var(--line-soft);
  border-radius: 10px;
  font: inherit;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 120ms ease, background 120ms ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--ink); background: white;
  box-shadow: 0 0 0 3px rgba(255,203,5,0.45);
}
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid { border-color: #c0392b; }
.form__fine { font-size: 0.78rem; color: var(--muted); margin: 0.6rem 0 0; text-align: center; }
.form__success {
  position: absolute; inset: 0;
  background: white;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: fade-in 240ms ease;
}
.form__success-mark {
  width: 64px; height: 64px;
  background: var(--yellow); color: var(--ink);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 8px 26px rgba(255,203,5,0.5);
}
.form__success h3 { font-family: var(--display); font-size: 1.4rem; margin: 0 0 0.4rem; }
.form__success p { margin: 0; color: var(--muted); }
.form__success a { font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--yellow); }

@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============== FOOTER ============== */
.foot { background: var(--ink); color: var(--on-dark-muted); padding: 3rem var(--pad-x) 6rem; }
.foot__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .foot__inner { grid-template-columns: 1.2fr 1fr 1fr; align-items: start; }
}
.foot__brand strong { color: var(--on-dark); display: block; font-family: var(--display); font-size: 1.1rem; margin-bottom: 4px; }
.foot__links { display: flex; flex-wrap: wrap; gap: 1rem; }
.foot__links a { color: var(--on-dark-muted); }
.foot__links a:hover { color: var(--yellow); }
.foot__contact { display: flex; flex-direction: column; gap: 0.4rem; }
.foot__contact a { color: var(--on-dark-muted); }
.foot__contact a:hover { color: var(--yellow); }
.foot__legal { grid-column: 1 / -1; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: 0.82rem; }

/* ============== MOBILE BOTTOM NAV ============== */
.botnav {
  position: fixed; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 60;
  padding-top: 6px;
}
.botnav__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  padding: 8px 4px 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  transition: color 120ms ease;
}
.botnav__btn:hover, .botnav__btn:focus-visible { color: var(--yellow); }
.botnav__btn--cta {
  position: relative;
  color: var(--ink);
}
.botnav__btn--cta::before {
  content: "";
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 56px;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255,203,5,0.6);
  border: 4px solid var(--ink);
}
.botnav__btn--cta svg { position: relative; z-index: 1; transform: translateY(-12px); color: var(--ink); }
.botnav__btn--cta span { position: relative; z-index: 1; color: var(--yellow); margin-top: -4px; }

/* show only on small screens */
@media (min-width: 980px) {
  .botnav { display: none; }
}
@media (max-width: 979px) {
  body { padding-bottom: 78px; }
}

/* ============== LIGHTBOX ============== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100; padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 80vh; border-radius: 10px; }
.lightbox__caption { position: absolute; bottom: 2rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  border: 0; border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1.6rem; line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* ============== UTILS ============== */
/* Reveal animation: keep cards visible by default so full-page previews and no-JS views never look empty. */
.reveal { opacity: 1; transform: none; transition: opacity 350ms ease, transform 350ms ease; }
.reveal.is-shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
