/* ============================================
   Bayfront Holiday Lighting — Main Styles
   Replace/override with 21st Dev design system
   when design assets are added (fonts, colors,
   components in a separate theme file).
   ============================================ */

:root {
  /* Dusk theme — sleek, modern, no yellow */
  --color-bg: #1e293b;
  --color-bg-elevated: #334155;
  --color-bg-dark: #0f172a;
  --color-bg-darker: #020617;
  --color-text: #f1f5f9;
  --color-text-light: #94a3b8;
  --color-text-muted: #64748b;
  --color-text-on-dark: #f1f5f9;
  --color-accent: #e2e8f0;
  --color-accent-hover: #fff;
  --color-accent-dim: rgba(226, 232, 240, 0.9);
  --color-success: #34d399;
  --color-warn: #f87171;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow: 0 4px 12px -2px rgb(0 0 0 / 0.35), 0 2px 6px -2px rgb(0 0 0 / 0.2);
  --shadow-lg: 0 12px 24px -4px rgb(0 0 0 / 0.35), 0 4px 8px -4px rgb(0 0 0 / 0.2);
  --shadow-xl: 0 20px 40px -8px rgb(0 0 0 / 0.4);
  --transition: 0.2s ease;
  --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --animate-duration: 0.5s;
  --animate-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 35%, #1e293b 65%, #0f172a 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Page load transition: content fades in when navigating to a new page */
main {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.page-visible main {
  opacity: 1;
  transform: translateY(0);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-smooth);
}
a:hover {
  color: var(--color-accent-hover);
}

/* --------------------------------------------
   Scroll animations (subtle fade-in-up)
   -------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--animate-duration) var(--animate-ease), transform var(--animate-duration) var(--animate-ease);
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-animate-delay="0"].in-view { transition-delay: 0ms; }
[data-animate][data-animate-delay="1"].in-view { transition-delay: 80ms; }
[data-animate][data-animate-delay="2"].in-view { transition-delay: 160ms; }
[data-animate][data-animate-delay="3"].in-view { transition-delay: 240ms; }
[data-animate][data-animate-delay="4"].in-view { transition-delay: 320ms; }
[data-animate][data-animate-delay="5"].in-view { transition-delay: 400ms; }

/* Hero content: slight delay so it appears after load */
.hero-content[data-animate] { transition-delay: 0.15s; }
.hero-content[data-animate].in-view { transition-delay: 0.15s; }

/* --------------------------------------------
   Layout
   -------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}
.section-light {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: var(--color-text);
}
.section-dark {
  background: linear-gradient(180deg, #020617 0%, #0f172a 50%, #020617 100%);
  color: var(--color-text-on-dark);
}
.section-dark a {
  color: var(--color-accent);
}
.section-dark .section-intro-light {
  color: #cbd5e1;
}
.section-intro {
  color: var(--color-text-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 var(--space-md);
  color: inherit;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-intro {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-text-light);
  max-width: 60ch;
  margin: 0 0 var(--space-2xl);
}
.section-dark .section-intro {
  color: #94a3b8;
}
.section-light .section-intro {
  color: var(--color-text-light);
}

/* --------------------------------------------
   Header
   -------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.3125rem;
  color: #fff !important;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color var(--transition-smooth);
}
.logo:hover {
  color: var(--color-accent) !important;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav a {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition-smooth);
}
.nav a:hover {
  color: var(--color-accent);
}
.nav .btn-cta {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 600;
  border-color: rgba(255, 255, 255, 0.3);
}
.nav .btn-cta:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}
.header-phone {
  color: var(--color-text-light) !important;
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.9375rem;
}
.header-phone:hover {
  color: var(--color-accent) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

@media (max-width: 900px) {
  .nav,
  .header-phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* --------------------------------------------
   Buttons
   -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-bg-dark);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.btn-cta {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid rgba(226, 232, 240, 0.45);
}
.btn-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent-hover);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}
.btn-block {
  width: 100%;
}
.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

.link-arrow {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition-smooth), gap var(--transition-smooth);
}
.link-arrow::after {
  content: "→";
  transition: transform var(--transition-smooth);
}
.link-arrow:hover {
  color: var(--color-accent-hover);
  gap: var(--space-md);
}
.link-arrow:hover::after {
  transform: translateX(2px);
}
.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

/* --------------------------------------------
   Conversion bar — minimal, sleek
   -------------------------------------------- */
.conversion-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.conversion-bar.visible {
  transform: translateY(0);
}
.conversion-bar-always {
  transform: translateY(0);
}
.conversion-bar-phone {
  color: var(--color-accent) !important;
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition-smooth);
}
.conversion-bar-phone:hover {
  color: var(--color-accent) !important;
}
.conversion-bar .btn-cta {
  font-weight: 500;
  font-size: 0.875rem;
  padding: var(--space-sm) var(--space-lg);
}

