/* ============================================================
   New River Gorge Campground Auction Landing Page
   Brand: Entrusted Auctions
   Hybrid: Entrusted blue structure + billboard urgency accents
   ============================================================ */

:root {
  /* Brand */
  --brand-blue: #0d51a2;
  --brand-blue-deep: #08305f;
  --brand-blue-ink: #051f3d;

  /* Accents (billboard urgency) */
  --accent-gold: #e8a318;
  --accent-gold-deep: #b87f0a;
  --accent-red: #c8252e;
  --accent-red-deep: #8e1a20;

  /* Neutrals (rural-premium warmth) */
  --paper: #faf7f1;
  --paper-2: #f1ece1;
  --ink: #14181f;
  --ink-soft: #3a4150;
  --mute: #6b7280;
  --line: #e1dccf;
  --line-strong: #cfc8b5;

  /* Layout */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 8px;

  /* Type */
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--brand-blue); text-decoration: none; }

/* ------------------------------ Type */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--brand-blue);
}
.eyebrow.on-dark { color: var(--accent-gold); }
.h1, .h2, .h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.005em; text-transform: uppercase; margin: 0; }
.h1 { font-size: clamp(44px, 6.4vw, 88px); letter-spacing: -0.01em; line-height: 1; }
.h2 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1; }
.h3 { font-size: clamp(22px, 2.4vw, 30px); }
.serif { font-family: var(--font-serif); font-weight: 400; text-transform: none; letter-spacing: 0; font-style: italic; }
.lead { font-size: 18px; line-height: 1.55; color: var(--ink-soft); }
.fine { font-size: 13px; color: var(--mute); }

/* ------------------------------ Wrap */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }

/* ============================================================
   ANNOUNCEMENT STRIP (top thin)
   ============================================================ */
.annc {
  background: var(--brand-blue-ink);
  color: #cdd9e9;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 0;
}
.annc .wrap { display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap; }
.annc div { white-space: nowrap; }
@media (max-width: 880px) { .annc .wrap { font-size: 10px; gap: 12px; justify-content: center; } .annc .wrap > div:first-child { white-space: normal; text-align: center; flex-basis: 100%; } .annc .wrap > div:nth-child(2) { text-align: center; } }
.annc a { color: #cdd9e9; }
.annc strong { color: var(--accent-gold); font-weight: 600; letter-spacing: 0.14em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 40;
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  gap: 24px;
}
.nav .brand { display: flex; align-items: center; gap: 14px; }
.nav .brand img { height: 44px; width: auto; }
.nav .brand .div { width: 1px; height: 28px; background: var(--line); }
.nav .brand .tag {
  font-family: var(--font-display); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; font-size: 10px;
  color: var(--mute); line-height: 1.25;
  white-space: nowrap;
}
.nav .brand .tag b { display: block; color: var(--brand-blue-ink); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; }
.nav .links { display: flex; align-items: center; gap: 28px; }
.nav .links a {
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-soft);
}
.nav .links a:hover { color: var(--brand-blue); }
.nav .links a.cta-mini {
  background: var(--accent-red); color: #fff;
  padding: 10px 18px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px;
  border: 0; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  cursor: pointer;
}
.nav .links a.cta-mini svg { stroke: #fff; }
.nav .links a.cta-mini:hover { background: var(--accent-red-deep); color: #fff; }
@media (max-width: 880px) {
  .nav .links a:not(.cta-mini) { display: none; }
}

/* ============================================================
   HERO (split: aerial + auction card)
   ============================================================ */
.hero {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 60%, #efe8d8 100%);
  padding: 36px 0 64px;
  overflow: hidden;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 36px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .hero .grid { grid-template-columns: 1fr; }
}

/* Photo side */
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  box-shadow: 0 30px 60px -25px rgba(8, 48, 95, 0.35);
}
.hero-photo .img {
  position: absolute; inset: 0;
  background-image: var(--hero-img, url("assets/aerial.jpg"));
  background-size: cover;
  background-position: var(--hero-pos, 50% 40%);
  transition: background-position 0.6s ease, filter 0.4s ease;
}
.hero-photo .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 31, 61, calc(var(--hero-overlay, 0.25) * 0.4)) 0%, rgba(5, 31, 61, var(--hero-overlay, 0.25)) 100%);
}
.hero-photo .badges {
  position: absolute; left: 20px; top: 20px; right: 20px;
  display: flex; justify-content: space-between; gap: 12px;
  pointer-events: none;
}
.badge-pill {
  background: var(--brand-blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.badge-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-gold); }
