@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Baloo+2:wght@600;800&family=Inter:wght@300;400;500;600;800&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: #222; line-height: 1.5; }

/* ---- Landing split page ---- */
.split-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.split {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  transition: flex 0.3s ease;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.split:hover { flex: 1.15; }

.split::before {
  content: '';
  position: absolute;
  inset: -12px;
  background-size: cover;
  background-position: center;
  filter: blur(6px) saturate(1.15);
  transform: scale(1.05);
  transition: transform 6s ease;
}

.split:hover::before { transform: scale(1.15); }

.split::after {
  content: '';
  position: absolute;
  inset: 0;
}

.construction::before { background-image: url('/images/construction/construction-050.jpg'); }
.construction::after { background: radial-gradient(circle at 50% 35%, rgba(15, 20, 28, 0.55), rgba(6, 8, 11, 0.92) 75%); }
.construction { color: #fff; }

.splash-bounce::before { background-image: url('/images/splash-bounce/splash-bounce-050.jpg'); }
.splash-bounce::after { background: radial-gradient(circle at 50% 35%, rgba(30, 15, 60, 0.5), rgba(12, 6, 28, 0.92) 75%); }
.splash-bounce { color: #fff; }

.split > * { position: relative; z-index: 1; }

.split .split-icon { width: 40px; height: 40px; margin-bottom: 0.75rem; opacity: 0.85; }

.split .brand-logo {
  max-width: min(85%, 420px);
  max-height: 320px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.split:hover .brand-logo { transform: scale(1.04); }

.split-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 0.6rem;
}

.split h2 {
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.split .split-cta {
  margin-top: 1.5rem;
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.split:hover .split-cta { background: rgba(255, 255, 255, 0.12); }

@media (max-width: 700px) {
  .split-container { flex-direction: column; }
  .split { min-height: 50vh; }
}

/* ---- Nav ---- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.navbar a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  font-size: 0.95rem;
}

.navbar a:hover { color: #222; }

/* ---- Hero ---- */
.hero {
  min-height: 56vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.hero-overlay {
  width: 100%;
  padding: 3rem 1.5rem 2.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
}

.hero-inner { max-width: 1000px; margin: 0 auto; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }

.hero-tag { font-size: 1.05rem; opacity: 0.95; margin-bottom: 1.25rem; max-width: 600px; }

.btn {
  display: inline-block;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: #1c2530;
}

.hero-construction .btn, .contact-card.construction a.btn {
  background: transparent;
  color: #fff;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.85rem 1.9rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hero-construction .btn:hover, .contact-card.construction a.btn:hover { background: #fff; color: #111; border-color: #fff; }
.hero-splash-bounce .btn, .contact-card.splash-bounce a.btn { background: #fff43b; }

.badge-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }

.badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---- Page content ---- */
.page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }

.page section { margin-top: 3rem; scroll-margin-top: 1.5rem; }

.page section h2 { font-size: 1.5rem; margin-bottom: 1rem; }

.note {
  background: #fff8e1;
  border: 1px dashed #d9a900;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: #664d00;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-card {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid #eee;
}

.service-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.service-card p { font-size: 0.9rem; color: #555; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.price-card {
  background: #10151d;
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
}

.price-card .price { font-size: 1.8rem; font-weight: 800; color: #fff43b; margin: 0.35rem 0; }
.price-card ul { margin-top: 0.75rem; padding-left: 1.1rem; font-size: 0.88rem; color: #dbe7ee; }

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.feature-row div {
  background: #eef3f8;
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1c2530;
}

.contact-card {
  color: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  margin-top: 1rem;
}

.contact-card.construction { background: #1c2530; }
.contact-card.splash-bounce { background: #1476a8; }

.contact-card a { color: inherit; font-weight: 700; text-decoration: none; }
.contact-card p { margin-bottom: 0.5rem; }
.contact-card .btn { margin-top: 1rem; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin-top: 1rem;
}

.gallery a { display: block; line-height: 0; }

.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
  transition: opacity 0.15s ease;
}

.gallery img:hover { opacity: 0.85; }

footer.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: #888;
  font-size: 0.85rem;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
}

.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.lightbox .lb-close { top: 1rem; right: 1.5rem; }
.lightbox .lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---- Marquee ticker ---- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.6rem 0;
  font-size: 0.85rem;
}

.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 26s linear infinite;
}

.marquee-track span { margin: 0 2rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   Construction theme — "BUILT"
   Loud and photo-forward: warm near-black bands, bone ground,
   full-strength safety orange as the one active colour, big
   type, a running marquee, and scroll-in motion.
   ============================================================ */
.page-construction {
  --asphalt: #17140f;   /* warm near-black — bands + text */
  --bone: #f2ede2;      /* warm off-white — the ground */
  --hi: #ff4a17;        /* safety orange, full strength — the eye */
  --hi-2: #ff8a00;      /* amber, for the orange band's depth */
  --pressed: #d63c0c;   /* orange, pressed */
  --hi-text: #cf360b;   /* deep orange — orange used AS text on the bone ground */
  --steel: #695f51;     /* muted secondary text on bone */
  --line: rgba(23, 20, 15, 0.16);

  background: var(--bone);
  color: var(--asphalt);
  font-family: 'Archivo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.page-construction::before,
.page-construction::after { content: none; display: none; }

/* ---- Nav: sticky asphalt bar ---- */
.page-construction .navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: none;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 2.5rem);
  background: var(--asphalt);
  border-bottom: 3px solid var(--hi);
}
.page-construction .navbar a {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.74rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bone);
}
.page-construction .navbar a:first-child { opacity: 0.65; }
.page-construction .navbar a:first-child:hover { opacity: 1; color: var(--bone); }
.page-construction .navbar a:last-child {
  background: var(--hi);
  color: var(--asphalt);
  padding: 0.55rem 1rem;
}
.page-construction .navbar a:last-child:hover { background: var(--bone); color: var(--asphalt); }

/* ---- Hero ---- */
.page-construction .hero {
  min-height: min(92vh, 820px);
  background-position: center 30%;
  filter: none;
  align-items: flex-end;
}
.page-construction .hero-overlay {
  width: 100%;
  padding: 6rem clamp(1.25rem, 5vw, 4rem) clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(6deg,
    rgba(15, 12, 9, 0.94) 0%,
    rgba(15, 12, 9, 0.6) 34%,
    rgba(15, 12, 9, 0.12) 66%,
    rgba(15, 12, 9, 0) 100%);
}
.page-construction .hero-inner { max-width: 1180px; margin: 0 auto; }
.page-construction .hero-eyebrow {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--hi);
  opacity: 1;
  margin-bottom: 1.1rem;
}
.page-construction .hero h1 {
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  line-height: 0.98;
  margin: 0;
  max-width: 16ch;
  color: var(--bone);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.page-construction .hero h1 .u {
  text-decoration: underline;
  text-decoration-color: var(--hi);
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.09em;
}
.page-construction .hero-tag {
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: #ece7dc;
  opacity: 1;
  max-width: 52ch;
  margin: 1.5rem 0 2rem;
}
.page-construction .hero .btn { margin: 0; }

/* ---- Buttons ---- */
.page-construction .btn {
  display: inline-block;
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  background: var(--hi);
  color: var(--asphalt);
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 1.05rem 1.9rem;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.page-construction .btn:hover {
  background: var(--pressed);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(255, 74, 23, 0.55);
}

/* ---- Marquee ---- */
.page-construction .marquee {
  display: block;
  background: var(--asphalt);
  color: var(--hi);
  padding: 0.95rem 0;
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.page-construction .marquee-track {
  display: inline-flex;
  padding-left: 0;
  animation: builtmarquee 34s linear infinite;
}
.page-construction .marquee:hover .marquee-track { animation-play-state: paused; }
.page-construction .marquee-track span { margin: 0; padding: 0 1.6rem; white-space: nowrap; }
.page-construction .marquee-track span::after { content: '\2022'; margin-left: 3.2rem; opacity: 0.5; }
@keyframes builtmarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Credential band (was .spec-bar) ---- */
.page-construction .spec-bar {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}
.page-construction .spec {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.6rem clamp(1rem, 3vw, 2rem);
  border-left: 1px solid var(--line);
}
.page-construction .spec:first-child { border-left: none; }
.page-construction .spec-k {
  order: 2;
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--steel);
}
.page-construction .spec-v {
  order: 1;
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: -0.01em;
  color: var(--asphalt);
}

/* ---- Page wrapper (plain, no box) ---- */
.page-construction .page {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}
.page-construction .page section { margin: 0; display: block; }
.page-construction .page section + section { margin-top: clamp(3.5rem, 8vw, 6rem); }

/* section kicker (the old sidebar <h2>) */
.page-construction .page section h2 {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hi-text);
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
  position: relative;
}
.page-construction .page section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--hi);
}

/* About */
.page-construction #about p {
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 900px;
  color: var(--asphalt);
}
.page-construction #about p strong { color: var(--hi-text); font-weight: 700; }

/* Statement — full-bleed asphalt band */
.page-construction .statement {
  margin: 0;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
  background: var(--asphalt);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.page-construction .statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--hi) 0 22px, var(--asphalt) 22px 44px);
}
.page-construction .statement p {
  max-width: 1180px;
  margin: 0 auto;
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-size: clamp(2rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.page-construction .statement p strong { color: var(--hi); }
.page-construction .statement cite {
  display: block;
  max-width: 1180px;
  margin: 1.8rem auto 0;
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hi);
}

/* Services — big rows, hover fills orange */
.page-construction .service-grid { display: block; margin: 0; }
.page-construction .service-card {
  display: block;
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem, 3vw, 2rem);
  margin: 0;
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  transition: background 0.25s ease, padding-left 0.25s ease, color 0.25s ease;
}
.page-construction .service-grid .service-card:last-child { border-bottom: 1px solid var(--line); }
.page-construction .service-card .idx {
  display: inline-block;
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hi-text);
  margin-bottom: 0.6rem;
  transition: color 0.25s ease;
}
.page-construction .service-card h3 {
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  color: var(--asphalt);
}
.page-construction .service-card p {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--steel);
  transition: color 0.25s ease;
}
.page-construction .service-card::after {
  content: '\2192';
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  font-size: 2rem;
  color: var(--asphalt);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) {
  .page-construction .service-card:hover {
    background: var(--hi);
    padding-left: clamp(1.5rem, 4vw, 2.8rem);
  }
  .page-construction .service-card:hover .idx { color: var(--asphalt); }
  .page-construction .service-card:hover h3 { color: var(--asphalt); }
  .page-construction .service-card:hover p { color: rgba(23, 20, 15, 0.75); }
  .page-construction .service-card:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* Feature row */
.page-construction .feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 0 clamp(1rem, 3vw, 2rem);
  border: none;
}
.page-construction .feature-row div {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--asphalt);
}
.page-construction .feature-row div::before { content: '/ '; color: var(--hi-text); }