/* --------------------------------------------
   Hero — full-bleed image, gradient overlay
   -------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
  background: var(--color-bg-dark);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-width: 100%;
  min-height: 100%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.5) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(2, 6, 23, 0.92) 100%);
  pointer-events: none;
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 50%, #1e293b 100%);
}
.hero .hero-bg-img ~ .hero-placeholder {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.125rem, 5.5vw, 3.25rem);
  font-weight: 400;
  margin: 0 0 var(--space-md);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero-tagline {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #cbd5e1;
  margin: 0 0 var(--space-xl);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
  color: #94a3b8;
}
.hero-badges span {
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition-smooth), border-color var(--transition-smooth);
}
.hero-badges span:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.12);
}
.hero-promo {
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  font-size: 0.9375rem;
}
.hero .btn-primary {
  margin-bottom: var(--space-md);
}
.hero-phone {
  display: block;
  margin-top: var(--space-md);
  color: #94a3b8;
  font-size: 0.9375rem;
}
.hero-phone:hover {
  color: var(--color-accent);
}

.estimate-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 720px;
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}
.step-num {
  flex-shrink: 0;
  width: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}
.step-label {
  line-height: 1.45;
}
@media (max-width: 700px) {
  .estimate-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
  }
}

/* --------------------------------------------
   Page hero (inner pages)
   -------------------------------------------- */
.page-hero {
  padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-2xl);
  text-align: center;
  background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 40%, #1e293b 100%);
  color: #fff;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 30%, rgba(226, 232, 240, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero-dark {
  background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  color: #fff;
}
.page-hero-dark::before {
  background: radial-gradient(ellipse 60% 35% at 50% 25%, rgba(226, 232, 240, 0.08) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.page-hero-tagline {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 50ch;
  margin: 0 auto var(--space-xl);
}
.page-hero-dark .page-hero-tagline {
  color: #94a3b8;
}
.page-hero .btn {
  margin-bottom: var(--space-md);
}

/* Permanent lighting page — hero with image */
.page-hero-permanent {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-hero-permanent-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-permanent-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.page-hero-permanent-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.5) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(2, 6, 23, 0.9) 100%);
  pointer-events: none;
}
.page-hero-permanent .container {
  position: relative;
  z-index: 1;
  padding-top: calc(80px + var(--space-3xl));
  padding-bottom: var(--space-3xl);
}
.page-hero-permanent .page-hero-tagline {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* What is permanent lighting? — carousel, compact, less negative space */
.permanent-what {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}
.permanent-what-carousel-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.permanent-what .section-title {
  margin-bottom: var(--space-sm);
  text-align: center;
}
.permanent-what-carousel {
  position: relative;
  min-height: 0;
}
.permanent-what-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md) 0;
}
.permanent-what-slide--active {
  display: grid;
}
.permanent-what-slide p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-light);
}
.permanent-what-slide-intro {
  font-size: 1rem !important;
}
.permanent-what-slide-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.permanent-what-slide-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.permanent-what-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.permanent-what-pill {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}
.permanent-what-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.permanent-what-carousel-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.permanent-what-carousel-btn svg {
  display: block;
}
.permanent-what-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.permanent-what-carousel-btn:active {
  transform: scale(0.98);
}
.permanent-what-carousel-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.permanent-what-carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.permanent-what-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}
.permanent-what-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.35);
}
.permanent-what-carousel-dot.is-active {
  width: 24px;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 700px) {
  .permanent-what-slide {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
  }
  .permanent-what-slide--active {
    display: flex;
    flex-direction: column;
  }
  .permanent-what-slide-media {
    order: -1;
  }
}