.badge-pill.gold { background: var(--accent-gold); color: var(--brand-blue-ink); }
.badge-pill.gold .dot { background: var(--brand-blue-ink); }
@media (max-width: 540px) {
  .hero-photo .badges { flex-wrap: wrap; gap: 8px; left: 14px; right: 14px; top: 14px; }
  .badge-pill { font-size: 10px; padding: 7px 11px; letter-spacing: 0.12em; }
}

.hero-photo .caption {
  position: absolute; left: 24px; bottom: 22px; right: 24px;
  color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-end;
}
.hero-photo .caption .addr {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
  font-size: 14px;
}
.hero-photo .caption .addr b { display: block; font-size: 22px; font-weight: 600; letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 4px; }

.hero-photo .video-btn {
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 0; border-radius: 999px;
  padding: 14px 22px 14px 18px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--brand-blue-ink);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.5);
  transition: transform 0.15s ease;
}
.hero-photo .video-btn:hover { transform: translateY(-50%) scale(1.04); }
.hero-photo .video-btn .play {
  width: 30px; height: 30px; border-radius: 50%; background: var(--accent-red); display: grid; place-items: center;
}
.hero-photo .video-btn .play::after {
  content: ""; width: 0; height: 0;
  border-left: 9px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  margin-left: 2px;
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 15, 32, 0.88);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 32px;
  animation: vm-fade 0.18s ease-out;
}
@keyframes vm-fade { from { opacity: 0; } to { opacity: 1; } }
.video-modal-inner {
  width: min(1180px, 100%);
  position: relative;
  animation: vm-rise 0.24s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes vm-rise { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.video-modal-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}
.video-modal-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute; top: -46px; right: 0;
  background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 16px; line-height: 1;
  display: grid; place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }
.video-modal-caption {
  margin-top: 18px; color: rgba(255,255,255,0.85);
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-display);
}
.video-modal-caption span {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-gold);
}
.video-modal-caption b {
  font-weight: 600; font-size: 16px; letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .video-modal { padding: 16px; }
  .video-modal-close { top: -40px; right: -4px; }
  .video-modal-caption b { font-size: 14px; }
}

/* Card side */
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 20px 40px -22px rgba(8, 48, 95, 0.2);
  position: relative;
}
.hero-card .corner {
  position: absolute; top: 0; right: 0;
  background: var(--accent-gold); color: var(--brand-blue-ink);
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 0 var(--radius-lg) 0 var(--radius);
}

.hero-card .eyebrow { margin-bottom: 14px; }
.hero-card h1 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  color: var(--brand-blue-ink);
}
.hero-card h1 .gold { color: var(--accent-gold-deep); }
.hero-card .sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 26px;
  line-height: 1.4;
}

.hero-card .date-block {
  background: var(--brand-blue-ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.hero-card .date-block::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent-gold);
}
.hero-card .date-block .day {
  font-family: var(--font-display); text-align: center; line-height: 1;
}
.hero-card .date-block .day .m {
  font-size: 12px; letter-spacing: 0.18em; color: var(--accent-gold); font-weight: 500;
}
.hero-card .date-block .day .d {
  font-size: 48px; font-weight: 600; margin-top: 4px; letter-spacing: -0.01em;
}
.hero-card .date-block .info {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 22px;
}
.hero-card .date-block .info .label {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero-card .date-block .info .time {
  font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: 0.02em;
  margin-top: 4px;
}
.hero-card .date-block .info .where {
  font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px;
}

.hero-card .online-line {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-soft);
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.hero-card .online-line b { color: var(--accent-red); font-weight: 700; }
.hero-card .online-line .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-red);
  margin-right: 8px; animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
.hero-card .online-line > div { white-space: nowrap; }
@media (max-width: 1160px) and (min-width: 981px), (max-width: 499px) {
  .hero-card .online-line { flex-direction: column; align-items: stretch; gap: 6px; }
  .hero-card .online-line > div:last-child { text-align: right; }
}