/* Note */
.page-construction .note {
  margin-top: 1.5rem;
  padding: 0.4rem 0 0.4rem 1rem;
  background: none;
  border: none;
  border-left: 3px solid var(--hi);
  border-radius: 0;
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--steel);
}

/* Contact — full-bleed orange band */
.page-construction #contact {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--hi) 0%, var(--hi-2) 100%);
  color: var(--asphalt);
}
.page-construction .contact-inner { max-width: 1180px; margin: 0 auto; }
.page-construction #contact h2 {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(23, 20, 15, 0.72);
  margin: 0 0 1.2rem;
}
.page-construction .contact-lead {
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 640px;
  margin-bottom: 1.5rem;
}
.page-construction .contact-phone {
  display: block;
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--asphalt);
  text-decoration: none;
  margin: 0.5rem 0;
}
.page-construction .contact-phone:hover { color: var(--bone); }
.page-construction .contact-hours {
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: rgba(23, 20, 15, 0.72);
  margin-bottom: 1.75rem;
}
.page-construction #contact .btn {
  background: var(--asphalt);
  color: var(--hi);
}
.page-construction #contact .btn:hover {
  background: var(--bone);
  color: var(--asphalt);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.35);
}
.page-construction #contact .note {
  color: rgba(23, 20, 15, 0.7);
  border-left-color: var(--asphalt);
  margin-top: 2rem;
}