/* Two-col with image */
.two-col-with-img {
  align-items: center;
  margin-bottom: var(--space-3xl);
}
.two-col-with-img:last-of-type {
  margin-bottom: var(--space-2xl);
}
.two-col-reverse .two-col-block {
  order: 2;
}
.two-col-reverse .two-col-media {
  order: 1;
}
.two-col-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.two-col-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width: 768px) {
  .two-col-reverse .two-col-block,
  .two-col-reverse .two-col-media {
    order: unset;
  }
}

/* App section — image in mockup area */
.app-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery-grid-permanent {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* --------------------------------------------
   Holiday lighting page — Christmas theme
   -------------------------------------------- */
.page-holiday {
  --holiday-green: #165b33;
  --holiday-green-dark: #0d3d21;
  --holiday-red: #b91c1c;
  --holiday-red-dark: #991b1b;
  --holiday-gold: #fef3c7;
  --holiday-cream: #fefce8;
  --holiday-snow: #f8fafc;
  --holiday-night: #0c1222;
  --holiday-night-mid: #1a2744;
  --holiday-twinkle: #e2e8f0;
}

/* Night sky canvas — fixed behind all content */
.page-holiday {
  background: linear-gradient(180deg, #050a12 0%, #0c1222 25%, #1a2744 55%, #0d1629 85%, #050a12 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
.holiday-sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.holiday-main {
  position: relative;
  z-index: 1;
}

/* Stars — two layers of twinkling dots */
.holiday-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 8% 12%, rgba(255,255,255,0.9) 0%, transparent 50%),
    radial-gradient(2px 2px at 18% 22%, rgba(255,255,255,0.7) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 28% 8%, rgba(255,255,255,0.8) 0%, transparent 50%),
    radial-gradient(2px 2px at 38% 32%, rgba(255,255,255,0.6) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 48% 18%, rgba(255,255,255,0.9) 0%, transparent 50%),
    radial-gradient(2px 2px at 58% 42%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 68% 6%, rgba(255,255,255,0.8) 0%, transparent 50%),
    radial-gradient(2px 2px at 78% 28%, rgba(255,255,255,0.7) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 88% 14%, rgba(255,255,255,0.6) 0%, transparent 50%),
    radial-gradient(2px 2px at 12% 48%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 72% 56%, rgba(255,255,255,0.7) 0%, transparent 50%),
    radial-gradient(2px 2px at 92% 62%, rgba(255,255,255,0.6) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: holiday-stars-twinkle 8s ease-in-out infinite;
  opacity: 0.85;
}
.holiday-stars--layer2 {
  background-image:
    radial-gradient(1px 1px at 5% 35%, rgba(255,255,255,0.8) 0%, transparent 50%),
    radial-gradient(1px 1px at 25% 15%, rgba(255,255,255,0.6) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 45% 45%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(1px 1px at 65% 25%, rgba(255,255,255,0.7) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 85% 38%, rgba(255,255,255,0.6) 0%, transparent 50%),
    radial-gradient(1px 1px at 15% 68%, rgba(255,255,255,0.5) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 55% 78%, rgba(255,255,255,0.6) 0%, transparent 50%),
    radial-gradient(1px 1px at 95% 88%, rgba(255,255,255,0.4) 0%, transparent 50%);
  animation-duration: 6s;
  animation-delay: -2s;
  opacity: 0.6;
}
@keyframes holiday-stars-twinkle {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.holiday-stars--layer2 {
  animation-name: holiday-stars-twinkle-2;
  opacity: 0.55;
}
@keyframes holiday-stars-twinkle-2 {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

/* Snowflakes */
.holiday-snow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.holiday-snowflake {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  animation: holiday-snow-fall linear infinite;
  box-shadow: 0 0 6px rgba(255,255,255,0.5);
}
.holiday-snowflake:nth-child(1) { left: 5%;  animation-duration: 14s; animation-delay: 0s;   width: 4px; height: 4px; }
.holiday-snowflake:nth-child(2) { left: 18%; animation-duration: 12s; animation-delay: -2s;  width: 5px; height: 5px; }
.holiday-snowflake:nth-child(3) { left: 32%; animation-duration: 16s; animation-delay: -4s;  width: 4px; height: 4px; }
.holiday-snowflake:nth-child(4) { left: 48%; animation-duration: 11s; animation-delay: -1s;  width: 6px; height: 6px; }
.holiday-snowflake:nth-child(5) { left: 62%; animation-duration: 15s; animation-delay: -3s;  width: 4px; height: 4px; }
.holiday-snowflake:nth-child(6) { left: 75%; animation-duration: 13s; animation-delay: -5s;  width: 5px; height: 5px; }
.holiday-snowflake:nth-child(7) { left: 88%; animation-duration: 17s; animation-delay: -2s;  width: 4px; height: 4px; }
.holiday-snowflake:nth-child(8) { left: 12%; animation-duration: 10s; animation-delay: -6s;  width: 5px; height: 5px; }
.holiday-snowflake:nth-child(9) { left: 55%; animation-duration: 18s; animation-delay: -1s;  width: 4px; height: 4px; }
.holiday-snowflake:nth-child(10){ left: 92%; animation-duration: 12s; animation-delay: -4s;  width: 5px; height: 5px; }
.holiday-snowflake--small { width: 3px !important; height: 3px !important; opacity: 0.7; }
.holiday-snowflake:nth-child(11) { left: 8%;  animation-duration: 15s; animation-delay: -5s; }
.holiday-snowflake:nth-child(12) { left: 25%; animation-duration: 13s; animation-delay: -7s; }
.holiday-snowflake:nth-child(13) { left: 40%; animation-duration: 19s; animation-delay: -3s; }
.holiday-snowflake:nth-child(14) { left: 58%; animation-duration: 14s; animation-delay: -8s; }
.holiday-snowflake:nth-child(15) { left: 70%; animation-duration: 11s; animation-delay: -2s; }
.holiday-snowflake:nth-child(16) { left: 82%; animation-duration: 16s; animation-delay: -6s; }
.holiday-snowflake:nth-child(17) { left: 3%;  animation-duration: 12s; animation-delay: -4s; }
.holiday-snowflake:nth-child(18) { left: 45%; animation-duration: 17s; animation-delay: -1s; }
.holiday-snowflake:nth-child(19) { left: 65%; animation-duration: 10s; animation-delay: -9s; }
.holiday-snowflake:nth-child(20) { left: 95%; animation-duration: 18s; animation-delay: -5s; }
@keyframes holiday-snow-fall {
  0% { transform: translateY(-10vh) translateX(0); opacity: 0.9; }
  100% { transform: translateY(110vh) translateX(20px); opacity: 0.4; }
}

/* String of Christmas lights — subtle bulbs along the sky */
.holiday-lights-string {
  position: absolute;
  bottom: 12%;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(90deg, transparent 0%, transparent 8%, rgba(185,28,28,0.15) 10%, rgba(254,243,199,0.2) 15%, rgba(22,91,51,0.15) 20%, transparent 25%, transparent 33%, rgba(22,91,51,0.15) 35%, rgba(254,243,199,0.2) 40%, rgba(185,28,28,0.15) 45%, transparent 50%, transparent 58%, rgba(254,243,199,0.2) 60%, rgba(185,28,28,0.12) 65%, rgba(22,91,51,0.12) 70%, transparent 75%, transparent 83%, rgba(22,91,51,0.15) 85%, rgba(254,243,199,0.18) 90%, transparent 95%, transparent 100%);
  background-size: 100% 100%;
  box-shadow: 0 0 30px rgba(254, 243, 199, 0.15), 0 0 60px rgba(185, 28, 28, 0.08), 0 0 60px rgba(22, 91, 51, 0.08);
  opacity: 0.9;
  pointer-events: none;
}
.holiday-lights-string::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 41, 59, 0.6), transparent);
  transform: translateY(-50%);
}

/* Holiday page — media placeholders + Christmas light strip */
.holiday-media-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
@media (max-width: 600px) {
  .holiday-media-strip { grid-template-columns: 1fr; }
}
.holiday-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(22, 91, 51, 0.25) 0%, rgba(13, 61, 33, 0.2) 100%);
  border: 1px dashed rgba(254, 243, 199, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(254, 243, 199, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.holiday-placeholder--wide {
  aspect-ratio: 21/9;
  max-height: 220px;
  margin-bottom: var(--space-xl);
}
.holiday-media-wrap {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(254, 243, 199, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.holiday-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.holiday-media-wrap--wide {
  aspect-ratio: 21/9;
  max-height: 280px;
  margin-bottom: var(--space-xl);
}
.holiday-media-wrap--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.holiday-alt-media {
  margin-bottom: var(--space-lg);
}
.page-holiday .section-holiday-light .holiday-placeholder {
  background: rgba(15, 23, 42, 0.5);
  border-color: rgba(254, 243, 199, 0.25);
  color: rgba(254, 243, 199, 0.4);
}

/* Christmas light bokeh — soft red/green/gold orbs */
.holiday-lights-bokeh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 10% 20%, rgba(185, 28, 28, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 90% 15%, rgba(22, 91, 51, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 80% 100% at 15% 85%, rgba(254, 243, 199, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse 70% 90% at 85% 80%, rgba(185, 28, 28, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(254, 243, 199, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.holiday-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: holiday-glow-pulse 4s ease-in-out infinite;
}
.holiday-glow--1 {
  width: 280px;
  height: 280px;
  background: rgba(185, 28, 28, 0.2);
  top: -80px;
  left: -60px;
  animation-delay: 0s;
}
.holiday-glow--2 {
  width: 220px;
  height: 220px;
  background: rgba(22, 91, 51, 0.2);
  top: 30%;
  right: -40px;
  animation-delay: -1.5s;
}
.holiday-glow--3 {
  width: 200px;
  height: 200px;
  background: rgba(254, 243, 199, 0.15);
  bottom: 10%;
  left: 10%;
  animation-delay: -3s;
}
@keyframes holiday-glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Hero — night sky with Christmas accent gradient */
.page-hero-holiday {
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.85) 0%, rgba(12, 18, 34, 0.7) 50%, rgba(13, 61, 33, 0.4) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.3);
}
.holiday-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.holiday-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.holiday-hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d3d21 0%, #165b33 40%, #1a2744 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-hero-holiday::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(22, 91, 51, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.page-hero-holiday::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l3 9h9l-7 5 3 9-8-6-8 6 3-9-7-5h9z' fill='%23fef3c7' fill-opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.8;
  z-index: 1;
}
.page-hero-holiday .container {
  position: relative;
  z-index: 2;
}
.page-hero-holiday .page-hero-tagline {
  color: rgba(255, 255, 255, 0.92);
}
.page-hero-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--holiday-gold);
  margin: 0 0 var(--space-sm);
  text-shadow: 0 0 20px rgba(254, 243, 199, 0.4);
}
.page-hero-promo {
  font-size: 0.9375rem;
  color: var(--holiday-gold);
  margin: var(--space-md) 0 0;
  font-weight: 500;
  text-shadow: 0 0 16px rgba(254, 243, 199, 0.3);
}
.page-hero-holiday-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 30px rgba(254, 243, 199, 0.25), 0 2px 24px rgba(0, 0, 0, 0.4), 0 4px 40px rgba(22, 91, 51, 0.2);
}
/* String-of-lights glow along bottom of hero */
.holiday-hero-lights {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(185, 28, 28, 0.12) 20%, rgba(254, 243, 199, 0.18) 50%, rgba(22, 91, 51, 0.12) 80%, transparent 100%);
  box-shadow: 0 -4px 30px rgba(254, 243, 199, 0.2), 0 0 60px rgba(185, 28, 28, 0.1), 0 0 60px rgba(22, 91, 51, 0.1);
  opacity: 0.95;
}

.btn-holiday {
  background: var(--holiday-red);
  color: #fff;
}
.btn-holiday:hover {
  background: var(--holiday-red-dark);
  color: #fff;
}
.btn-holiday-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-holiday-outline:hover {
  background: #fff;
  color: var(--holiday-green-dark);
}

/* Content sections — dark throughout, snow effect visible */
.page-holiday .section-holiday-light {
  background: linear-gradient(180deg, rgba(12, 18, 34, 0.72) 0%, rgba(13, 61, 33, 0.15) 50%, rgba(5, 10, 18, 0.78) 100%);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  color: var(--holiday-cream);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.page-holiday .section-holiday-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 243, 199, 0.2), transparent);
  pointer-events: none;
}
.page-holiday .section-holiday-light .section-title {
  color: var(--holiday-gold);
  text-shadow: 0 0 24px rgba(254, 243, 199, 0.2);
}
.page-holiday .section-holiday-light .section-intro {
  color: rgba(254, 252, 232, 0.9);
}
.page-holiday .section-holiday-light .process-list li {
  color: rgba(254, 252, 232, 0.88);
  border-bottom-color: rgba(254, 243, 199, 0.12);
}
.page-holiday .section-holiday-light .process-list li::before {
  color: var(--holiday-gold);
}
.page-holiday .guarantee-box {
  background: rgba(15, 23, 42, 0.7);
  border: 2px solid rgba(185, 28, 28, 0.5);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.page-holiday .guarantee-box h3 {
  color: #fca5a5;
}
.page-holiday .guarantee-box p {
  color: rgba(254, 252, 232, 0.9);
}
.page-holiday .packages-note {
  color: var(--holiday-gold);
}

/* Alt section — deep night with cream text and Christmas accent */
.page-holiday .section-holiday-alt {
  background: linear-gradient(180deg, rgba(12, 18, 34, 0.75) 0%, rgba(13, 61, 33, 0.2) 50%, rgba(5, 10, 18, 0.82) 100%);
  color: var(--holiday-cream);
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.page-holiday .section-holiday-alt .section-title {
  color: var(--holiday-gold);
  text-shadow: 0 0 24px rgba(254, 243, 199, 0.2);
}
.page-holiday .section-holiday-alt p {
  color: rgba(254, 252, 232, 0.9);
}
.page-holiday .section-holiday-alt .btn-holiday {
  box-shadow: 0 4px 20px rgba(185, 28, 28, 0.4);
}

/* Header & conversion bar — night sky blend */
.page-holiday .header {
  background: rgba(5, 10, 18, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(254, 243, 199, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.page-holiday .header-phone {
  color: var(--holiday-gold) !important;
}
.page-holiday .conversion-bar {
  background: rgba(5, 10, 18, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(254, 243, 199, 0.15);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}
.page-holiday .conversion-bar-phone {
  color: var(--holiday-gold) !important;
}

/* Footer — deep night with gold accents */
.footer-holiday {
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.98) 0%, #050a12 100%);
  border-top: 1px solid rgba(254, 243, 199, 0.1);
  color: rgba(254, 252, 232, 0.85);
  position: relative;
  z-index: 1;
}
.footer-holiday a {
  color: var(--holiday-gold);
}
.footer-holiday a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(254, 243, 199, 0.3);
}
.page-holiday .section-holiday-light .section-title {
  color: var(--holiday-gold);
}

/* --------------------------------------------
   Trust section & CTA blocks
   -------------------------------------------- */
.trust-section .section-title {
  text-align: center;
}
.trust-section .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.trust-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  display: grid;
  gap: var(--space-md);
}
.trust-grid li {
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-accent);
  color: var(--color-text);
  transition: box-shadow var(--transition-smooth), border-left-color var(--transition-smooth), transform var(--transition-smooth);
}
.trust-grid li:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--color-accent-hover);
  transform: translateX(2px);
}
.trust-note {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-text-light);
}
.cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.cta-block-light .btn-cta {
  color: var(--color-text-on-dark);
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-block-light .btn-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Home page: See Our Work strip */
.home-gallery-strip .section-title {
  text-align: center;
}
.home-gallery-strip .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}
.home-gallery-grid:hover .home-gallery-item {
  border-color: rgba(255, 255, 255, 0.12);
}
.home-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.2);
}
.home-gallery-item:hover img {
  transform: scale(1.05);
}
.home-gallery-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* --------------------------------------------
   Services grid
   -------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth), border-color var(--transition-smooth);
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}
.service-card-featured {
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.service-card-featured:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.22);
}
.service-card-img {
  height: 220px;
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}
.service-card-img:empty {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3Ccircle cx='5' cy='10' r='1'/%3E%3Ccircle cx='35' cy='15' r='0.8'/%3E%3C/g%3E%3C/svg%3E");
}
.service-card-body {
  padding: var(--space-xl);
}
.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.service-card-body p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-light);
}
.service-card-body .link-arrow {
  display: inline-block;
  margin-bottom: var(--space-md);
}
.service-card-body .btn {
  margin-right: var(--space-sm);
}