.hero-card .ctas {
  display: grid; grid-template-columns: 1fr; gap: 10px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px;
  border: 0; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 15px;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent-red); color: #fff; box-shadow: 0 10px 24px -10px rgba(200, 37, 46, 0.6); }
.btn-primary:hover { background: var(--accent-red-deep); box-shadow: 0 14px 28px -10px rgba(200, 37, 46, 0.7); }
.btn-secondary { background: var(--brand-blue); color: #fff; box-shadow: 0 10px 24px -10px rgba(13, 81, 162, 0.5); }
.btn-secondary:hover { background: var(--brand-blue-deep); }
.btn-ghost { background: transparent; color: var(--brand-blue-ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.btn-dark { background: var(--brand-blue-ink); color: #fff; }
.btn-gold { background: var(--accent-gold); color: var(--brand-blue-ink); }
.btn-gold:hover { background: var(--accent-gold-deep); color: #fff; }
.btn .arrow { font-size: 18px; line-height: 1; }

.hero-card .fineprint {
  font-size: 12px; color: var(--mute); margin-top: 14px; text-align: center;
}

/* ============================================================
   SNAPSHOT BAR (key stats at a glance)
   ============================================================ */
.snapshot {
  background: var(--brand-blue-ink);
  color: #fff;
  padding: 28px 0;
  border-top: 4px solid var(--accent-gold);
}
.snapshot .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.snapshot .stat {
  padding: 4px 24px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.snapshot .stat:first-child { border-left: 0; padding-left: 0; }
.snapshot .stat .label {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-gold); font-weight: 500;
}
.snapshot .stat .val {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.005em; line-height: 1.05; margin-top: 6px;
}
.snapshot .stat .val small {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.65); letter-spacing: 0.04em;
  display: block; margin-top: 2px;
  font-family: var(--font-body);
  text-transform: none;
}
@media (max-width: 880px) {
  .snapshot .grid { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .snapshot .stat { padding: 8px 16px; }
  .snapshot .stat:nth-child(3) { border-left: 0; padding-left: 0;}
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section {
  padding: 88px 0;
}
.section.tight { padding: 56px 0; }
.section.dark { background: var(--brand-blue-ink); color: #fff; }
.section.paper-2 { background: var(--paper-2); }
.section-head {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end;
  margin-bottom: 48px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.section.dark .section-head { border-bottom-color: rgba(255,255,255,0.12); }
.section-head .left { max-width: 720px; }
.section-head h2 { color: var(--brand-blue-ink); margin-top: 8px; }
.section.dark .section-head h2 { color: #fff; }
.section-head p { margin: 14px 0 0; color: var(--ink-soft); font-size: 17px; max-width: 640px; }
.section.dark .section-head p { color: rgba(255,255,255,0.75); }
.section-head .right { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

@media (max-width: 720px) {
  #property .section-head,
  #gallery .section-head,
  #terms .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  #property .section-head .left,
  #gallery .section-head .left,
  #terms .section-head .left { max-width: 100%; }
  #property .section-head .right,
  #gallery .section-head .right,
  #terms .section-head .right { justify-content: flex-start; }
}

/* ============================================================
   PROPERTY HIGHLIGHTS / 3 LOTS
   ============================================================ */
.lots {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 60px;
}
.lots.parcels-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 880px) {
  .lots { grid-template-columns: 1fr; }
  .lots.parcels-grid { grid-template-columns: 1fr; }
}

/* Acreage chip on parcel image */
.lot .img .acres-chip {
  position: absolute; top: 14px; right: 14px;
  background: var(--accent-gold, #b87f0a); color: #fff;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--radius);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Parcel tax ID line at bottom of card */
.lot .body .parcel-id {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* "Sold together" combined-offering note */
.combined-note {
  display: flex; gap: 18px; align-items: flex-start;
  margin: 32px 0 60px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(13,81,162,0.06), rgba(184,127,10,0.06));
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-gold, #b87f0a);
  border-radius: var(--radius-lg);
}
.combined-note-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-blue-ink, #08305f); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.combined-note-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--brand-blue-ink); margin-bottom: 4px;
}
.combined-note p {
  margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55;
}
.lot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.lot .img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
  position: relative;
  overflow: hidden;
}
.lot .img .label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,0.55); color: #fff;
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.lot .img .num {
  position: absolute; right: 18px; bottom: 14px;
  font-family: var(--font-display); font-size: 88px; font-weight: 600; color: rgba(255,255,255,0.18);
  line-height: 0.85; letter-spacing: -0.04em;
}
.lot .body {
  padding: 24px 24px 26px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.lot .body h3 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.005em;
  font-size: 26px; font-weight: 600; color: var(--brand-blue-ink); margin: 0;
  line-height: 1.05;
}
.lot .body .meta {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-blue); font-weight: 500;
}
.lot .body p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.lot .body .specs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 18px;
}
.lot .body .spec {
  font-size: 12px; padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft);
  white-space: nowrap;
}

/* ============================================================
   FEATURES (icon grid)
   ============================================================ */
.features {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; overflow: hidden;
}
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features { grid-template-columns: 1fr; } }
.feature {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }
@media (max-width: 980px) {
  .feature:nth-child(2n) { border-right: 0; }
  .feature { border-bottom: 1px solid var(--line); }
  .feature:nth-last-child(-n+2):not(:nth-child(odd)) { border-bottom: 0; }
}
.feature .ic {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--paper); border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--brand-blue);
}
.feature h4 {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.01em;
  font-size: 17px; font-weight: 600; color: var(--brand-blue-ink); margin: 0 0 8px;
}
.feature p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   FEATURED PHOTO GRID
   ============================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 10px;
}
@media (max-width: 880px) { .photo-grid { grid-auto-rows: 100px; } }
.photo {
  background: var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.photo:hover { transform: translateY(-2px); }
.photo .ph-bg {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ph-from, #c8d6e8), var(--ph-to, #8aa4c3));
  color: #fff;
  text-align: center;
  padding: 16px;
}
.photo .ph-bg .icon { font-size: 28px; opacity: 0.85; margin-bottom: 6px; }
.photo .ph-bg .lbl {
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.photo .ph-bg .num {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.1em;
  background: rgba(0,0,0,0.4); color: #fff;
  padding: 3px 8px; border-radius: 3px;
}
.photo.real .ph-bg { background-size: cover; background-position: center; }
.photo.real .ph-bg .icon, .photo.real .ph-bg .lbl { display: none; }

/* spans */
.span-h2 { grid-row: span 2; }
.span-h3 { grid-row: span 3; }
.span-w3 { grid-column: span 3; }
.span-w4 { grid-column: span 4; }
.span-w5 { grid-column: span 5; }
.span-w6 { grid-column: span 6; }
.span-w7 { grid-column: span 7; }
.span-w8 { grid-column: span 8; }

@media (max-width: 880px) {
  .span-w3, .span-w4, .span-w5 { grid-column: span 6; }
  .span-w6, .span-w7, .span-w8 { grid-column: span 12; }
}

/* ============================================================
   GALLERY CATEGORIES
   ============================================================ */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr; } }
.cat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  text-align: left;
  padding: 0;
  font-family: var(--font-body);
  color: inherit;
  display: flex; flex-direction: column;
  width: 100%;
  align-items: stretch;
}
.cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(8, 48, 95, 0.3);
  border-color: var(--brand-blue);
}
.cat .thumb {
  aspect-ratio: 16 / 11;
  position: relative;
  background: linear-gradient(135deg, var(--ph-from, var(--brand-blue-deep)), var(--ph-to, var(--brand-blue)));
  display: grid; place-items: center;
  color: #fff;
}
.cat .thumb .ic { font-size: 36px; opacity: 0.85; }
.cat .thumb .count {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55); color: #fff;
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.12em;
  padding: 5px 9px; border-radius: 3px;
}
.cat .thumb .count.count-soon {
  background: rgba(255,255,255,0.92); color: var(--mute);
}
.cat.has-photos .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.cat .meta {
  padding: 16px 18px 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.cat .meta .name {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em;
  font-weight: 600; font-size: 15px; color: var(--brand-blue-ink);
  line-height: 1.15;
}
.cat .meta .arrow {
  width: 30px; height: 30px; border-radius: 50%; background: var(--paper);
  display: grid; place-items: center; color: var(--brand-blue); font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.cat:hover .meta .arrow { background: var(--brand-blue); color: #fff; }

/* ============================================================
   AUCTION DETAILS / TERMS
   ============================================================ */
.terms-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px;
}
@media (max-width: 980px) { .terms-grid { grid-template-columns: 1fr; } }
.terms-list { display: flex; flex-direction: column; gap: 0; padding-top: 28px; }
@media (max-width: 980px) { .terms-list { padding-top: 0; } }
.term {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  display: grid; grid-template-columns: 220px 1fr; gap: 18px; align-items: baseline;
}
.term:first-child { padding-top: 0; }
.term:last-child { border-bottom: 0; }
.term .k {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-gold); font-weight: 500;
}
.term .v { color: rgba(255,255,255,0.92); font-size: 15.5px; line-height: 1.5; }
.term .v b { color: #fff; }
@media (max-width: 540px) { .term { grid-template-columns: 1fr; gap: 4px; } }

.terms-side {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.terms-side h3 { color: #fff; margin: 0; }
.terms-side .item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.10);
}
.terms-side .item:first-of-type { border-top: 0; padding-top: 0; }
.terms-side .item .ic {
  width: 32px; height: 32px; border-radius: 6px; background: var(--accent-gold); color: var(--brand-blue-ink);
  display: grid; place-items: center; flex-shrink: 0;
}
.terms-side .item .t { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px; color: #fff; }
.terms-side .item .d { font-size: 13px; color: rgba(255,255,255,0.72); margin-top: 2px; }
.terms-side-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.10); }
.terms-side-actions .btn { justify-content: flex-start; width: 100%; }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.28); background: transparent; }
.btn-ghost.on-dark:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