/* Gallery */
.page-construction #photos { display: block; }
.page-construction .gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}
.page-construction .gallery-head p {
  max-width: 46ch;
  font-size: 1rem;
  color: var(--steel);
}
.page-construction .gallery-count {
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--asphalt);
  white-space: nowrap;
}
.page-construction .gallery-count b { color: var(--hi-text); font-weight: 800; }
.page-construction .gallery {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  grid-auto-rows: 190px;
  gap: 6px;
  margin-top: 0;
}
.page-construction .gallery a {
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 0;
}
.page-construction .gallery a:first-child { grid-column: span 2; grid-row: span 2; }
.page-construction .gallery img {
  height: 100%;
  width: 100%;
  border-radius: 0;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.page-construction .gallery a::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0 solid var(--hi);
  transition: border-width 0.12s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .page-construction .gallery a:hover img { transform: scale(1.08); filter: saturate(1.14) contrast(1.05); }
  .page-construction .gallery a:hover::after { border-width: 4px; }
}

/* Footer */
.page-construction footer.site-footer {
  margin: 0;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  background: var(--asphalt);
  border-top: 3px solid var(--hi);
  color: rgba(242, 237, 226, 0.6);
  font-family: 'Spline Sans Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
}

/* Reveal on scroll (JS-gated so no-JS shows everything) */
.page-construction.js-anim .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.page-construction.js-anim .reveal.is-in { opacity: 1; transform: none; }
.page-construction.js-anim .service-card.reveal:nth-child(2) { transition-delay: 0.06s; }
.page-construction.js-anim .service-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.page-construction.js-anim .service-card.reveal:nth-child(4) { transition-delay: 0.18s; }