/* --------------------------------------------
   Process list & guarantee
   -------------------------------------------- */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2xl);
  max-width: 60ch;
}
.process-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: var(--space-lg);
  position: relative;
}
.process-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}
.guarantee-box {
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  max-width: 56ch;
  box-shadow: var(--shadow);
}
.guarantee-box h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 var(--space-sm);
  color: var(--color-accent);
}
.guarantee-box p {
  margin: 0;
  color: var(--color-text-light);
}
.packages-note {
  font-weight: 600;
  color: var(--color-text);
}

/* --------------------------------------------
   Comparison table
   -------------------------------------------- */
.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
@media (max-width: 768px) {
  .comparison-table {
    grid-template-columns: 1fr;
  }
}
.comparison-col {
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}
.comparison-col:hover {
  box-shadow: var(--shadow);
}
.comparison-col-traditional {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.comparison-col-permanent {
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(5, 150, 105, 0.4);
}
.comparison-col h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 var(--space-md);
  color: #fff;
}
.comparison-desc {
  color: #94a3b8;
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
}
.comparison-list li {
  padding: var(--space-sm) 0;
  font-size: 0.9375rem;
  color: #cbd5e1;
}
.comparison-total {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}
.comparison-total-high {
  color: #fca5a5;
}
.comparison-total-low {
  color: #6ee7b7;
}
.comparison-note {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: var(--space-md);
}