/* ============================================================
   NEW RIVER GORGE BRIDGE feature
   ============================================================ */
.bridge-section {
  background: var(--brand-blue-ink);
  color: #fff;
  padding-bottom: 80px;
}
.bridge-hero {
  position: relative;
  height: clamp(420px, 60vh, 640px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bridge-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,31,61,0.05) 0%, rgba(5,31,61,0.45) 55%, rgba(5,31,61,0.92) 100%);
}
.bridge-caption {
  position: relative;
  padding-top: 80px;
  padding-bottom: 56px;
  max-width: var(--max);
}
.bridge-caption .h2 {
  color: #fff;
  max-width: 14ch;
  margin: 12px 0 18px;
}
.bridge-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  line-height: 1.5;
  margin: 0;
}
.bridge-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -54px;
  position: relative;
  z-index: 2;
}
.bridge-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 40px -22px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.08);
}
.bridge-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.bridge-thumb-caption {
  padding: 10px 14px 12px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
}
@media (max-width: 880px) {
  .bridge-strip { grid-template-columns: repeat(2, 1fr); margin-top: -36px; }
  .bridge-caption { padding-bottom: 40px; }
}

/* ============================================================
   STYLIZED MAP (location)
   ============================================================ */
.map-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: stretch;
}
@media (max-width: 980px) { .map-grid { grid-template-columns: 1fr; } }
.map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.map-card h3 { color: var(--brand-blue-ink); }
.map-card .addr {
  font-family: var(--font-serif); font-size: 18px; color: var(--ink); margin: 0;
}
.map-card .poi-list { display: flex; flex-direction: column; gap: 0; margin: 12px 0; }
.map-card .poi {
  display: grid; grid-template-columns: 1fr auto; padding: 10px 0;
  border-top: 1px dashed var(--line);
  font-size: 14px;
}
.map-card .poi:first-of-type { border-top: 0; }
.map-card .poi .where { color: var(--ink-soft); }
.map-card .poi .dist { color: var(--brand-blue); font-weight: 600; font-family: var(--font-display); letter-spacing: 0.05em; }