/* Focus */
.page-construction a:focus-visible,
.page-construction .btn:focus-visible {
  outline: 3px solid var(--hi);
  outline-offset: 3px;
}
.page-construction .statement a:focus-visible,
.page-construction #contact a:focus-visible,
.page-construction .navbar a:focus-visible { outline-color: var(--bone); }

@media (prefers-reduced-motion: reduce) {
  .page-construction .marquee-track { animation: none; }
}

@media (max-width: 860px) {
  .page-construction .spec-bar { grid-template-columns: 1fr 1fr; }
  .page-construction .spec:nth-child(3) { border-left: none; }
}
@media (max-width: 620px) {
  .page-construction .spec-bar { grid-template-columns: 1fr; }
  .page-construction .spec { border-left: none; border-top: 1px solid var(--line); }
  .page-construction .spec:first-child { border-top: none; }
  .page-construction .gallery a:first-child { grid-column: span 1; grid-row: span 1; }
  .page-construction .service-card::after { display: none; }
}

/* ---- Splash & Bounce theme ---- */
.page-splash { position: relative; background: #fbf7ff; }

.page-splash::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('/images/splash-bounce/splash-bounce-050.jpg') center/cover no-repeat fixed;
  filter: blur(4px) brightness(1.05) saturate(1.05);
  transform: scale(1.03);
}

.page-splash::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(251, 247, 255, 0.4);
}

.page-splash .page {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 60px 40px rgba(255, 255, 255, 0.92);
}

.page-splash .navbar { background: rgba(255, 255, 255, 0.6); }
.page-splash footer.site-footer { background: rgba(255, 255, 255, 0.7); }

.page-splash .navbar a:hover { color: #ff4fa3; }

.page-splash .hero {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
  margin-bottom: -2vw;
}

.page-splash .marquee { background: linear-gradient(90deg, #ff4fa3, #ffd23f, #33e0ff); color: #1a1030; }

.page-splash .page h1 { font-family: 'Baloo 2', sans-serif; font-weight: 800; color: #1a1030; }

.page-splash .page section h2 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  color: #1a1030;
}

.page-splash .service-card { border-radius: 18px; border: 2px solid #ffe1f2; background: #fff; }

.page-splash .price-card {
  background: linear-gradient(160deg, #1b1035, #2a1450);
  border-radius: 18px;
  transition: transform 0.2s ease;
}

.page-splash .price-card:hover { transform: translateY(-4px) rotate(-0.5deg); }

.page-splash .price-card .price {
  background: linear-gradient(90deg, #ff4fa3, #ffd23f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-splash .feature-row div {
  background: #fff0f8;
  color: #7a1657;
  border: 1px solid #ffd6ec;
  border-radius: 999px;
  font-weight: 700;
}

.page-splash .contact-card.splash-bounce {
  background: linear-gradient(135deg, #ff4fa3, #7b3ff2 60%, #33c7ff);
  border-radius: 18px;
}

.page-splash .gallery img { border-radius: 14px; }

.page-splash footer.site-footer { color: #8a7ba0; border-top-color: #f0e4fb; }

@media (max-width: 700px) {
  .page-construction .hero, .page-splash .hero { clip-path: none; margin-bottom: 0; }
}