/* --------------------------------------------
   DIY vs Our system
   -------------------------------------------- */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}
@media (max-width: 768px) {
  .vs-grid {
    grid-template-columns: 1fr;
  }
}
.vs-block {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}
.vs-block h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 var(--space-md);
}
.vs-block-bad {
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(185, 28, 28, 0.6);
}
.vs-block-bad h3 { color: #fca5a5; }
.vs-block-bad ul { color: #cbd5e1; }
.vs-block-good {
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(34, 197, 94, 0.6);
}
.vs-block-good h3 { color: #86efac; }
.vs-block-good ul { color: #cbd5e1; }
.vs-block ul {
  margin: 0;
  padding-left: var(--space-lg);
}
.vs-block li {
  margin-bottom: var(--space-sm);
}
.section-quote {
  font-style: italic;
  color: var(--color-text-light);
  max-width: 50ch;
  margin: var(--space-lg) 0 0;
}

/* --------------------------------------------
   App section
   -------------------------------------------- */
.app-section {
  padding: var(--space-3xl) 0;
}
.app-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
@media (max-width: 900px) {
  .app-container {
    grid-template-columns: 1fr;
  }
}
.app-features {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}
.app-features li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  color: #cbd5e1;
}
.app-features li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}
.app-note {
  font-size: 0.9375rem;
  color: #94a3b8;
  margin: var(--space-md) 0 0;
}
.app-placeholder {
  min-height: 400px;
  background: rgba(0,0,0,0.3);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.app-placeholder::after {
  content: "App screens placeholder (21stDev)";
}

/* --------------------------------------------
   Two-col, About, Gallery
   -------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}
.two-col-block .section-title {
  font-size: 1.5rem;
}

.choose-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2xl);
  display: grid;
  gap: var(--space-md);
}
.choose-grid li {
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-accent);
  color: var(--color-text);
  transition: box-shadow var(--transition-smooth), border-left-color var(--transition-smooth), transform var(--transition-smooth);
}
.choose-grid li:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--color-accent-hover);
  transform: translateX(2px);
}

/* About page — story section with cool gradient mesh effect */
.page-about .about-story-section {
  position: relative;
  overflow: hidden;
}
.about-story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 20% 20%, rgba(226, 232, 240, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 100% at 80% 80%, rgba(226, 232, 240, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(226, 232, 240, 0.03) 0%, transparent 60%);
  animation: about-mesh-shift 12s ease-in-out infinite;
  pointer-events: none;
}
.about-story-bg::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.015) 80px,
    rgba(255, 255, 255, 0.015) 81px
  );
  animation: about-mesh-shift 15s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes about-mesh-shift {
  0%, 100% { opacity: 1; transform: scale(1) translate(0, 0); }
  50% { opacity: 0.9; transform: scale(1.02) translate(1%, 0.5%); }
}
.about-story-inner {
  position: relative;
  z-index: 1;
}

/* About stats strip */
.about-stats {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.about-stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2xl);
  max-width: 720px;
  margin: 0 auto;
}
.about-stat {
  text-align: center;
  min-width: 120px;
}
.about-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}
.about-stat-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 500px) {
  .about-stats-grid { gap: var(--space-xl); }
  .about-stat-value { font-size: 1.5rem; }
}