.map-illust {
  background: #eaf0e7;
  border-radius: var(--radius-lg);
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-illust svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 20px 22px;
  background: #fff; border: 0;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.02em; font-size: 16px; color: var(--brand-blue-ink);
  cursor: pointer;
}
.faq-q .ix {
  font-family: var(--font-display); font-size: 12px; color: var(--brand-blue); letter-spacing: 0.12em;
  margin-right: 14px;
}
.faq-q .plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--paper); display: grid; place-items: center;
  color: var(--brand-blue); transition: transform 0.2s ease, background 0.15s;
  font-size: 18px; font-weight: 400;
}
.faq-item.open .faq-q .plus { background: var(--brand-blue); color: #fff; transform: rotate(45deg); }
.faq-a {
  padding: 0 22px 22px;
  color: var(--ink-soft); line-height: 1.6; font-size: 15px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   PREVIEW SCHEDULE FORM + TEAM
   ============================================================ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
}
@media (max-width: 980px) { .split { grid-template-columns: 1fr; } }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-card h3 { color: var(--brand-blue-ink); margin: 0 0 8px; }
.form-card .lead { margin: 0 0 24px; font-size: 15px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500; margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius); background: #fff;
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(13,81,162,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.form-card .submit { margin-top: 8px; width: 100%; }
.form-card .success {
  background: #eaf3ea; border: 1px solid #b7d2b7; color: #2c5a2e;
  padding: 14px 16px; border-radius: var(--radius); font-size: 14px;
}

.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.team-card h3 { color: var(--brand-blue-ink); margin: 0; }
.quote {
  position: relative;
  font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.5;
  color: var(--ink); margin: 0; padding: 18px 20px 18px 24px;
  border-left: 3px solid var(--accent-gold);
  background: var(--paper);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -8px; left: 14px;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 56px;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.35;
  pointer-events: none;
}
.quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 600;
}
.form-card .quote {
  background: var(--paper-2);
  margin-top: 28px;
}
.form-card .quote-divider {
  margin: 28px 0 0;
  border: 0;
  border-top: 1px dashed var(--line-strong);
}
.contact-rows { display: flex; flex-direction: column; gap: 0; }
.contact-row {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.contact-row:first-child { border-top: 0; }
.contact-row .ic {
  width: 36px; height: 36px; border-radius: 8px; background: var(--brand-blue); color: #fff;
  display: grid; place-items: center;
}
.contact-row .label {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
}
.contact-row .v { font-size: 15.5px; color: var(--ink); line-height: 1.4; margin-top: 2px; }
.contact-row .v a { color: var(--ink); }
.contact-row .v a:hover { color: var(--brand-blue); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--brand-blue-ink);
  color: #fff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before, .final-cta::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: var(--accent-red);
  clip-path: polygon(0 50%, 40% 0, 40% 30%, 100% 30%, 100% 70%, 40% 70%, 40% 100%);
  opacity: 0.18;
}
.final-cta::before { left: 5%; transform: translateY(-50%) scaleX(-1); }
.final-cta::after { right: 5%; }
.final-cta .eyebrow { color: var(--accent-gold); }
.final-cta h2 { color: #fff; max-width: 16ch; margin: 14px auto 16px; }
.final-cta .sub {
  font-family: var(--font-serif); font-style: italic;
  color: rgba(255,255,255,0.78); font-size: 19px; max-width: 56ch; margin: 0 auto 32px;
}
.final-cta .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .fineprint { margin-top: 28px; color: rgba(255,255,255,0.55); font-size: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #000;
  color: #cbd5e1;
  padding: 50px 0 26px;
  border-top: 4px solid var(--brand-blue);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer img.logo {
  height: 64px;
  margin-bottom: 12px;
  /* Logo is dark on transparent — invert to white so it reads on black */
  filter: brightness(0) invert(1);
}
.footer h5 {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-gold); margin: 0 0 14px; font-weight: 500;
}
.footer p, .footer a { color: #a8b3c4; font-size: 14px; line-height: 1.7; margin: 0; }
.footer a:hover { color: #fff; }
.credibility {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.credibility-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 18px;
  font-weight: 500;
}
.credibility-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 36px;
}
.credibility-row img {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.2s ease;
  display: block;
}
.credibility-row img:hover { opacity: 1; }
.credibility-row img.cred-jpg {
  background: #fff;
  padding: 4px 6px;
  border-radius: 4px;
  opacity: 1;
}
@media (max-width: 640px) {
  .credibility-row { gap: 20px 24px; }
  .credibility-row img { height: 36px; max-width: 100px; }
}
.footer .licenses {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px; padding-top: 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 48px;
  font-size: 13px; color: #8a94a6; line-height: 1.7;
}
.footer .licenses .lic-name {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .footer .licenses { grid-template-columns: 1fr; gap: 18px; }
}
.footer .legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 36px; padding-top: 18px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: #6b7280;
}

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--brand-blue-ink);
  color: #fff;
  border-top: 3px solid var(--accent-gold);
  box-shadow: 0 -12px 30px -10px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .wrap {
  padding-top: 12px; padding-bottom: 12px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
}
.sticky-bar .when {
  display: flex; align-items: center; gap: 16px;
}
.sticky-bar .label {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-gold);
}
.sticky-bar .countdown {
  display: flex; gap: 10px; align-items: center;
}
.sticky-bar .cd-unit {
  text-align: center; padding: 0 6px;
}
.sticky-bar .cd-unit .n {
  font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1; letter-spacing: 0.02em;
}
.sticky-bar .cd-unit .l {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.sticky-bar .cd-sep { color: rgba(255,255,255,0.3); font-size: 18px; }
.sticky-bar .who { display: flex; flex-direction: column; }
.sticky-bar .who .top {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.sticky-bar .who .bot {
  font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: 0.04em;
}
.sticky-bar .actions { display: flex; gap: 8px; }
.sticky-bar .btn { padding: 11px 18px; font-size: 13px; }

@media (max-width: 880px) {
  .sticky-bar .wrap { grid-template-columns: 1fr; gap: 10px; padding-left: 16px; padding-right: 16px; }
  .sticky-bar .who { display: none; }
  .sticky-bar .actions { display: grid; grid-template-columns: 1fr 1fr; }
  .sticky-bar .et-suffix { display: none; }
}

/* spacer so sticky doesn't cover footer */
.sticky-spacer { height: 96px; }
@media (max-width: 880px) { .sticky-spacer { height: 160px; } }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  display: grid; place-items: center;
  padding: 40px 20px;
  animation: fade 0.2s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lb {
  width: min(1200px, 100%); max-height: 100%;
  display: grid; grid-template-rows: auto 1fr auto; gap: 12px;
}
.lb-head { display: flex; justify-content: space-between; align-items: center; color: #fff; }
.lb-head .title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; font-size: 18px;
}
.lb-head .meta { font-size: 13px; color: rgba(255,255,255,0.6); }
.lb-head .close {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff;
  padding: 8px 14px; border-radius: var(--radius); font-size: 13px;
}
.lb-stage {
  background: #111; border-radius: var(--radius);
  display: grid; place-items: center; position: relative;
  min-height: 60vh;
  overflow: hidden;
}
.lb-stage .img {
  width: 100%; aspect-ratio: 3 / 2;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ph-from, var(--brand-blue-deep)), var(--ph-to, var(--brand-blue)));
  color: #fff; text-align: center; padding: 30px;
}
.lb-stage .lb-img {
  display: block; max-width: 100%; max-height: 75vh; width: auto; height: auto;
  object-fit: contain;
}
.lb-stage .img .ic { font-size: 56px; opacity: 0.7; margin-bottom: 10px; }
.lb-stage .img .lbl {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 16px;
}
.lb-stage .nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff;
  font-size: 20px; display: grid; place-items: center;
}
.lb-stage .nav-btn:hover { background: rgba(255,255,255,0.25); }
.lb-stage .nav-btn.prev { left: 16px; }
.lb-stage .nav-btn.next { right: 16px; }
.lb-thumbs {
  display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px;
}
.lb-thumb {
  width: 90px; height: 60px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ph-from, var(--brand-blue-deep)), var(--ph-to, var(--brand-blue)));
  border-radius: 3px; cursor: pointer; opacity: 0.5;
  border: 2px solid transparent;
  display: grid; place-items: center; color: #fff; font-size: 18px;
}
.lb-thumb.active { opacity: 1; border-color: var(--accent-gold); }

/* ============================================================
   UTIL
   ============================================================ */
.divider-rule {
  height: 1px; background: var(--line); margin: 80px 0;
}
.gold-rule {
  width: 60px; height: 3px; background: var(--accent-gold);
  margin-bottom: 18px;
}
.section.dark .gold-rule { background: var(--accent-gold); }

.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-block; padding: 5px 11px;
  background: var(--paper-2);
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); border-radius: 999px;
}
.section.dark .tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
