/* ============================================================
   Lazgen Lighting — Ultra Shine–inspired redesign
   Keeps: scroll day→night hero + perimeter LED lights (toggleable)
   ============================================================ */

:root {
  --navy: #011134;
  --navy-deep: #0a1e3c;
  --charcoal: #1c1c1c;
  --sage: #d5ddd6;
  --sage-deep: #c5d0c8;
  --orange: #f5a623;
  --white: #ffffff;
  --text: #011134;
  --text-muted: #3a4a5c;
  --gold: #ffc570;
  --gold-bright: #efd2b0;
  --gold-rgb: 255, 197, 112;
  --xmas-red: #e63946;
  --xmas-green: #2ec96a;
  --ice-blue: #4cc9f0;
  --magenta: #e056a0;
  --purple: #7b5ea7;

  --font-body: 'Poppins', system-ui, sans-serif;
  --font-heading: 'Montserrat', system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 8px;
  --light-track: 7px;
  --light-corner: 9px;
  --header-height: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Corner gutters / seams match the navy header instead of sage grey */
  background: var(--navy);
  /* Firefox: dark thumb on navy track (avoids light-grey scrollbar strip) */
  scrollbar-color: #3a4a5c var(--navy);
}

/* Chrome / Edge / Safari — paint the scrollbar track navy so no grey border shows */
html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--navy);
}

html::-webkit-scrollbar-thumb {
  background: #3a4a5c;
  border-radius: 6px;
  border: 2px solid var(--navy);
}

html::-webkit-scrollbar-corner {
  background: var(--navy);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sage);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Room for fixed side lights */
  padding-left: var(--light-track);
  padding-right: var(--light-track);
}

body.lights-off {
  padding-left: 0;
  padding-right: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Buttons (Ultra Shine navy + white border) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-primary:hover { background: #022056; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-hero {
  font-size: 1.05rem;
  padding: 16px 36px;
  border-color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

/* ---------- Section headings ---------- */
.section-kicker {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 10px;
}

.section-kicker--dark { color: var(--navy); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title--light { color: var(--white); }

.section-lead {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--text-muted);
}

/* ============================================================
   PERIMETER LED LIGHTS — warm architectural strip (brand-matched)
   Gold / amber / soft white only — same palette as CTAs & accents
   ============================================================ */
.header-lights {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--light-track);
  pointer-events: none;
  background: var(--navy);
  /* Subtle channel recess so bulbs read as a real LED track */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-lights-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  /* Bulbs go edge-to-edge so L-corners don’t leave empty navy gaps */
  padding: 0;
  gap: 4px;
}

.permanent-led {
  flex-shrink: 0;
  background: var(--gold);
  /* Soft architectural glow — warm, not neon */
  box-shadow:
    0 0 4px 1px rgba(var(--gold-rgb), 0.7),
    0 0 10px 2px rgba(var(--gold-rgb), 0.35);
  animation: led-warm-chase 9s ease-in-out infinite;
  animation-delay: calc(var(--led-i, 0) * -120ms);
  will-change: background-color, box-shadow, opacity;
}

.header-led {
  flex: 1 1 0;
  min-width: 5px;
  max-width: 9px;
  height: 3px;
  border-radius: 2px;
}

.side-lights {
  position: fixed;
  top: calc(var(--header-height) - var(--light-track));
  bottom: 0;
  width: var(--light-track);
  z-index: 150;
  pointer-events: none;
  overflow: hidden;
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.side-lights--left { left: 0; }
.side-lights--right { right: 0; }

.side-lights-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  gap: 4px;
}

/* Caps the L-join where header strip meets side tracks */
.side-lights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--light-track);
  background: var(--navy);
  z-index: 1;
}

.light-corner { display: none; }

.side-lights--left .side-lights-col { align-items: center; }
.side-lights--right .side-lights-col { align-items: center; }

.side-led {
  flex: 1 1 0;
  min-height: 4px;
  max-height: 10px;
  width: 3px;
  border-radius: 2px;
}