.page-about .about-choose-section .choose-grid {
  margin-bottom: var(--space-2xl);
}
.about-choose-item {
  transition: box-shadow var(--transition-smooth), border-left-color var(--transition-smooth), transform var(--transition-smooth);
}

.about-story {
  margin: var(--space-2xl) 0;
  max-width: 65ch;
}
.about-story p {
  margin-bottom: var(--space-md);
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}
.about-img {
  height: 240px;
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.why-pro {
  background: var(--color-bg-elevated);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text);
}
.why-pro h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-item {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.15);
}
.gallery-grid-permanent {
  margin-top: var(--space-xl);
}
.gallery-cta a {
  font-weight: 600;
}

/* --------------------------------------------
   Contact
   -------------------------------------------- */
.contact-section {
  padding: var(--space-3xl) 0;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.contact-phone,
.contact-email {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent) !important;
}

.quote-form {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
}
.quote-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-xs);
  color: #e2e8f0;
}
.quote-form input,
.quote-form select {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: border-color var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth);
}
.quote-form input:focus,
.quote-form select:focus {
  outline: none;
  border-color: rgba(226, 232, 240, 0.5);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(226, 232, 240, 0.15);
}
.quote-form input::placeholder {
  color: #94a3b8;
}
.quote-form select option {
  background: var(--color-bg-dark);
  color: #fff;
}
.quote-form button {
  margin-top: var(--space-lg);
}

/* --------------------------------------------
   Footer
   -------------------------------------------- */
.footer {
  background: rgba(2, 6, 23, 0.98);
  color: #94a3b8;
  padding: var(--space-3xl) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}
.footer-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition-smooth);
}
.footer a {
  color: #94a3b8;
}
.footer a:hover {
  color: var(--color-accent);
}
.footer-privacy {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------
   Before / After slider
   -------------------------------------------- */
.before-after {
  --before-after-pct: 0;
  position: relative;
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  aspect-ratio: 16/10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}
.before-after-before,
.before-after-after {
  position: absolute;
  inset: 0;
}
.before-after-before img,
.before-after-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.before-after-after {
  clip-path: inset(0 calc(100% - var(--before-after-pct) * 1%) 0 0);
  pointer-events: none;
}
.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--before-after-pct) * 1%);
  width: 48px;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.before-after-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
.before-after-handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.before-after-handle-grip::before,
.before-after-handle-grip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -6px;
  border-style: solid;
}
.before-after-handle-grip::before {
  left: 2px;
  border-width: 6px 8px 6px 0;
  border-color: transparent #fff transparent transparent;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.4));
}
.before-after-handle-grip::after {
  right: 2px;
  left: auto;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.4));
}
.before-after-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  -webkit-appearance: none;
  appearance: none;
}
.before-after-labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* --------------------------------------------
   Contact page
   -------------------------------------------- */
.contact-info-hero {
  margin-top: var(--space-lg);
}
.contact-info-hero .contact-phone,
.contact-info-hero .contact-email {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}
.contact-benefits {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}
.contact-benefits li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
}
.contact-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}
.quote-form-light {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.quote-form-light label {
  color: var(--color-text);
}
.quote-form-light input,
.quote-form-light select {
  background: var(--color-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-text);
}
.quote-form-light input::placeholder {
  color: var(--color-text-muted);
}
.quote-form-light select option {
  background: var(--color-bg-dark);
  color: var(--color-text);
}

.gallery-cta {
  text-align: center;
  margin-top: var(--space-xl);
  font-weight: 500;
}

/* Image lightbox — tap/click to expand */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#lightbox.lightbox-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  cursor: default;
  pointer-events: none;
}
.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
/* Hint that carousel/content images are tappable */
.permanent-what-slide-media,
.app-mockup,
.two-col-media,
.before-after-before,
.before-after-after,
.holiday-media-wrap {
  cursor: pointer;
}
.permanent-what-slide-media img,
.app-mockup img,
.two-col-media img,
.before-after-before img,
.before-after-after img,
.holiday-media-wrap img {
  cursor: pointer;
}