/*
  Brand-matched chase: warm white → gold → amber (site orange) → gold.
  No rainbow — reads like a permanent architectural LED set to warm tones.
*/
@keyframes led-warm-chase {
  0%, 100% {
    background: #fff6e8;
    opacity: 0.88;
    box-shadow:
      0 0 4px 1px rgba(255, 246, 232, 0.55),
      0 0 9px 2px rgba(var(--gold-rgb), 0.28);
  }
  25% {
    background: var(--gold-bright);
    opacity: 1;
    box-shadow:
      0 0 5px 1px rgba(var(--gold-rgb), 0.75),
      0 0 12px 2px rgba(var(--gold-rgb), 0.38);
  }
  50% {
    background: var(--orange);
    opacity: 1;
    box-shadow:
      0 0 5px 1px rgba(245, 166, 35, 0.65),
      0 0 11px 2px rgba(245, 166, 35, 0.32);
  }
  75% {
    background: var(--gold);
    opacity: 0.95;
    box-shadow:
      0 0 4px 1px rgba(var(--gold-rgb), 0.65),
      0 0 10px 2px rgba(var(--gold-rgb), 0.3);
  }
}

/* Hide the light frame when toggled off */
body.lights-off .side-lights,
body.lights-off .header-lights {
  display: none;
}

.lights-toggle {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lights-toggle:hover {
  border-color: var(--orange);
}

.lights-toggle[aria-pressed="false"] {
  background: #2a3344;
  opacity: 0.9;
}

.lights-toggle-icon {
  color: var(--orange);
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .permanent-led {
    animation: none;
    background: var(--gold);
    opacity: 0.9;
    box-shadow:
      0 0 3px 1px rgba(var(--gold-rgb), 0.45),
      0 0 6px 1px rgba(var(--gold-rgb), 0.2);
  }
}

/* ============================================================
   SINGLE HEADER — one bar only (no stacked top borders)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  /* Bleed into the body side gutters so sage grey doesn’t show at the top corners */
  margin-left: calc(-1 * var(--light-track));
  margin-right: calc(-1 * var(--light-track));
  width: calc(100% + 2 * var(--light-track));
}

/* When the LED frame is off, gutters are gone — reset header width */
body.lights-off .site-header {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--white);
}

.header-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header-logo-text strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-logo-text small {
  opacity: 0.7;
  font-size: 0.68rem;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

.main-nav a,
.nav-drop-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 10px;
  color: rgba(255, 255, 255, 0.92);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  white-space: nowrap;
}

.header-phone:hover { color: var(--orange); }

.site-header .btn-primary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}

.site-header .btn-primary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-drop-btn:hover { color: var(--orange); }

.dropdown {
  background: var(--white);
  color: var(--navy);
}

.dropdown a { color: var(--navy); }
.dropdown a:hover { color: var(--orange); }

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid rgba(1, 17, 52, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  /* Hidden by default — only show on hover (desktop) or .open (mobile) */
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}

/* Desktop: open only while hovering this menu item */
@media (hover: hover) and (pointer: fine) {
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

/* Mobile / touch: only when JS adds .open */
.has-dropdown.open > .dropdown {
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ============================================================
   SCROLL INTRO (kept day → AI night)
   ============================================================ */
.intro-scroller {
  height: 180vh;
  position: relative;
  z-index: 1;
  --night: 0;
  --lights: 0;
  /* Headline + CTA stay visible from first paint through the whole scroll */
  --text-show: 1;
}

.intro-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #060912;
}

.intro-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.intro-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #04060d;
}

.intro-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}

.intro-photo-day {
  background-image: url('assets/house-day.png');
}

.intro-dusk {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 40%, #0b1226, #04060d);
  opacity: calc(var(--night) * 0.92);
}

.intro-photo-night {
  background-image: url('assets/house-night.png');
  opacity: var(--lights);
  /* Alignment tweaks so AI night lines up with day photo */
  transform: translate(-2.3%, -5.6%) scale(0.99);
  transform-origin: center center;
}

.intro-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  /* Stronger veil so headline + CTA punch through the house photo */
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 75%),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.7) 100%
    );
  opacity: 1;
  pointer-events: auto;
}

.intro-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.intro-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.92);
  max-width: 16ch;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.intro-tagline {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  /* Fades out once the night lights are mostly on */
  opacity: calc(1 - var(--lights));
  animation: scrollHintBounce 2s ease-in-out infinite;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   WHO WE ARE + FAST QUOTE OVERLAY
   Quote panel floats up over the hero and sits on the white/sage band
   ============================================================ */
.who-section {
  background: var(--sage);
  /* Small spacer above the quote card, then room below for Who We Are */
  padding: 32px 0 72px;
  position: relative;
  z-index: 4;
}

.who-inner {
  position: relative;
}

/* Navy fast-quote card — sits on the sage band with normal spacing */
.quote-panel {
  background: var(--navy);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px);
  margin-top: 0;
  margin-bottom: 56px;
  position: relative;
  z-index: 6;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.quote-panel h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  margin-bottom: 22px;
  text-align: center;
}

.fq-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
}

.fq-fields input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: #222;
}

.fq-fields input.invalid {
  outline: 2px solid #ff6b6b;
}

.fq-fields .btn { white-space: nowrap; }

.form-status {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-status--success { color: #7dffb0; }
.form-status--error { color: #ffb4b4; }

.who-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.who-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  min-height: 360px;
}

.who-copy p {
  margin-bottom: 14px;
  color: var(--navy);
}

.who-copy .btn { margin-top: 10px; }

/* ============================================================
   DIFFERENT
   ============================================================ */
.diff-section {
  background: var(--sage-deep);
  padding: 72px 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 8px;
}

.diff-copy p {
  margin-bottom: 14px;
  color: var(--navy);
}

.diff-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.diff-photos img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   BRING TO LIFE
   ============================================================ */
.bring-section {
  background:
    linear-gradient(rgba(1, 17, 52, 0.78), rgba(1, 17, 52, 0.85)),
    url('assets/us/hero-bg.jpeg') center / cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.bring-inner { max-width: 820px; }

.bring-inner p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--sage);
  padding: 72px 0;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

/* Six cards (Ultra Shine layout) — slightly wider grid */
.services-grid--six {
  max-width: 1100px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.service-card:hover { transform: translateY(-4px); }

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body { padding: 20px 18px 24px; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.service-more {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

/* ============================================================
   PERMANENT BANNER + GALLERY
   ============================================================ */
.permanent-banner {
  background:
    linear-gradient(rgba(1, 17, 52, 0.82), rgba(1, 17, 52, 0.88)),
    url('assets/us/countdown-bg.png') center / cover no-repeat;
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.gallery-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--sage);
  padding: 72px 0;
}

.faq-wrap { max-width: 860px; }

.faq-list { margin-top: 24px; }

.faq-item {
  background: var(--white);
  border: 1px solid rgba(1, 17, 52, 0.1);
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  color: var(--navy);
}

.faq-toggle {
  font-size: 1.4rem;
  color: var(--orange);
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p,
.faq-answer li {
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-answer p { padding-bottom: 14px; }
.faq-answer ul { list-style: disc; padding: 0 20px 16px 40px; }
.faq-answer li { padding: 4px 0; }

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-cta { margin-top: 28px; text-align: center; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-section {
  background: var(--sage-deep);
  padding: 64px 0;
  text-align: center;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.area-list li {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  border-radius: 4px;
}

/* ============================================================
   COUNTDOWN — clean, minimal
   ============================================================ */
.countdown-section {
  /* Generated Christmas home with warm roofline LEDs — navy veil keeps copy readable */
  background:
    linear-gradient(rgba(1, 17, 52, 0.78), rgba(1, 17, 52, 0.86)),
    url('assets/countdown-xmas.png') center / cover no-repeat;
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
}

.countdown-inner {
  position: relative;
  z-index: 1;
}

.countdown-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 4px;
  margin-bottom: 20px;
}

.cd-unit {
  min-width: 72px;
  padding: 8px 12px;
}

.cd-sep {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 6px;
}

.cd-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.55;
}

.countdown-note {
  margin: 0 0 24px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.footer-brand p { font-size: 0.9rem; max-width: 280px; }

.site-footer h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.site-footer li { margin-bottom: 8px; font-size: 0.88rem; }
.site-footer a:hover { color: var(--orange); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .header-phone { display: none; }
  .header-logo-text small { display: none; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    padding: 80px 24px 24px;
    transform: translateX(105%);
    transition: transform 0.25s ease;
    z-index: 250;
    justify-content: flex-start;
  }

  body.nav-open .main-nav { transform: translateX(0); }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a,
  .nav-drop-btn {
    color: var(--navy);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 12px;
  }

  .menu-toggle { display: flex; }

  .fq-fields { grid-template-columns: 1fr 1fr; }
  .fq-fields .btn { grid-column: 1 / -1; }

  .who-grid,
  .diff-grid,
  .footer-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .services-grid--six { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .cd-sep { display: none; }
}

@media (max-width: 640px) {
  .fq-fields { grid-template-columns: 1fr; }
  .services-grid,
  .services-grid--six { grid-template-columns: 1fr; }
  .lights-toggle-label { display: none; }
  .header-actions .btn-primary { padding: 10px 12px; font-size: 0.72rem; }
  .header-logo-text strong { font-size: 0.78rem; }
}

/* ============================================================
   INNER PAGES (About, Services, Gallery, Reviews, Contact)
   Matches Ultra Shine’s multi-page pattern: hero → quote → content
   ============================================================ */

/* Homepage quote floats up over the hero; inner pages sit normally under the banner */
.inner-page .quote-section {
  background: #0a0a0a;
  padding: 0 0 48px;
}

.inner-page .quote-panel {
  margin-top: -48px;
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  min-height: clamp(280px, 42vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  /* --page-hero-image is set inline per page */
  background:
    linear-gradient(rgba(1, 17, 52, 0.72), rgba(1, 17, 52, 0.82)),
    var(--page-hero-image, url('assets/us/hero-bg.jpeg')) center / cover no-repeat;
  padding: 64px 22px;
}

.page-hero-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.page-hero-tagline {
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
}

.page-prose {
  background: var(--sage);
  padding: 72px 0;
}

.page-prose-inner {
  max-width: 820px;
}

.page-prose-inner p {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 1.02rem;
}

.page-quote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

.page-split {
  background: var(--sage);
  padding: 72px 0;
}

.page-split:nth-of-type(even) {
  background: var(--sage-deep);
}

.page-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-split--reverse .page-split-grid {
  direction: rtl;
}

.page-split--reverse .page-split-grid > * {
  direction: ltr;
}

.page-split-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.page-split-copy p {
  margin-bottom: 14px;
  color: var(--navy);
}

.feature-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--navy);
  font-size: 0.95rem;
}

/* Small orange dash before each benefit line */
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 3px;
  background: var(--orange);
}

.benefits-section {
  background: var(--sage-deep);
  padding: 72px 0;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
  text-align: left;
}

.benefits-grid article {
  background: var(--white);
  padding: 22px 20px;
  border-radius: 6px;
}

.benefits-grid h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.benefits-grid p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.quote-panel--compact .quote-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  margin: -12px 0 18px;
}

.gallery-page,
.reviews-page {
  background: var(--sage);
  padding: 72px 0;
  text-align: center;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

.gallery-masonry figure {
  margin: 0;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.gallery-masonry img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-masonry figcaption {
  padding: 12px 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  text-align: left;
}

.review-card {
  background: var(--white);
  padding: 22px 20px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.review-stars {
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.review-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.review-card cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
}

.contact-page {
  background: var(--sage);
  padding: 72px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap p {
  margin-bottom: 22px;
  color: var(--navy);
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-fields label,
.contact-fields legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.contact-fields input,
.contact-fields textarea {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 12px 14px;
  border: 1px solid rgba(1, 17, 52, 0.18);
  border-radius: 4px;
  font-size: 0.95rem;
  background: var(--white);
  color: #222;
}

.contact-fields input.invalid,
.contact-fields textarea.invalid {
  outline: 2px solid #ff6b6b;
}

.contact-fields .full { grid-column: 1 / -1; }

.consent-check {
  grid-column: 1 / -1;
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  text-transform: none !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0 !important;
}

.consent-check input { width: auto; }

.services-interest {
  grid-column: 1 / -1;
  border: 1px solid rgba(1, 17, 52, 0.12);
  border-radius: 6px;
  padding: 14px 16px;
  background: var(--white);
}

.services-interest legend { margin-bottom: 10px; }

.services-interest label {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.services-interest input { width: auto; }

.contact-form .btn { margin-top: 18px; }

.contact-aside {
  background: var(--navy);
  color: var(--white);
  padding: 32px 28px;
  border-radius: 12px;
}

.contact-aside .section-title { color: var(--white); }

.contact-info-block {
  margin-bottom: 22px;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--orange);
}

.contact-info-block a:hover { color: var(--orange); }

.contact-aside .btn { margin-top: 8px; width: 100%; }

.contact-page .form-status--success { color: #0a7a3e; }
.contact-page .form-status--error { color: #b42318; }

@media (max-width: 980px) {
  .page-split-grid,
  .contact-grid,
  .benefits-grid,
  .gallery-masonry,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .page-split--reverse .page-split-grid { direction: ltr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .contact-fields { grid-template-columns: 1fr; }
}
