/* Epic Custom Lighting — Home page styles */

:root {
  --ecl-ink: #0e1218;
  --ecl-charcoal: #1a1f2a;
  --ecl-charcoal-2: #232936;
  --ecl-gold: #c9a961;
  --ecl-gold-deep: #a78845;
  --ecl-cream: #f4ecd8;
  --ecl-paper: #faf6ed;
  --ecl-paper-2: #f1ebdd;
  --ecl-line: rgba(201, 169, 97, 0.25);
  --ecl-line-dark: rgba(244, 236, 216, 0.15);
  --ecl-text: #2a2f3a;
  --ecl-text-muted: #6b7280;

  --ecl-font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --ecl-font-sans: 'Manrope', -apple-system, system-ui, sans-serif;
  --ecl-font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ecl-font-sans);
  color: var(--ecl-text);
  background: var(--ecl-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ===== Buttons ===== */
.ecl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: var(--ecl-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.ecl-btn-lg { padding: 16px 30px; font-size: 13px; }
.ecl-btn-full { width: 100%; justify-content: center; padding: 16px 24px; }
.ecl-btn-gold {
  background: var(--ecl-gold);
  color: var(--ecl-charcoal);
  border-color: var(--ecl-gold);
}
.ecl-btn-gold:hover { background: var(--ecl-gold-deep); border-color: var(--ecl-gold-deep); transform: translateY(-1px); }
.ecl-btn-ghost {
  color: var(--ecl-cream);
  border-color: rgba(244, 236, 216, 0.3);
  background: transparent;
}
.ecl-btn-ghost:hover { border-color: var(--ecl-gold); color: var(--ecl-gold); }
.ecl-btn-outline {
  color: var(--ecl-cream);
  border-color: var(--ecl-cream);
  background: transparent;
}
.ecl-btn-outline:hover { background: var(--ecl-cream); color: var(--ecl-charcoal); }
.ecl-btn-outline-dark {
  color: var(--ecl-charcoal);
  border-color: var(--ecl-charcoal);
  background: transparent;
}
.ecl-btn-outline-dark:hover { background: var(--ecl-charcoal); color: var(--ecl-cream); }

/* ===== Common section heads ===== */
.ecl-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ecl-gold-deep);
  margin-bottom: 24px;
}
.ecl-eyebrow-light { color: var(--ecl-gold); }
.ecl-eyebrow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ecl-gold);
}
.ecl-section-title {
  font-family: var(--ecl-font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ecl-charcoal);
  margin: 0;
  text-wrap: balance;
}
.ecl-section-title em {
  font-style: italic;
  color: var(--ecl-gold-deep);
}
.ecl-section-title-light { color: var(--ecl-cream); }
.ecl-section-head { margin-bottom: 60px; }
.ecl-section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== NAV ===== */
.ecl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(14, 18, 24, 0.6), rgba(14, 18, 24, 0));
  transition: background 0.3s ease;
}
.ecl-nav.is-scrolled {
  background: rgba(14, 18, 24, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ecl-line-dark);
}
.ecl-nav-top {
  border-bottom: 1px solid rgba(244, 236, 216, 0.1);
  font-size: 12px;
  color: var(--ecl-cream);
}
.ecl-nav-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.ecl-nav-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
}
.ecl-nav-top-right {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
}
.ecl-nav-top-right a { transition: color 0.2s; }
.ecl-nav-top-right a:hover { color: var(--ecl-gold); }
.ecl-divider { width: 1px; height: 12px; background: rgba(244, 236, 216, 0.25); }

.ecl-nav-main-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.ecl-nav-logo img { height: 240px; width: auto; }
.ecl-nav-links {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.ecl-nav-item {
  position: relative;
}
.ecl-nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: var(--ecl-cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.ecl-nav-item > a:hover { color: var(--ecl-gold); }
.ecl-caret { font-size: 9px; opacity: 0.6; }
.ecl-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ecl-charcoal);
  border: 1px solid var(--ecl-line-dark);
  border-top: 2px solid var(--ecl-gold);
  padding: 8px 0;
  min-width: 240px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.ecl-nav-dropdown a {
  display: block;
  padding: 12px 22px;
  color: var(--ecl-cream);
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.15s;
}
.ecl-nav-dropdown a:hover { color: var(--ecl-gold); background: var(--ecl-charcoal-2); padding-left: 28px; }
.ecl-nav-cta { display: flex; gap: 12px; }

/* ===== HERO ===== */
.ecl-hero {
  position: relative;
  min-height: 100vh;
  padding: 200px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ecl-charcoal);
}
.ecl-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.85) saturate(1.05);
  opacity: 0;
  transition: opacity 1.8s ease;
  animation: ecl-hero-pan 20s ease-in-out infinite alternate;
}
.ecl-hero-bg.is-active { opacity: 1; }
/* Wide / panoramic photos that look better fully visible. The slide
   shows the image centered and contained on a black backdrop instead
   of zooming/cropping it. */
.ecl-hero-bg.is-contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #0e1218;
  transform: none;
  animation: none;
}
@keyframes ecl-hero-pan {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}
.ecl-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,18,24,0.18) 0%, rgba(14,18,24,0.04) 30%, rgba(14,18,24,0.55) 100%),
    radial-gradient(ellipse at 0% 100%, rgba(14,18,24,0.32), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(14,18,24,0.32), transparent 55%);
}
.ecl-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  text-align: center;
  color: var(--ecl-cream);
}
.ecl-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--ecl-gold);
  margin-bottom: 30px;
}
.ecl-eyebrow-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ecl-gold), transparent);
}
.ecl-hero-title {
  font-family: var(--ecl-font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.ecl-hero-line1 { display: block; font-weight: 300; }
.ecl-hero-line2 { display: block; font-weight: 400; }
.ecl-hero-line2 em {
  font-style: italic;
  color: var(--ecl-gold);
  font-weight: 300;
}
.ecl-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 44px;
  opacity: 0.92;
  text-wrap: pretty;
}
.ecl-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.ecl-hero-rotator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -56px auto 64px;
  color: var(--ecl-cream);
}
.ecl-hero-rotator-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(244, 236, 216, 0.5);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}
.ecl-hero-rotator-dot.is-active {
  background: var(--ecl-gold);
  border-color: var(--ecl-gold);
  transform: scale(1.2);
}
.ecl-hero-rotator-kind {
  margin-left: 8px;
  font-family: var(--ecl-font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.75);
}
.ecl-hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--ecl-line-dark);
}
.ecl-hero-strip > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ecl-hero-strip strong {
  font-family: var(--ecl-font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ecl-gold);
  letter-spacing: -0.02em;
}
.ecl-hero-strip span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* sparkles */
.ecl-sparkle { position: absolute; z-index: 2; opacity: 0.85; animation: ecl-twinkle 3s ease-in-out infinite; }
.ecl-sparkle-1 { top: 18%; left: 8%; animation-delay: 0s; }
.ecl-sparkle-2 { top: 28%; right: 12%; animation-delay: 1.2s; }
.ecl-sparkle-3 { bottom: 32%; left: 14%; animation-delay: 0.6s; }
.ecl-sparkle-4 { top: 55%; right: 8%; animation-delay: 1.8s; }
@keyframes ecl-twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}

.ecl-hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--ecl-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.24em;
  opacity: 0.6;
}
.ecl-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--ecl-gold), transparent);
  animation: ecl-scroll-line 2s ease-in-out infinite;
}
@keyframes ecl-scroll-line {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ===== TRUST STRIP ===== */
.ecl-trust {
  background: var(--ecl-charcoal);
  border-top: 1px solid var(--ecl-line-dark);
  padding: 40px 0;
  color: var(--ecl-cream);
}
.ecl-trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.ecl-trust-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--ecl-gold);
  margin-bottom: 24px;
}
.ecl-trust-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}
.ecl-trust-mark {
  font-family: var(--ecl-font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  opacity: 0.7;
  letter-spacing: 0.01em;
}

/* ===== INTRO ===== */
.ecl-intro {
  background: var(--ecl-paper);
  padding: 120px 0;
}
.ecl-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.ecl-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--ecl-gold-deep);
  margin-bottom: 24px;
}
.ecl-intro-title {
  font-family: var(--ecl-font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ecl-charcoal);
  margin: 0 0 60px;
  max-width: 1100px;
}
.ecl-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.ecl-intro-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ecl-text);
  margin: 0;
}
.ecl-intro-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ecl-pillar {
  border-top: 1px solid var(--ecl-line);
  padding-top: 20px;
}
.ecl-pillar-num {
  font-family: var(--ecl-font-mono);
  font-size: 11px;
  color: var(--ecl-gold-deep);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 14px;
}
.ecl-pillar h4 {
  font-family: var(--ecl-font-display);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--ecl-charcoal);
  letter-spacing: -0.01em;
}
.ecl-pillar p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ecl-text-muted);
  margin: 0;
}

/* ===== SERVICES ===== */
.ecl-services {
  background: var(--ecl-paper-2);
  padding: 120px 0;
  position: relative;
}
.ecl-services-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.ecl-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (min-width: 980px) {
  .ecl-services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}
.ecl-services-stagger .ecl-service-card:nth-child(2) { transform: translateY(0); }
.ecl-service-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 31, 42, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.ecl-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26, 31, 42, 0.14);
}
.ecl-services-stagger .ecl-service-card:nth-child(2):hover { transform: translateY(-6px); }
.ecl-service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ecl-service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
/* Photos that look better fully visible — show the whole frame on a dark
   backdrop instead of cropping. Targeted by filename so it survives card
   reorders. */
.ecl-service-image img[src*="services-landscape-tia"] {
  object-fit: contain;
  background: #0e1218;
}
/* Don't zoom contained images on hover — that defeats the purpose */
.ecl-service-card:hover .ecl-service-image img[src*="services-landscape-tia"] {
  transform: none;
}
.ecl-service-card:hover .ecl-service-image img { transform: scale(1.06); }
.ecl-service-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(14, 18, 24, 0.75);
  backdrop-filter: blur(8px);
  color: var(--ecl-cream);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid rgba(244, 236, 216, 0.2);
}
.ecl-service-body {
  padding: 32px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ecl-service-label {
  font-family: var(--ecl-font-mono);
  font-size: 11px;
  color: var(--ecl-gold-deep);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  display: block;
}
.ecl-service-body h3 {
  font-family: var(--ecl-font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ecl-charcoal);
  margin: 0 0 16px;
  text-wrap: balance;
}
.ecl-service-body > p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ecl-text-muted);
  margin: 0 0 22px;
}
.ecl-service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--ecl-line);
  padding-top: 20px;
}
.ecl-service-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ecl-text);
}
.ecl-bullet-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ecl-gold);
  flex-shrink: 0;
}
.ecl-service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ecl-charcoal);
  border-bottom: 1px solid var(--ecl-charcoal);
  padding-bottom: 6px;
  align-self: flex-start;
  transition: all 0.25s;
}
.ecl-service-link:hover { color: var(--ecl-gold-deep); border-color: var(--ecl-gold-deep); gap: 14px; }

/* ===== GALLERY ===== */
.ecl-gallery {
  background: var(--ecl-paper);
  padding: 120px 0;
}
.ecl-gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.ecl-gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ecl-chip {
  padding: 10px 18px;
  border: 1px solid var(--ecl-line);
  background: transparent;
  color: var(--ecl-text);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.2s;
}
.ecl-chip:hover { border-color: var(--ecl-gold); color: var(--ecl-gold-deep); }
.ecl-chip.is-active { background: var(--ecl-charcoal); color: var(--ecl-cream); border-color: var(--ecl-charcoal); }

.ecl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.ecl-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: var(--ecl-charcoal);
}
.ecl-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
}
.ecl-gallery-item:hover img { transform: scale(1.05); filter: brightness(0.7); }
.ecl-gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent, rgba(14,18,24,0.85));
  color: var(--ecl-cream);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}
.ecl-gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.ecl-cap-kind {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecl-gold);
  font-weight: 600;
}
.ecl-cap-label {
  font-family: var(--ecl-font-display);
  font-size: 18px;
  font-style: italic;
}

/* dynamic spans for visual rhythm */
.ecl-gallery-item-1 { grid-column: span 3; grid-row: span 2; }
.ecl-gallery-item-2 { grid-column: span 3; grid-row: span 1; }
.ecl-gallery-item-3 { grid-column: span 2; grid-row: span 1; }
.ecl-gallery-item-4 { grid-column: span 2; grid-row: span 2; }
.ecl-gallery-item-5 { grid-column: span 2; grid-row: span 1; }
.ecl-gallery-item-6 { grid-column: span 2; grid-row: span 1; }

.ecl-gallery-foot { margin-top: 48px; text-align: center; }

/* ===== FEATURED (Signature Collection) ===== */
.ecl-featured {
  background: var(--ecl-charcoal);
  padding: 120px 0;
  color: var(--ecl-cream);
  position: relative;
  overflow: hidden;
}
.ecl-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 20% 50%, rgba(201,169,97,0.08), transparent),
    radial-gradient(ellipse 600px 300px at 80% 20%, rgba(201,169,97,0.05), transparent);
  pointer-events: none;
}
.ecl-featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ecl-featured-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
}
.ecl-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.ecl-featured-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(14, 18, 24, 0.85);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ecl-gold);
  font-weight: 600;
  border: 1px solid rgba(201,169,97,0.3);
}
.ecl-featured-copy h2 {
  font-family: var(--ecl-font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
  color: var(--ecl-cream);
}
.ecl-featured-copy .ecl-section-eyebrow { color: var(--ecl-gold); }
.ecl-lead {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.85;
  margin: 0 0 36px;
  max-width: 520px;
}
.ecl-palette-row {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ecl-palette { display: flex; flex-direction: column; gap: 10px; }
.ecl-palette-swatches {
  display: flex;
  width: 120px;
  height: 32px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--ecl-line-dark);
}
.ecl-palette-swatches span { flex: 1; }
.ecl-palette > span:last-child {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.75;
}

/* ===== PROCESS ===== */
.ecl-process {
  background: var(--ecl-ink);
  padding: 120px 0;
  color: var(--ecl-cream);
  position: relative;
}
.ecl-process-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.ecl-process-steps {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.ecl-process-steps li {
  position: relative;
  padding: 32px 24px 32px 0;
}
.ecl-process-num {
  position: relative;
  min-width: 140px;
  height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid var(--ecl-gold);
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(201,169,97,0.12), rgba(201,169,97,0.02));
}
.ecl-process-num svg {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  flex-shrink: 0;
}
.ecl-process-num span {
  font-family: var(--ecl-font-sans);
  font-size: 13px;
  color: var(--ecl-gold);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  line-height: 1;
}
.ecl-process-steps h4 {
  font-family: var(--ecl-font-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--ecl-cream);
  letter-spacing: -0.01em;
}
.ecl-process-steps p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0;
}
.ecl-process-connector {
  position: absolute;
  top: 75px;
  right: -12px;
  width: 24px;
  height: 1px;
  background: var(--ecl-gold);
  opacity: 0.4;
}

/* ===== WHY US ===== */
.ecl-why {
  background: var(--ecl-paper);
  padding: 120px 0;
}
.ecl-why-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ecl-why-image {
  aspect-ratio: 5 / 6;
  border-radius: 3px;
  overflow: hidden;
}
.ecl-why-image img { width: 100%; height: 100%; object-fit: cover; }
.ecl-why-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ecl-why-item {
  display: flex;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ecl-line);
}
.ecl-why-item:last-child { border-bottom: 0; padding-bottom: 0; }
.ecl-why-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201,169,97,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecl-why-item h4 {
  font-family: var(--ecl-font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--ecl-charcoal);
  letter-spacing: -0.01em;
}
.ecl-why-item p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--ecl-text-muted);
}

/* ===== REVIEWS ===== */
.ecl-reviews {
  background: var(--ecl-paper-2);
  padding: 120px 0;
}
.ecl-reviews-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.ecl-reviews-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.ecl-stars {
  display: flex;
  gap: 4px;
  align-items: baseline;
  font-size: 22px;
  color: var(--ecl-gold);
}
.ecl-stars-num {
  font-family: var(--ecl-font-display);
  font-size: 28px;
  color: var(--ecl-charcoal);
  margin-left: 8px;
  font-weight: 500;
}
.ecl-reviews-source {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ecl-text-muted);
  text-transform: uppercase;
}
.ecl-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ecl-review-card {
  background: #fff;
  padding: 26px 24px;
  border-radius: 3px;
  border: 1px solid var(--ecl-line);
  transition: all 0.3s;
}
.ecl-review-card:hover {
  border-color: var(--ecl-gold);
  box-shadow: 0 12px 32px rgba(26,31,42,0.08);
}
.ecl-review-stars {
  color: var(--ecl-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.ecl-review-text {
  font-family: var(--ecl-font-display);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
  font-style: italic;
  color: var(--ecl-charcoal);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.ecl-review-attr { display: flex; flex-direction: column; gap: 4px; }
.ecl-review-attr strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ecl-review-attr span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ecl-text-muted);
}

/* ===== CONTACT ===== */
.ecl-contact {
  position: relative;
  padding: 120px 0;
  color: var(--ecl-cream);
  overflow: hidden;
}
.ecl-contact-bg {
  position: absolute; inset: 0;
}
.ecl-contact-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.2);
}
.ecl-contact-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,18,24,0.6), rgba(14,18,24,0.85));
}
.ecl-contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.ll-contact-framed {
  align-items: stretch;
}
.ll-contact-noimg {
  background: var(--ecl-ink);
}
.ll-contact-left {
  display: flex;
  flex-direction: column;
}
.ll-contact-left .ecl-contact-copy > p {
  margin-bottom: 32px;
}
.ll-contact-flyer {
  align-self: stretch;
  display: flex;
}
.ll-contact-flyer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--ecl-gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
@media (max-width: 960px) {
  .ll-contact-framed {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }
  .ll-contact-flyer { order: -1; max-width: 460px; margin: 0 auto; }
  .ll-contact-flyer img { height: auto; }
}
/* Flyer variant (Residential Christmas contact): copy+form left, flyer right */
.ecl-contact-flyered { background: var(--ecl-ink); }
.ecl-contact-flyered .ecl-contact-inner { align-items: stretch; }
.ecl-contact-flyered .ecl-contact-left {
  display: flex;
  flex-direction: column;
}
.ecl-contact-flyered .ecl-contact-copy > p { margin-bottom: 32px; }
.ecl-contact-flyer { align-self: stretch; display: flex; }
.ecl-contact-flyer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--ecl-gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
@media (max-width: 960px) {
  .ecl-contact-flyered .ecl-contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }
  .ecl-contact-flyer { order: -1; max-width: 460px; margin: 0 auto; }
  .ecl-contact-flyer img { height: auto; }
}
.ecl-contact-copy h2 {
  font-family: var(--ecl-font-display);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 28px;
  color: var(--ecl-cream);
}
.ecl-contact-copy h2 em { color: var(--ecl-gold); font-style: italic; }
.ecl-contact-copy > p {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 0 48px;
}
.ecl-contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--ecl-line-dark);
  padding-top: 28px;
}
.ecl-info-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--ecl-gold);
  display: block;
  margin-bottom: 6px;
}
.ecl-contact-info a {
  font-family: var(--ecl-font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ecl-cream);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.ecl-contact-info a:hover { color: var(--ecl-gold); }

/* form */
.ecl-form {
  background: var(--ecl-cream);
  color: var(--ecl-charcoal);
  padding: 40px 36px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ecl-form-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ecl-line);
}
.ecl-form-head h3 {
  font-family: var(--ecl-font-display);
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}
.ecl-form-head span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ecl-gold-deep);
  font-weight: 600;
}
.ecl-form label,
.ecl-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ecl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ecl-form label > span,
.ecl-form-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ecl-charcoal);
}
.ecl-form input,
.ecl-form textarea {
  background: #fff;
  border: 1px solid var(--ecl-line);
  padding: 12px 14px;
  font-family: var(--ecl-font-sans);
  font-size: 14px;
  color: var(--ecl-charcoal);
  border-radius: 2px;
  transition: border-color 0.2s;
  resize: vertical;
}
.ecl-form input:focus,
.ecl-form textarea:focus {
  outline: none;
  border-color: var(--ecl-gold);
}
.ecl-radio-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ecl-radio {
  padding: 8px 14px;
  border: 1px solid var(--ecl-line);
  background: #fff;
  color: var(--ecl-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.2s;
}
.ecl-radio:hover { border-color: var(--ecl-gold); }
.ecl-radio.is-active {
  background: var(--ecl-charcoal);
  color: var(--ecl-cream);
  border-color: var(--ecl-charcoal);
}
.ecl-form-fine {
  font-size: 11px;
  color: var(--ecl-text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.ecl-footer {
  background: var(--ecl-ink);
  color: var(--ecl-cream);
  padding: 80px 0 0;
}
.ecl-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 2.5fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ecl-line-dark);
}
.ecl-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ecl-footer-brand img { height: 240px; width: auto; margin-bottom: 24px; }
.ecl-footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 0 20px;
}
.ecl-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(244, 236, 216, 0.22);
  color: var(--ecl-cream);
  opacity: 0.78;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.ecl-footer-social a:hover {
  opacity: 1;
  color: var(--ecl-gold);
  border-color: var(--ecl-gold);
  background: rgba(201, 169, 97, 0.08);
  transform: translateY(-1px);
}
.ecl-footer-social a svg { display: block; margin: auto; }
/* Social icons inside the CONNECT footer column — stacked vertically to
   match the other footer columns' link layout */
.ecl-footer-social-col {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}
.ecl-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ecl-footer-cols h5 {
  font-family: var(--ecl-font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecl-gold);
  margin: 0 0 18px;
  font-weight: 600;
}
.ecl-footer-cols a,
.ecl-footer-cols span {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  opacity: 0.78;
  transition: all 0.2s;
}
.ecl-footer-cols a:hover { opacity: 1; color: var(--ecl-gold); }
.ecl-footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.6;
}
.ecl-footer-bottom > div { display: flex; gap: 22px; }

/* ===== TWEAKS PALETTE OVERRIDES ===== */
body[data-palette="copper"] {
  --ecl-gold: #c97a4a;
  --ecl-gold-deep: #9a5a35;
}
body[data-palette="silver"] {
  --ecl-gold: #c4c4c4;
  --ecl-gold-deep: #9a9a9a;
}
body[data-palette="emerald"] {
  --ecl-gold: #4a8a6a;
  --ecl-gold-deep: #356a4f;
}
body[data-palette="deepgold"] {
  --ecl-gold: #b08838;
  --ecl-gold-deep: #8a6a2a;
}

/* ===== Hamburger + Mobile Drawer ===== */
.ecl-nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--ecl-line-dark);
  width: 44px;
  height: 44px;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.2s, background 0.2s;
}
.ecl-nav-hamburger:hover { border-color: var(--ecl-gold); background: rgba(201, 169, 97, 0.06); }
.ecl-nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ecl-cream);
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
.ecl-nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ecl-nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.ecl-nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.ecl-nav-drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 24, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}
.ecl-nav-drawer-scrim.is-open { opacity: 1; pointer-events: auto; }

.ecl-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 88vw);
  background: var(--ecl-charcoal);
  border-left: 1px solid var(--ecl-line-dark);
  box-shadow: -24px 0 64px rgba(0,0,0,0.45);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.ecl-nav-drawer.is-open { transform: translateX(0); }
.ecl-nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--ecl-line-dark);
}
.ecl-nav-drawer-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ecl-gold);
}
.ecl-nav-drawer-close {
  background: transparent;
  border: none;
  color: var(--ecl-cream);
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.ecl-nav-drawer-close:hover { color: var(--ecl-gold); }

.ecl-nav-drawer-links {
  flex: 1;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.ecl-nav-drawer-item { border-bottom: 1px solid rgba(244, 236, 216, 0.08); }
.ecl-nav-drawer-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: transparent;
  border: none;
  color: var(--ecl-cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, background 0.2s;
}
.ecl-nav-drawer-link:hover { color: var(--ecl-gold); background: rgba(201, 169, 97, 0.04); }
.ecl-nav-drawer-caret {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--ecl-gold);
  width: 24px;
  text-align: center;
  font-weight: 300;
}
.ecl-nav-drawer-item.is-expanded .ecl-nav-drawer-link { color: var(--ecl-gold); }
.ecl-nav-drawer-sub {
  display: flex;
  flex-direction: column;
  padding: 4px 0 18px 28px;
  background: rgba(0,0,0,0.18);
}
.ecl-nav-drawer-sub a {
  padding: 10px 28px 10px 16px;
  color: var(--ecl-cream);
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0.78;
  border-left: 1px solid rgba(201, 169, 97, 0.25);
  transition: color 0.2s, opacity 0.2s, border-color 0.2s;
}
.ecl-nav-drawer-sub a:hover {
  color: var(--ecl-gold);
  opacity: 1;
  border-left-color: var(--ecl-gold);
}

.ecl-nav-drawer-foot {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--ecl-line-dark);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ecl-nav-drawer-cta { width: 100%; justify-content: center; }
.ecl-nav-drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.ecl-nav-drawer-contact a {
  color: var(--ecl-cream);
  opacity: 0.78;
  transition: color 0.2s, opacity 0.2s;
}
.ecl-nav-drawer-contact a:hover { color: var(--ecl-gold); opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .ecl-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1280px) {
  .ecl-nav-main-inner { gap: 24px; padding: 16px 24px; }
  .ecl-nav-logo img { height: 160px; }
  .ecl-nav-item > a { padding: 10px 12px; font-size: 12.5px; letter-spacing: 0.03em; }
}
@media (max-width: 980px) {
  .ecl-nav-links { display: none; }
  .ecl-nav-cta { display: none; }
  .ecl-nav-hamburger { display: inline-flex; }
  .ecl-nav-main-inner { grid-template-columns: 1fr auto; }
  .ecl-nav-logo img { height: 140px; }
  .ecl-services-grid,
  .ecl-intro-pillars,
  .ecl-process-steps,
  .ecl-footer-cols { grid-template-columns: repeat(2, 1fr); }
  .ecl-services-stagger .ecl-service-card:nth-child(2) { transform: none; }
  .ecl-services-stagger .ecl-service-card:nth-child(2):hover { transform: translateY(-6px); }
  .ecl-intro-grid,
  .ecl-featured-inner,
  .ecl-why-inner,
  .ecl-contact-inner,
  .ecl-footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .ecl-process-connector { display: none; }
  .ecl-gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .ecl-hero-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ecl-intro-pillars,
  .ecl-process-steps,
  .ecl-reviews-grid,
  .ecl-footer-cols { grid-template-columns: 1fr; }
  .ecl-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .ecl-gallery-item-1, .ecl-gallery-item-2, .ecl-gallery-item-3, .ecl-gallery-item-4, .ecl-gallery-item-5, .ecl-gallery-item-6 { grid-column: span 2; grid-row: span 1; }
  .ecl-section-head-row { flex-direction: column; align-items: flex-start; }
  .ecl-form-row { grid-template-columns: 1fr; }
}

/* =============================================================
   RESIDENTIAL V2 — LUXURY HOLIDAY REDESIGN
   Cinematic editorial layout with luxe-holiday atmosphere.
   ============================================================= */

/* The v2 page uses warmer champagne/copper accents site-wide */
body[data-page="res-v2"] {
  --ecl-gold: #d4b876;
  --ecl-gold-deep: #b08260;
  --ecl-cream: #f6ead0;
  --r2-ink: #0a0807;
  --r2-charcoal: #161210;
  --r2-warm: #1d1612;
  --r2-paper: #faf3e4;
  --r2-paper-2: #f1e7ce;
  --r2-line: rgba(212, 184, 118, 0.22);
  --r2-line-light: rgba(40, 28, 20, 0.12);
  --r2-mute-on-dark: rgba(246, 234, 208, 0.72);
}

/* Shared eyebrow + title type — used across r2 sections */
.r2-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ecl-gold);
}
.r2-section-eyebrow-dark { color: var(--ecl-gold); }
.r2-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--r2-ink);
  margin: 16px 0 0;
  text-wrap: balance;
}
.r2-section-title em { font-style: italic; font-weight: 400; color: var(--ecl-gold); }
.r2-section-title-light { color: var(--ecl-cream); }
.r2-section-title-light em { color: var(--ecl-gold); }

/* ───────── HERO ───────── */
.r2-hero {
  position: relative;
  min-height: 100vh;
  padding: 220px 0 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--r2-ink);
}
.r2-hero .ecl-hero-bg {
  filter: brightness(0.5) saturate(1.2) contrast(1.05);
  opacity: 1;
  animation: r2-slow-zoom 28s ease-in-out infinite alternate;
}
@keyframes r2-slow-zoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}
.r2-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 210, 145, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(10,8,6,0.42) 0%, rgba(10,8,6,0.08) 30%, rgba(8,6,4,0.85) 100%),
    radial-gradient(ellipse at 50% 95%, rgba(212, 184, 118, 0.22), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(10,8,6,0.6), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(10,8,6,0.6), transparent 50%);
  z-index: 1;
}
.r2-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  color: var(--ecl-cream);
}
.r2-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--ecl-gold);
  margin-bottom: 36px;
}
.r2-line { width: 64px; height: 1px; background: var(--ecl-gold); opacity: 0.55; }
.r2-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  text-wrap: balance;
  color: var(--ecl-cream);
}
.r2-hero-title span { display: block; }
.r2-hero-italic em {
  font-style: italic;
  font-weight: 400;
  color: var(--ecl-gold);
  text-shadow: 0 0 36px rgba(212, 184, 118, 0.45);
}
.r2-hero-sub {
  max-width: 580px;
  margin: 0 auto 48px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(246, 234, 208, 0.84);
  text-wrap: pretty;
}
.r2-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.r2-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 234, 208, 0.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.r2-hero-scroll:hover { color: var(--ecl-gold); transform: translateY(2px); }

/* ───────── MANIFESTO ───────── */
.r2-manifesto {
  position: relative;
  background: var(--r2-paper);
  padding: 140px 32px;
  overflow: hidden;
}
.r2-manifesto::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  width: 1px; height: 240px;
  background: linear-gradient(180deg, transparent, var(--ecl-gold) 50%, transparent);
  opacity: 0.5;
  transform: translateX(-50%);
}
.r2-manifesto::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  width: 1px; height: 240px;
  background: linear-gradient(180deg, transparent, var(--ecl-gold) 50%, transparent);
  opacity: 0.5;
  transform: translateX(-50%);
}
.r2-manifesto-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.r2-manifesto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--ecl-gold-deep);
  margin-bottom: 48px;
}
.r2-manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.r2-manifesto-lead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--r2-ink);
  margin: 0;
  text-wrap: balance;
}
.r2-manifesto-lead em {
  font-weight: 400;
  color: var(--ecl-gold-deep);
}
.r2-manifesto-lead-2 { color: rgba(10, 8, 6, 0.78); }
.r2-manifesto-foot {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ecl-gold-deep);
}

/* ───────── MAGAZINE SPREAD ───────── */
.r2-spread {
  background: var(--r2-paper);
  padding: 100px 32px 140px;
}
.r2-spread-head {
  max-width: 1280px;
  margin: 0 auto 80px;
  text-align: center;
}
.r2-spread-list {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.r2-spread-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.r2-spread-row.r2-align-right { grid-template-columns: 1fr 1.15fr; }
.r2-spread-row.r2-align-right .r2-spread-image { order: 2; }
.r2-spread-row.r2-align-right .r2-spread-copy { order: 1; padding-left: 0; padding-right: 24px; }

.r2-spread-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--r2-warm);
  box-shadow: 0 24px 60px rgba(10, 8, 6, 0.18), 0 2px 0 rgba(212, 184, 118, 0.18) inset;
}
.r2-spread-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.r2-spread-row:hover .r2-spread-image img { transform: scale(1.03); }
.r2-spread-image-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 8, 6, 0.25));
  pointer-events: none;
}
.r2-spread-copy { padding-left: 24px; }
.r2-spread-meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 18px;
}
.r2-spread-n {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--ecl-gold);
  letter-spacing: -0.04em;
}
.r2-spread-loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ecl-gold-deep);
}
.r2-spread-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--r2-ink);
  margin: 0 0 18px;
  text-wrap: balance;
}
.r2-spread-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10, 8, 6, 0.72);
  margin: 0;
  max-width: 480px;
  text-wrap: pretty;
}

/* ───────── WHAT'S INCLUDED (dark luxe) ───────── */
.r2-included {
  background: var(--r2-warm);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.r2-included::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(212, 184, 118, 0.08), transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(176, 130, 96, 0.06), transparent 50%);
  pointer-events: none;
}
.r2-included-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.r2-included-head { position: sticky; top: 120px; }
.r2-included-lede {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--r2-mute-on-dark);
  max-width: 380px;
  text-wrap: pretty;
}
.r2-included-list {
  display: flex;
  flex-direction: column;
}
.r2-included-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--r2-line);
}
.r2-included-item:last-child { border-bottom: 1px solid var(--r2-line); }
.r2-included-num span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  color: var(--ecl-gold);
}
.r2-included-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--ecl-cream);
  letter-spacing: -0.01em;
}
.r2-included-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--r2-mute-on-dark);
  margin: 0;
  max-width: 540px;
  text-wrap: pretty;
}

/* ───────── PULL QUOTE ───────── */
.r2-quote {
  position: relative;
  min-height: 540px;
  padding: 120px 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--r2-ink);
}
.r2-quote-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) blur(8px) saturate(1.2);
  transform: scale(1.1);
}
.r2-quote-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,8,6,0.55) 30%, rgba(10,8,6,0.85) 80%),
    radial-gradient(ellipse at 50% 0%, rgba(212, 184, 118, 0.10), transparent 60%);
}
.r2-quote-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  color: var(--ecl-cream);
}
.r2-quote-mark {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 140px;
  line-height: 0.6;
  color: var(--ecl-gold);
  opacity: 0.6;
  margin-bottom: 20px;
  user-select: none;
}
.r2-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 0 0 40px;
  color: var(--ecl-cream);
  text-wrap: balance;
}
.r2-quote-text em { font-style: italic; font-weight: 400; color: var(--ecl-gold); }
.r2-quote-cite {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
}
.r2-quote-name { font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ecl-cream); }
.r2-quote-place { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ecl-gold); }

/* ───────── FAQ (two-column editorial) ───────── */
.r2-faq {
  background: var(--r2-paper);
  padding: 140px 32px;
}
.r2-faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.r2-faq-aside {
  position: sticky;
  top: 120px;
}
.r2-faq-aside-body {
  margin: 24px 0 32px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(10, 8, 6, 0.65);
  max-width: 320px;
  text-wrap: pretty;
}
.r2-faq-list {
  border-top: 1px solid var(--r2-line-light);
}
.r2-faq-item { border-bottom: 1px solid var(--r2-line-light); }
.r2-faq-q {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 28px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--r2-ink);
  transition: color 0.2s ease;
}
.r2-faq-q:hover { color: var(--ecl-gold-deep); }
.r2-faq-q-num {
  flex-shrink: 0;
  width: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ecl-gold);
}
.r2-faq-q-text { flex: 1; text-wrap: balance; }
.r2-faq-q-icon {
  color: var(--ecl-gold);
  transition: transform 0.3s ease;
  display: inline-flex;
}
.r2-faq-item.is-open .r2-faq-q-icon { transform: rotate(180deg); }
.r2-faq-a {
  padding: 0 0 28px 56px;
  animation: r2-faq-in 0.3s ease;
}
.r2-faq-a p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(10, 8, 6, 0.72);
  margin: 0;
  max-width: 640px;
  text-wrap: pretty;
}
@keyframes r2-faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───────── CLOSER (cinematic dark CTA before contact) ───────── */
.r2-closer {
  position: relative;
  background: var(--r2-ink);
  padding: 160px 32px 100px;
  overflow: hidden;
  text-align: center;
}
.r2-closer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 184, 118, 0.12), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(176, 130, 96, 0.08), transparent 50%);
}
.r2-closer-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  color: var(--ecl-cream);
}
.r2-closer-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 7.5vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 32px 0 28px;
  color: var(--ecl-cream);
  text-wrap: balance;
}
.r2-closer-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ecl-gold);
  text-shadow: 0 0 32px rgba(212, 184, 118, 0.4);
}
.r2-closer-sub {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(246, 234, 208, 0.78);
  margin: 0 auto;
  max-width: 540px;
  text-wrap: pretty;
}

/* ───────── Responsive ───────── */
@media (max-width: 980px) {
  .r2-spread-row,
  .r2-spread-row.r2-align-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .r2-spread-row.r2-align-right .r2-spread-image { order: 0; }
  .r2-spread-row.r2-align-right .r2-spread-copy { order: 1; padding: 0 12px; }
  .r2-spread-copy { padding: 0 12px; }
  .r2-spread-list { gap: 72px; }

  .r2-included-inner { grid-template-columns: 1fr; gap: 48px; }
  .r2-included-head { position: static; }
  .r2-faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .r2-faq-aside { position: static; }
}
@media (max-width: 720px) {
  .r2-hero { padding: 160px 0 80px; }
  .r2-manifesto { padding: 100px 20px; }
  .r2-spread { padding: 80px 20px 100px; }
  .r2-spread-head { margin-bottom: 56px; }
  .r2-included { padding: 100px 20px; }
  .r2-included-item { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
  .r2-included-num span { font-size: 36px; }
  .r2-quote { padding: 100px 20px; min-height: 460px; }
  .r2-quote-mark { font-size: 100px; }
  .r2-faq { padding: 100px 20px; }
  .r2-faq-q { font-size: 19px; gap: 16px; padding: 22px 0; }
  .r2-faq-q-num { width: 26px; }
  .r2-faq-a { padding-left: 42px; }
  .r2-closer { padding: 120px 20px 80px; }
}
   Atmospheric warmth for the homepage: ambient bokeh, refined
   champagne/copper palette, sparkle twinkle, subtle bloom.
   Layout untouched; this is mood-only.
   ============================================================= */

body[data-luxe="on"] {
  --ecl-gold: #c9a961;
  --ecl-gold-deep: #a78845;
  --ecl-cream: #f4ecd8;
}

/* Hero image: keep it crisp — just a touch of vibrance, no sepia tint */
body[data-luxe="on"] .ecl-hero-bg {
  filter: brightness(0.88) saturate(1.08);
}

/* Hero overlay: light vignette only — no warm tint film, photos stay crisp */
body[data-luxe="on"] .ecl-hero-overlay {
  background:
    linear-gradient(180deg, rgba(14,18,24,0.18) 0%, rgba(14,18,24,0.04) 30%, rgba(14,18,24,0.55) 100%),
    radial-gradient(ellipse at 0% 100%, rgba(14, 18, 24, 0.35), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(14, 18, 24, 0.35), transparent 50%);
}

/* Ambient bokeh — floating soft golden orbs.
   Particles are rendered by Hero's <BokehField/>.
   Each particle takes CSS variables for position, size, opacity, drift. */
.ecl-bokeh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ecl-bokeh-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 222, 168, 0.85) 0%,
    rgba(255, 200, 130, 0.45) 35%,
    rgba(255, 200, 130, 0) 75%);
  filter: blur(var(--blur, 1px));
  opacity: 0;
  animation: ecl-bokeh-drift var(--dur, 22s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}
@keyframes ecl-bokeh-drift {
  0%   { transform: translate(0, 0)  scale(0.9); opacity: 0; }
  15%  { opacity: var(--opacity, 0.55); }
  50%  { transform: translate(var(--dx, 18px), var(--dy, -28px)) scale(1.05); opacity: var(--opacity, 0.55); }
  85%  { opacity: var(--opacity, 0.55); }
  100% { transform: translate(0, 0)  scale(0.9); opacity: 0; }
}

/* Sparkle twinkle — slow breathing pulse, no flicker */
@keyframes ecl-twinkle {
  0%, 100% { opacity: 0.92; filter: drop-shadow(0 0 6px rgba(255, 220, 160, 0.45)); transform: scale(1); }
  50%      { opacity: 0.55; filter: drop-shadow(0 0 14px rgba(255, 220, 160, 0.85)); transform: scale(1.08); }
}
body[data-luxe="on"] .ecl-sparkle { will-change: transform, opacity; }
body[data-luxe="on"] .ecl-sparkle-1 svg { animation: ecl-twinkle 4.8s ease-in-out infinite; animation-delay: 0s; }
body[data-luxe="on"] .ecl-sparkle-2 svg { animation: ecl-twinkle 5.6s ease-in-out infinite; animation-delay: 1.2s; }
body[data-luxe="on"] .ecl-sparkle-3 svg { animation: ecl-twinkle 4.2s ease-in-out infinite; animation-delay: 2.4s; }
body[data-luxe="on"] .ecl-sparkle-4 svg { animation: ecl-twinkle 5.1s ease-in-out infinite; animation-delay: 3.0s; }

/* Section-eyebrow sparkles also breathe (anywhere on the page) */
body[data-luxe="on"] .ecl-section-eyebrow svg {
  animation: ecl-twinkle 5.4s ease-in-out infinite;
}

/* Trust strip: subtle warm-gold top edge so the hero "lands" on something glowing */
body[data-luxe="on"] .ecl-trust {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 184, 118, 0.10), transparent 60%),
    var(--ecl-charcoal);
}

/* Dark section seams (hero → trust → services etc.): subtle warm bloom line */
body[data-luxe="on"] .ecl-hero { box-shadow: 0 -1px 0 rgba(212, 184, 118, 0) inset; }

/* Process: ambient warm fog so the dark section glows from within */
body[data-luxe="on"] .ecl-process {
  background:
    radial-gradient(ellipse at 15% 30%, rgba(212, 184, 118, 0.08), transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(176, 130, 96, 0.06), transparent 50%),
    var(--ecl-ink);
}

/* Contact section: warm the overlay so it reads as candlelit, not corporate */
body[data-luxe="on"] .ecl-contact-bg::after {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 184, 118, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(22,16,12,0.55), rgba(18,14,10,0.92));
}

/* Featured / dark accent sections pick up the warm bloom too */
body[data-luxe="on"] .ecl-featured {
  background:
    radial-gradient(ellipse at 75% 30%, rgba(212, 184, 118, 0.07), transparent 55%),
    var(--ecl-charcoal);
}

/* Subtle gold glow on the primary CTA */
body[data-luxe="on"] .ecl-btn-gold {
  box-shadow: 0 0 0 0 rgba(212, 184, 118, 0);
  transition: box-shadow 0.4s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
body[data-luxe="on"] .ecl-btn-gold:hover {
  box-shadow: 0 0 24px 0 rgba(212, 184, 118, 0.45);
}

/* Slight refinement of italic display headlines in luxe mode — a hair softer */
body[data-luxe="on"] .ecl-hero-line2 em {
  color: var(--ecl-gold);
  text-shadow: 0 0 24px rgba(212, 184, 118, 0.35);
}

/* Reduce intensity if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  body[data-luxe="on"] .ecl-bokeh-dot,
  body[data-luxe="on"] .ecl-sparkle svg,
  body[data-luxe="on"] .ecl-section-eyebrow svg {
    animation: none;
  }
  body[data-luxe="on"] .ecl-bokeh-dot { opacity: var(--opacity, 0.4); }
}
   Brightens paper surfaces, switches cold charcoal → warm pine
   evergreen, and layers cranberry accents on top of gold. Used
   on the Residential Christmas page; classic pages are untouched.
   ============================================================= */

body[data-theme="festive"] {
  --fest-evergreen:     #7cfc00;
  --fest-evergreen-dk:  #5cc200;
  --fest-evergreen-lt:  #a8ff4d;
  --fest-red:           #B91C1C;
  --fest-red-dk:        #8e1212;
  --fest-red-lt:        #dc2626;
  --fest-white:         #FFFFFF;
  --fest-warm:          #FFF8EC;
  --fest-warm-2:        #fef0d6;
  --fest-gold:          #D8B15A;
  --fest-gold-dk:       #b8924a;
  --fest-charcoal:      #1A1A1A;
  --fest-line:          rgba(15, 59, 46, 0.14);

  /* Repaint the brand tokens used throughout the existing CSS */
  --ecl-ink:        var(--fest-charcoal);
  --ecl-charcoal:   var(--fest-evergreen);
  --ecl-charcoal-2: var(--fest-evergreen-lt);
  --ecl-paper:      var(--fest-warm);
  --ecl-paper-2:    var(--fest-white);
  --ecl-cream:      var(--fest-warm);
  --ecl-line:       var(--fest-line);
  --ecl-line-dark:  rgba(255, 248, 236, 0.18);

  background: var(--fest-warm);
}

/* ───── NAV — brighter forest green with bolder text ───── */
body[data-theme="festive"] .ecl-nav {
  background: rgba(124, 252, 0, 0.94);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(216, 177, 90, 0.4);
}
body[data-theme="festive"] .ecl-nav.is-scrolled {
  background: var(--fest-evergreen);
  box-shadow: 0 6px 24px rgba(92, 194, 0, 0.28);
}
body[data-theme="festive"] .ecl-nav-item > a {
  color: var(--fest-warm);
  font-weight: 600;
}
body[data-theme="festive"] .ecl-nav-item > a:hover { color: var(--fest-gold); }
body[data-theme="festive"] .ecl-nav-phone {
  color: var(--fest-warm);
  border-color: rgba(255, 248, 236, 0.4);
  background: transparent;
}
body[data-theme="festive"] .ecl-nav-phone:hover {
  background: var(--fest-gold);
  color: var(--fest-evergreen-dk);
  border-color: var(--fest-gold);
}

/* ───── HERO — much lighter overlay so the lights show ───── */
body[data-theme="festive"] .ecl-page-hero { background: var(--fest-evergreen-dk); }
body[data-theme="festive"] .ecl-page-hero .ecl-hero-bg {
  filter: brightness(0.95) saturate(1.18) contrast(1.05);
}
body[data-theme="festive"] .ecl-page-hero .ecl-hero-overlay {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(8, 34, 24, 0.40), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(8, 34, 24, 0.55), transparent 65%),
    radial-gradient(ellipse at 0% 100%, rgba(8, 34, 24, 0.35), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(8, 34, 24, 0.35), transparent 60%);
}
body[data-theme="festive"] .ecl-page-hero .ecl-hero-title {
  color: var(--fest-white);
  text-shadow: 0 2px 32px rgba(8, 34, 24, 0.6);
}
body[data-theme="festive"] .ecl-page-hero .ecl-hero-title em { color: var(--fest-gold); }
body[data-theme="festive"] .ecl-page-hero .ecl-hero-sub {
  color: rgba(255, 248, 236, 0.95);
  text-shadow: 0 1px 16px rgba(8, 34, 24, 0.6);
}
body[data-theme="festive"] .ecl-page-hero .ecl-hero-eyebrow { color: var(--fest-gold); }
body[data-theme="festive"] .ecl-page-hero .ecl-eyebrow-line {
  background: var(--fest-gold);
  opacity: 0.7;
}

/* ───── BUTTONS — Christmas red primary, evergreen outline ───── */
body[data-theme="festive"] .ecl-btn-gold {
  background: var(--fest-red);
  color: var(--fest-warm);
  border-color: var(--fest-red);
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.32);
}
body[data-theme="festive"] .ecl-btn-gold:hover {
  background: var(--fest-red-dk);
  border-color: var(--fest-red-dk);
  box-shadow: 0 8px 24px rgba(142, 18, 18, 0.42);
  transform: translateY(-1px);
}
body[data-theme="festive"] .ecl-btn-outline {
  color: var(--fest-warm);
  border-color: rgba(255, 248, 236, 0.6);
}
body[data-theme="festive"] .ecl-btn-outline:hover {
  background: var(--fest-warm);
  color: var(--fest-evergreen-dk);
  border-color: var(--fest-warm);
}
body[data-theme="festive"] .ecl-btn-outline-dark {
  color: var(--fest-evergreen);
  border-color: var(--fest-evergreen);
}
body[data-theme="festive"] .ecl-btn-outline-dark:hover {
  background: var(--fest-evergreen);
  color: var(--fest-warm);
  border-color: var(--fest-evergreen);
}

/* ───── SECTION EYEBROWS — alternate red / green ───── */
body[data-theme="festive"] .ecl-section-eyebrow {
  color: var(--fest-red);
  font-weight: 600;
}
body[data-theme="festive"] .ecl-included .ecl-section-eyebrow { color: var(--fest-evergreen); }
body[data-theme="festive"] .ecl-process .ecl-section-eyebrow { color: var(--fest-red); }
body[data-theme="festive"] .ecl-faq .ecl-section-eyebrow { color: var(--fest-evergreen); }
body[data-theme="festive"] .ecl-gallery .ecl-section-eyebrow { color: var(--fest-red); }

body[data-theme="festive"] .ecl-section-title { color: var(--fest-charcoal); }
body[data-theme="festive"] .ecl-section-lede { color: rgba(26, 26, 26, 0.7); }

/* ───── GALLERY — pure white surface ───── */
body[data-theme="festive"] .ecl-gallery { background: var(--fest-white); }
body[data-theme="festive"] .ecl-gallery-item {
  background: var(--fest-warm-2);
  box-shadow: 0 8px 28px rgba(15, 59, 46, 0.08);
}
body[data-theme="festive"] .ecl-cap-kind { font-weight: 600; }
body[data-theme="festive"] .ecl-gallery-item:nth-child(3n+1) .ecl-cap-kind { color: var(--fest-red-lt); }
body[data-theme="festive"] .ecl-gallery-item:nth-child(3n+2) .ecl-cap-kind { color: var(--fest-gold); }
body[data-theme="festive"] .ecl-gallery-item:nth-child(3n+3) .ecl-cap-kind { color: #34d399; }

/* ───── WHAT'S INCLUDED — warm white + red/white/green ribbon ───── */
body[data-theme="festive"] .ecl-included {
  background: var(--fest-warm);
  position: relative;
}
body[data-theme="festive"] .ecl-included::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--fest-red) 0px, var(--fest-red) 90px,
    var(--fest-white) 90px, var(--fest-white) 130px,
    var(--fest-evergreen) 130px, var(--fest-evergreen) 220px,
    var(--fest-white) 220px, var(--fest-white) 260px
  );
  opacity: 0.9;
}
body[data-theme="festive"] .ecl-included-grid {
  background: var(--fest-line);
  border-color: var(--fest-line);
  box-shadow: 0 12px 36px rgba(15, 59, 46, 0.08);
}
body[data-theme="festive"] .ecl-included-card { background: var(--fest-white); }
body[data-theme="festive"] .ecl-included-card:hover { background: var(--fest-warm-2); }
body[data-theme="festive"] .ecl-included-card h3 { color: var(--fest-evergreen-dk); }
body[data-theme="festive"] .ecl-included-card p { color: rgba(26, 26, 26, 0.72); }
body[data-theme="festive"] .ecl-included-card:nth-child(odd) .ecl-included-num { color: var(--fest-red); }
body[data-theme="festive"] .ecl-included-card:nth-child(even) .ecl-included-num { color: var(--fest-evergreen); }

/* ───── PROCESS — bright white with red/green pills ───── */
body[data-theme="festive"] .ecl-process {
  background: var(--fest-white);
  background-image:
    radial-gradient(circle at 8% 12%, rgba(185, 28, 28, 0.06), transparent 36%),
    radial-gradient(circle at 92% 88%, rgba(15, 59, 46, 0.06), transparent 40%);
  color: var(--fest-charcoal);
}
body[data-theme="festive"] .ecl-process .ecl-section-title { color: var(--fest-charcoal); }
body[data-theme="festive"] .ecl-process-steps h4 { color: var(--fest-evergreen-dk); }
body[data-theme="festive"] .ecl-process-steps p { color: rgba(26, 26, 26, 0.7); opacity: 1; }
body[data-theme="festive"] .ecl-process-steps li:nth-child(odd) .ecl-process-num {
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.12), rgba(185, 28, 28, 0.03));
  border-color: var(--fest-red);
}
body[data-theme="festive"] .ecl-process-steps li:nth-child(odd) .ecl-process-num span { color: var(--fest-red); }
body[data-theme="festive"] .ecl-process-steps li:nth-child(odd) .ecl-process-num svg polygon { fill: var(--fest-red) !important; }
body[data-theme="festive"] .ecl-process-steps li:nth-child(even) .ecl-process-num {
  background: linear-gradient(135deg, rgba(15, 59, 46, 0.12), rgba(15, 59, 46, 0.03));
  border-color: var(--fest-evergreen);
}
body[data-theme="festive"] .ecl-process-steps li:nth-child(even) .ecl-process-num span { color: var(--fest-evergreen); }
body[data-theme="festive"] .ecl-process-steps li:nth-child(even) .ecl-process-num svg polygon { fill: var(--fest-evergreen) !important; }
body[data-theme="festive"] .ecl-process-connector {
  background: linear-gradient(90deg, var(--fest-red), var(--fest-gold), var(--fest-evergreen));
  opacity: 0.7;
  height: 2px;
}

/* ───── FAQ — warm white surface, alternating numerals ───── */
body[data-theme="festive"] .ecl-faq { background: var(--fest-warm); }
body[data-theme="festive"] .ecl-faq-list { border-top-color: var(--fest-line); }
body[data-theme="festive"] .ecl-faq-item { border-bottom-color: var(--fest-line); }
body[data-theme="festive"] .ecl-faq-q { color: var(--fest-evergreen-dk); }
body[data-theme="festive"] .ecl-faq-item:nth-child(odd) .ecl-faq-q-num { color: var(--fest-red); }
body[data-theme="festive"] .ecl-faq-item:nth-child(even) .ecl-faq-q-num { color: var(--fest-evergreen); }
body[data-theme="festive"] .ecl-faq-q-icon { color: var(--fest-gold); }
body[data-theme="festive"] .ecl-faq-q:hover { color: var(--fest-red); }
body[data-theme="festive"] .ecl-faq-a p { color: rgba(26, 26, 26, 0.78); }
body[data-theme="festive"] .ecl-faq-foot { color: rgba(26, 26, 26, 0.7); }

/* ───── CONTACT — deep evergreen with red + gold glow ───── */
body[data-theme="festive"] .ecl-contact-bg::after {
  background:
    radial-gradient(ellipse at 18% 0%, rgba(185, 28, 28, 0.20), transparent 50%),
    radial-gradient(ellipse at 82% 100%, rgba(216, 177, 90, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(15, 59, 46, 0.78), rgba(8, 34, 24, 0.96));
}
body[data-theme="festive"] .ecl-contact-copy h2 em { color: var(--fest-gold); }

/* ───── FOOTER — evergreen with gold accents ───── */
body[data-theme="festive"] .ecl-footer {
  background: var(--fest-evergreen-dk);
  color: var(--fest-warm);
}
body[data-theme="festive"] .ecl-footer h5 { color: var(--fest-gold); }
body[data-theme="festive"] .ecl-footer a { color: rgba(255, 248, 236, 0.82); }
body[data-theme="festive"] .ecl-footer a:hover { color: var(--fest-gold); }

/* ───── MOBILE DRAWER — evergreen ───── */
body[data-theme="festive"] .ecl-nav-drawer { background: var(--fest-evergreen); }
body[data-theme="festive"] .ecl-nav-drawer-label { color: var(--fest-gold); }
body[data-theme="festive"] .ecl-nav-drawer-link { color: var(--fest-warm); }
body[data-theme="festive"] .ecl-nav-drawer-link:hover {
  color: var(--fest-gold);
  background: rgba(216, 177, 90, 0.06);
}

/* =============================================================
   RESIDENTIAL CHRISTMAS PAGE
   ============================================================= */

/* Page hero (shorter than home hero) */
.ecl-page-hero {
  min-height: 78vh;
  padding: 180px 0 80px;
}
.ecl-page-hero .ecl-hero-inner {
  padding-bottom: 40px;
}
/* Brighten the residential hero photo slightly so it stands out more */
.ecl-page-hero .ecl-hero-bg {
  filter: brightness(0.72) saturate(1.15);
}

/* Section lede paragraph used on secondary pages */
.ecl-section-lede {
  max-width: 460px;
  color: rgba(26, 31, 42, 0.66);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
  margin: 12px 0 0;
}
.ecl-section-head-row .ecl-section-lede {
  margin-top: 0;
}

/* ===== What's Included ===== */
.ecl-included {
  background: var(--ecl-paper-2);
  padding: 120px 32px;
  position: relative;
}
.ecl-included-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.ecl-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ecl-line);
  margin-top: 64px;
  border: 1px solid var(--ecl-line);
}
.ecl-included-card {
  padding: 40px 32px;
  background: var(--ecl-paper-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s ease;
}
.ecl-included-card:hover { background: var(--ecl-paper); }
.ecl-included-num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ecl-font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ecl-gold);
  margin-bottom: 8px;
}
.ecl-included-card h3 {
  font-family: var(--ecl-font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ecl-charcoal);
  margin: 0;
}
.ecl-included-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(26, 31, 42, 0.7);
  margin: 0;
  text-wrap: pretty;
}

/* ===== FAQ ===== */
.ecl-faq {
  background: var(--ecl-paper);
  padding: 120px 32px;
}
.ecl-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.ecl-faq-list {
  margin-top: 64px;
  border-top: 1px solid var(--ecl-line);
}
.ecl-faq-item {
  border-bottom: 1px solid var(--ecl-line);
}
.ecl-faq-q {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--ecl-font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ecl-charcoal);
  transition: color 0.2s ease;
}
.ecl-faq-q:hover { color: var(--ecl-gold-deep); }
.ecl-faq-q-num {
  font-family: var(--ecl-font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ecl-gold);
  flex-shrink: 0;
  width: 28px;
}
.ecl-faq-q-text {
  flex: 1;
  text-wrap: balance;
}
.ecl-faq-q-icon {
  flex-shrink: 0;
  color: var(--ecl-gold);
  transition: transform 0.3s ease;
  display: inline-flex;
}
.ecl-faq-item.is-open .ecl-faq-q-icon { transform: rotate(180deg); }
.ecl-faq-a {
  padding: 0 0 28px 48px;
  animation: ecl-faq-in 0.3s ease;
}
.ecl-faq-a p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(26, 31, 42, 0.78);
  margin: 0;
  text-wrap: pretty;
  max-width: 720px;
}
@keyframes ecl-faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.ecl-faq-foot {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(26, 31, 42, 0.65);
  font-size: 15px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .ecl-included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .ecl-included { padding: 80px 20px; }
  .ecl-included-grid { grid-template-columns: 1fr; }
  .ecl-included-card { padding: 32px 24px; }
  .ecl-faq { padding: 80px 20px; }
  .ecl-faq-q { font-size: 18px; gap: 14px; padding: 20px 0; }
  .ecl-faq-q-num { width: 24px; }
  .ecl-faq-a { padding-left: 38px; }
  .ecl-faq-foot { flex-direction: column; gap: 16px; text-align: center; }
  .ecl-page-hero { min-height: 70vh; padding: 140px 0 60px; }
}


/* =============================================================
   SERVICE AREAS — compact strip at the very bottom of the page,
   sitting below the footer. Subtle, SEO-friendly, not a splash.
   ============================================================= */
.ecl-areas {
  background: var(--ecl-ink);
  border-top: 1px solid var(--ecl-line-dark);
  padding: 32px 32px 36px;
  color: var(--ecl-cream);
}
.ecl-areas-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.ecl-areas-eyebrow {
  display: inline-block;
  font-family: var(--ecl-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ecl-gold);
  margin-bottom: 8px;
}
.ecl-areas-title {
  font-family: var(--ecl-font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ecl-cream);
  margin: 0 0 14px;
  opacity: 0.95;
  text-align: center;
}
.ecl-areas-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px 16px;
  justify-items: center;
}
.ecl-areas-grid li {
  position: relative;
  padding: 3px 0 3px 12px;
  font-family: var(--ecl-font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(244, 236, 216, 0.78);
  text-align: left;
  transition: color 0.2s ease;
}
.ecl-areas-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 4px;
  margin-top: -2px;
  background: var(--ecl-gold);
  opacity: 0.7;
  border-radius: 50%;
}
.ecl-areas-grid li:hover { color: var(--ecl-gold); }
.ecl-areas-foot {
  margin: 14px 0 0;
  font-size: 11.5px;
  font-style: italic;
  color: rgba(244, 236, 216, 0.55);
}
.ecl-areas-foot a {
  color: var(--ecl-gold);
  border-bottom: 1px solid rgba(201, 169, 97, 0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.ecl-areas-foot a:hover { color: var(--ecl-cream); border-color: var(--ecl-cream); }

/* Responsive */
@media (max-width: 1100px) {
  .ecl-areas-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .ecl-areas { padding: 28px 20px 32px; }
  .ecl-areas-grid { grid-template-columns: repeat(3, 1fr); gap: 1px 12px; }
}
@media (max-width: 460px) {
  .ecl-areas-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =============================================================
   REVIEWS — Google-style compact widget
   ============================================================= */
.ecl-reviews {
  background: var(--ecl-paper);
  padding: 80px 32px 100px;
}
.ecl-reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.ecl-rv-title {
  font-family: var(--ecl-font-display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.01em;
  color: var(--ecl-charcoal);
  margin: 0 0 36px;
  text-wrap: balance;
}

/* Toolbar: overall rating + write-a-review button */
.ecl-rv-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid var(--ecl-line);
  border-radius: 4px;
  text-align: left;
}
.ecl-rv-rating-label {
  display: block;
  font-family: var(--ecl-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26,31,42,0.6);
  margin-bottom: 6px;
}
.ecl-rv-rating-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.ecl-rv-rating-num {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--ecl-charcoal);
  line-height: 1;
}
.ecl-rv-rating-stars {
  color: var(--ecl-gold);
  font-size: 18px;
  letter-spacing: 3px;
}
.ecl-rv-rating-count {
  color: rgba(26,31,42,0.55);
  font-size: 14px;
}
.ecl-rv-write {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1.5px solid var(--ecl-gold);
  border-radius: 4px;
  color: var(--ecl-gold-deep);
  font-family: var(--ecl-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.ecl-rv-write:hover {
  background: var(--ecl-gold);
  color: var(--ecl-charcoal);
  border-color: var(--ecl-gold);
}

/* Review cards grid */
.ecl-rv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.ecl-rv-card {
  background: #fff;
  border: 1px solid var(--ecl-line);
  border-radius: 4px;
  padding: 22px 22px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ecl-rv-card:hover {
  border-color: var(--ecl-gold);
  box-shadow: 0 8px 24px rgba(26,31,42,0.06);
}
.ecl-rv-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ecl-rv-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--ecl-font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.ecl-rv-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ecl-rv-name {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ecl-font-sans);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ecl-charcoal);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.ecl-rv-verified {
  display: inline-flex;
  color: #4285F4;
  margin-top: 1px;
}
.ecl-rv-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ecl-font-sans);
  font-size: 11.5px;
  color: rgba(26,31,42,0.55);
}
.ecl-rv-stars {
  color: var(--ecl-gold);
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}
.ecl-rv-text {
  font-family: var(--ecl-font-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(26,31,42,0.82);
  margin: 0;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ecl-rv-text.is-open {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.ecl-rv-more {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--ecl-font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ecl-gold-deep);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.ecl-rv-more:hover { color: var(--ecl-charcoal); }

/* "Read all on Google" link below the grid */
.ecl-rv-allink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ecl-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ecl-gold-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.ecl-rv-allink:hover { color: var(--ecl-charcoal); }

/* Responsive */
@media (max-width: 1080px) {
  .ecl-rv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ecl-reviews { padding: 60px 20px 80px; }
  .ecl-rv-toolbar { flex-direction: column; align-items: stretch; padding: 18px 20px; }
  .ecl-rv-write { justify-content: center; }
  .ecl-rv-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   RESIDENTIAL CHRISTMAS — FESTIVE (BRIGHT/WHITE) THEME
   New layout per the December mock-up. Bright white surfaces,
   Christmas red + evergreen + soft gold accents, garland side
   decoration on hero and contact sections.
   ============================================================= */

:is(body[data-page="res-festive"],body[data-page="comm-festive"]) {
  --fp-red:        #b91c1c;
  --fp-red-dk:     #8a1212;
  --fp-green:      #0f3b2e;
  --fp-green-dk:   #082218;
  --fp-green-lt:   #1f5a45;
  --fp-gold:       #d8b15a;
  --fp-warm:       #ffffff;
  --fp-paper:      #ffffff;
  --fp-paper-2:    #ffffff;
  --fp-line:       rgba(15, 59, 46, 0.10);
  --fp-line-strong:rgba(15, 59, 46, 0.18);
  --fp-ink:        #1a1a1a;
  --fp-mute:       rgba(26, 26, 26, 0.65);

  background: var(--fp-paper);
  color: var(--fp-ink);
}

/* Nav on this page sits flat on white with charcoal text */
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-nav {
  background: #fff;
  border-bottom: 1px solid var(--fp-line);
  box-shadow: 0 2px 10px rgba(15, 59, 46, 0.04);
}
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-nav.is-scrolled { background: #fff; }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-nav-item > a { color: var(--fp-ink); font-weight: 500; }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-nav-logo img { content: url('assets/epic-logo-darktext.png'); height: 160px !important; }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-nav-item > a:hover { color: var(--fp-red); }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-nav-phone {
  color: var(--fp-red);
  border-color: var(--fp-red);
  background: transparent;
}
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-nav-phone:hover {
  background: var(--fp-red);
  color: #fff;
}
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-btn-gold {
  background: var(--fp-green);
  color: #fff;
  border-color: var(--fp-green);
}
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-btn-gold:hover {
  background: var(--fp-green-dk);
  border-color: var(--fp-green-dk);
}
/* Dim the existing TweaksPanel toggle — not needed on this page */
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .twk-panel { display: none; }

/* Shared eyebrow + section title styles for this page */
.fest-eyebrow {
  display: inline-block;
  font-family: var(--ecl-font-mono, 'JetBrains Mono', monospace);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fest-eyebrow-red   { color: var(--fp-red); }
.fest-eyebrow-green { color: var(--fp-green); }
.fest-section-title {
  font-family: var(--ecl-font-display, 'Cormorant Garamond', serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fp-ink);
  margin: 14px 0 0;
  text-wrap: balance;
}
.fest-section-title-lg {
  font-size: clamp(40px, 4.6vw, 62px);
}
.fest-red    { color: var(--fp-red); }
.fest-green  { color: var(--fp-green); }
.fest-italic { font-style: italic; }
.fest-section-title em.fest-italic {
  font-style: italic;
  font-weight: 400;
}

/* Buttons — red primary, green secondary, white outline */
.fest-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.fest-btn-red {
  background: var(--fp-red);
  color: #fff;
  border-color: var(--fp-red);
  box-shadow: 0 6px 16px rgba(185, 28, 28, 0.22);
}
.fest-btn-red:hover {
  background: var(--fp-red-dk);
  border-color: var(--fp-red-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(138, 18, 18, 0.30);
}
.fest-btn-green {
  background: var(--fp-green);
  color: #fff;
  border-color: var(--fp-green);
}
.fest-btn-green:hover {
  background: var(--fp-green-dk);
  border-color: var(--fp-green-dk);
  transform: translateY(-1px);
}
.fest-btn-outline-green {
  background: transparent;
  color: var(--fp-green);
  border-color: var(--fp-green);
}
.fest-btn-outline-green:hover {
  background: var(--fp-green);
  color: #fff;
}
.fest-btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 13px;
}

/* ─────── Garland — photographic swag wrapped around the page ─────── */
.fest-page-garland {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
}
/* Each strip is a div with the garland image as a repeating background.
   Top strip is full-width. Side strips rotate the same image 90deg so
   the swag drapes vertically. */
.fest-pg-top,
.fest-pg-left,
.fest-pg-right {
  position: absolute;
  background-image: url('assets/garland-swag.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}
.fest-pg-top {
  top: 0; left: 0; right: 0;
  height: 110px;
}
.fest-pg-left,
.fest-pg-right {
  top: 110px;
  bottom: 0;
  width: 110px;
  /* Same image, rotated 90deg around its top-left corner */
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.fest-pg-left  { left: 0; }
.fest-pg-right { right: 0; }

@media (max-width: 980px) {
  .fest-pg-top { height: 72px; }
  .fest-pg-left, .fest-pg-right { top: 72px; width: 72px; }
}
@media (max-width: 640px) {
  .fest-pg-top { height: 52px; }
  .fest-pg-left, .fest-pg-right { display: none; }
}

/* ─────── Garland corner accents (small clusters, not full borders) ─────── */
.fest-corner {
  position: absolute;
  width: 230px;
  height: 230px;
  background-image: url('assets/garland-corner.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 6;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.16));
}
.fest-corner-tl { top: -30px; left: -48px; transform: rotate(132deg); }
.fest-corner-tr { top: -30px; right: -48px; transform: rotate(-132deg) scaleX(-1); }
.fest-corner-bl { bottom: -48px; left: -48px; transform: rotate(48deg); }
.fest-corner-br { bottom: -48px; right: -48px; transform: rotate(-48deg) scaleX(-1); }
@media (max-width: 900px) {
  .fest-corner { width: 150px; height: 150px; }
}
@media (max-width: 640px) {
  .fest-corner-bl, .fest-corner-br { display: none; }
}

/* ─────── HERO ─────── */
.fest-hero {
  position: relative;
  background: var(--fp-paper);
  padding: 210px 0 64px;
  overflow: hidden;
}
.fest-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 44px;
  align-items: center;
}
.fest-hero-copy { max-width: 460px; }
.fest-hero-title {
  font-family: var(--ecl-font-display, 'Cormorant Garamond', serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 22px 0 26px;
  color: var(--fp-ink);
  text-wrap: balance;
}
.fest-hero-title .fest-red { white-space: nowrap; }
.fest-hero-title span { display: block; white-space: nowrap; }
.fest-hero-title .fest-italic { font-style: italic; font-weight: 400; }
.fest-hero-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fp-mute);
  margin: 0 0 32px;
  max-width: 380px;
  text-wrap: pretty;
}
.fest-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.fest-hero-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 59, 46, 0.16);
  aspect-ratio: 16 / 9;
  background: transparent;
}
.fest-hero-photo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

/* ─────── TRUST STRIP ─────── */
.fest-trust {
  background: var(--fp-paper);
  padding: 38px 60px 48px;
  border-top: 1px solid var(--fp-line);
  border-bottom: 1px solid var(--fp-line);
}
.fest-trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
/* Turn-key statement variant: photo left, copy right */
.fest-turnkey {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
}
.fest-turnkey-photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 59, 46, 0.16);
}
.fest-turnkey-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.fest-turnkey-copy .fest-eyebrow {
  display: block;
  font-size: 16px;
  margin-bottom: 18px;
}
.fest-turnkey-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fp-mute);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 900px) {
  .fest-turnkey { grid-template-columns: 1fr; gap: 28px; }
}
.fest-trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fest-trust-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
}
.fest-trust-copy h4 {
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--fp-red);
  margin: 4px 0 6px;
  letter-spacing: 0.01em;
}
.fest-trust-copy p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fp-mute);
  margin: 0;
  text-wrap: pretty;
}

/* ─────── SERVICES ─────── */
.fest-services {
  background: var(--fp-paper);
  padding: 84px 60px 100px;
}
.fest-services-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.fest-services-head {
  text-align: center;
  margin-bottom: 48px;
}
.fest-services-head .fest-section-title {
  margin-top: 10px;
}
.fest-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fest-service-card {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 59, 46, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fest-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 59, 46, 0.12);
  border-color: var(--fp-red);
}
.fest-service-photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--fp-green-dk);
}
.fest-service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.fest-service-card:hover .fest-service-photo img { transform: scale(1.04); }
/* Full Home Displays photo: show the whole display, no crop */
/* Full Home Displays photo: fill the frame (crop edges, no letterbox) */
.fest-service-photo img[src*="services-fullhome-ww"] {
  object-fit: cover;
  background: #0a0807;
}
/* Entryway & Accents photo: fill the frame (crop edges, no letterbox) */
.fest-service-photo img[src*="services-entryway-ww"] {
  object-fit: cover;
  background: #0a0807;
}
.fest-service-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fest-service-titlerow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fest-service-titlerow h3 {
  font-family: var(--ecl-font-display, 'Cormorant Garamond', serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--fp-ink);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.fest-service-body p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fp-mute);
  margin: 0;
  text-wrap: pretty;
  flex: 1;
}
.fest-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--fp-red);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.fest-service-link:hover { color: var(--fp-red-dk); gap: 12px; }

/* ─────── WHY EPIC ─────── */
.fest-why {
  background: var(--fp-red);
  padding: 72px 60px 96px;
  border-top: 1px solid var(--fp-red);
  position: relative;
  overflow: hidden;
}
.fest-why .fest-eyebrow-green { color: #fff; }
.fest-why .fest-section-title { color: #fff; }
.fest-why .fest-section-title .fest-red { color: #fff; }
.fest-why-photo { box-shadow: none; }
.fest-why-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.fest-why-photo {
  border-radius: 2px;
  overflow: visible;
  aspect-ratio: auto;
  background: transparent;
  position: relative;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fest-why-photo::after { display: none; }
.fest-why-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  border: 5px solid #b91c1c;
  box-shadow:
    0 0 0 5px #fff,
    0 24px 56px rgba(0,0,0,0.32);
}
/* Match the multicolor (lower) photo box to the landscape photo above it */
.fest-why-photo img:nth-child(2) {
  aspect-ratio: 1635 / 962;
  height: auto;
  object-fit: cover;
}
.fest-why-copy .fest-section-title { margin: 14px 0 28px; }
.fest-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fest-why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: flex-start;
}
.fest-why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}
.fest-why-badge-red   { background: transparent; }
.fest-why-badge-green { background: transparent; }
.fest-why .fest-why-badge { background: transparent; }
.fest-why .fest-why-badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.fest-why-item h4 {
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 4px;
  letter-spacing: 0.01em;
}
.fest-why-item p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0;
  text-wrap: pretty;
  max-width: 480px;
}

/* ─────── FAQ ─────── */
.fest-faq {
  background: var(--fp-paper-2);
  padding: 80px 60px 96px;
}
.fest-faq-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.fest-faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.fest-faq-head .fest-section-title { margin-top: 8px; }
.fest-faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.fest-faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fest-faq-item {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.fest-faq-item.is-open { border-color: var(--fp-red); }
.fest-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fp-ink);
  transition: color 0.2s ease;
}
.fest-faq-q:hover { color: var(--fp-red); }
.fest-faq-icon {
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--fp-mute);
  width: 18px;
  text-align: center;
}
.fest-faq-item.is-open .fest-faq-icon { color: var(--fp-red); }
.fest-faq-a {
  padding: 0 20px 18px;
  animation: fest-faq-in 0.25s ease;
}
.fest-faq-a p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fp-mute);
  margin: 0;
  text-wrap: pretty;
}
@keyframes fest-faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────── CONTACT ─────── */
/* Festive holiday treatment for the shared Contact ("Start Your Design")
   section when used on the Residential Christmas page: red background,
   white text, gold/green accents — matching the rest of the page. */
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact {
  background:
    radial-gradient(circle at 12% 22%, rgba(216,177,90,0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.10), transparent 30%),
    radial-gradient(circle at 78% 88%, rgba(216,177,90,0.12), transparent 38%),
    linear-gradient(135deg, #0f3b2e 0%, #14492f 38%, #8a1212 100%);
}
/* soft string-light dots drifting across the holiday background */
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,244,214,0.5) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(255,244,214,0.32) 1px, transparent 1.6px);
  background-size: 140px 140px, 90px 90px;
  background-position: 0 0, 45px 60px;
  opacity: 0.5;
}
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact-bg { display: none; }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact .ecl-section-eyebrow { color: #fff; }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact-copy h2 { color: #fff; }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact-copy h2 em { color: var(--fp-gold); font-style: italic; }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact-copy > p { color: rgba(255,255,255,0.88); }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact .ecl-info-label { color: var(--fp-gold); }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact-info a { color: #fff; }
:is(body[data-page="res-festive"],body[data-page="comm-festive"]) .ecl-contact-info a:hover { color: var(--fp-gold); }

.fest-contact {
  position: relative;
  background: var(--fp-paper);
  padding: 80px 0 96px;
  overflow: hidden;
}
.fest-contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.fest-contact-copy { max-width: 380px; }
.fest-contact-copy .fest-section-title { margin: 14px 0 22px; }
.fest-contact-lede {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fp-mute);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.fest-contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fest-contact-info li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fp-ink);
}
.fest-contact-info li svg { margin-top: 2px; }
.fest-contact-info li a {
  color: var(--fp-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.fest-contact-info li a:hover { color: var(--fp-red); }
.fest-contact-info li em { color: var(--fp-mute); font-size: 12px; font-style: italic; }

/* Form */
.fest-form {
  background: #fff;
  border: 1px solid var(--fp-line);
  border-radius: 4px;
  padding: 28px 28px;
  box-shadow: 0 12px 36px rgba(15, 59, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fest-form label,
.fest-form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fest-form label > span,
.fest-form-label {
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--fp-mute);
  text-transform: uppercase;
}
.fest-form input,
.fest-form textarea {
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--fp-line-strong);
  border-radius: 3px;
  background: var(--fp-paper);
  color: var(--fp-ink);
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: vertical;
}
.fest-form input:focus,
.fest-form textarea:focus {
  border-color: var(--fp-red);
  background: #fff;
}
.fest-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fest-form-interest {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fest-form-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fest-pill {
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--fp-line-strong);
  background: #fff;
  color: var(--fp-ink);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fest-pill:hover { border-color: var(--fp-red); color: var(--fp-red); }
.fest-pill.is-active {
  background: var(--fp-red);
  color: #fff;
  border-color: var(--fp-red);
}
.fest-form-disclaim {
  font-size: 11px;
  color: var(--fp-mute);
  text-align: center;
  margin: 4px 0 0;
}

/* ─────── FOOTER ─────── */
.fest-footer {
  background: var(--fp-paper);
  border-top: 1px solid var(--fp-line-strong);
  padding: 56px 60px 24px;
  color: var(--fp-ink);
  position: relative;
  overflow: hidden;
}
.fest-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.fest-footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 40px;
  align-items: start;
}
.fest-footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.fest-footer-linkcols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 28px;
}
.fest-footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr 1.6fr;
  gap: 32px 40px;
}
.fest-footer-brand img {
  height: 70px;
  width: auto;
  margin-bottom: 14px;
}
.fest-footer-brand p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--fp-mute);
  margin: 0 0 16px;
  max-width: 280px;
}
.fest-footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fest-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: var(--fp-green);
  border: 1px solid var(--fp-line-strong);
  transition: all 0.2s ease;
}
.fest-footer-social a:hover {
  background: var(--fp-red);
  color: #fff;
  border-color: var(--fp-red);
}
.fest-footer-col {
  display: flex;
  flex-direction: column;
}
.fest-footer-col h5,
.fest-footer-areas h5 {
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 11px;
  font-weight: 700;
  color: var(--fp-mute);
  letter-spacing: 0.18em;
  margin: 0 0 14px;
}
.fest-footer-col a,
.fest-footer-col span {
  font-size: 13px;
  color: var(--fp-ink);
  text-decoration: none;
  padding: 4px 0;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.fest-footer-col a:hover { color: var(--fp-red); }
.fest-footer-areas {
  border-left: 1px solid var(--fp-line);
  padding-left: 32px;
}
.fest-footer-areas-lede {
  font-size: 12.5px;
  color: var(--fp-mute);
  margin: 0 0 12px;
}
.fest-footer-areas ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 12px;
}
.fest-footer-areas li {
  position: relative;
  padding: 2px 0 2px 12px;
  font-size: 12px;
  color: var(--fp-mute);
}
.fest-footer-areas li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 4px;
  margin-top: -2px;
  background: var(--fp-red);
  opacity: 0.7;
  border-radius: 50%;
}
.fest-footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--fp-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--fp-mute);
}
.fest-footer-bottom div { display: flex; gap: 24px; }
.fest-footer-bottom a {
  color: var(--fp-mute);
  text-decoration: none;
  transition: color 0.2s ease;
}
.fest-footer-bottom a:hover { color: var(--fp-red); }

/* ─────── Responsive ─────── */
@media (max-width: 1180px) {
  .fest-hero-inner,
  .fest-contact-inner { padding: 0 80px; }
  .fest-services-grid { grid-template-columns: repeat(2, 1fr); }
  .fest-footer-grid { grid-template-columns: 1.3fr 1fr; }
  .fest-footer-cols { grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; }
  .fest-footer-areas { grid-column: auto; }
}
@media (max-width: 900px) {
  .fest-hero {  padding: 130px 0 56px; }
  .fest-hero-inner,
  .fest-contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 70px;
  }
  .fest-trust-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .fest-services { padding: 64px 32px 80px; }
  .fest-why { padding: 56px 32px 72px; }
  .fest-why-inner { grid-template-columns: 1fr; gap: 36px; }
  .fest-faq { padding: 64px 32px 80px; }
  .fest-faq-cols { grid-template-columns: 1fr; gap: 12px; }
  .fest-contact { padding: 64px 0 80px; }
  .fest-footer { padding: 48px 32px 24px; }
  .fest-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .fest-footer-areas { border-left: 0; border-top: 1px solid var(--fp-line); padding: 24px 0 0; }
  .fest-footer-cols { grid-template-columns: 1fr 1fr; }
  .fest-footer-areas ul { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .fest-hero-inner,
  .fest-contact-inner { padding: 0 24px; }
  .fest-services { padding: 56px 20px 64px; }
  .fest-services-grid { grid-template-columns: 1fr; }
  .fest-why { padding: 48px 20px 56px; }
  .fest-faq { padding: 56px 20px 64px; }
  .fest-form-row { grid-template-columns: 1fr; }
  .fest-footer-cols { grid-template-columns: 1fr; }
  .fest-footer-linkcols { grid-template-columns: 1fr 1fr; }
  .fest-footer-areas ul { grid-template-columns: repeat(2, 1fr); }
  .fest-footer-bottom { flex-direction: column; gap: 12px; }
  .fest-trust-inner { grid-template-columns: 1fr; }
}


/* =============================================================
   COMMERCIAL CHRISTMAS — page-specific sections
   Reuses the fest-* system; adds Who-We-Serve, dark-green Why band,
   commercial service badge, and split contact.
   ============================================================= */

/* Service card circular icon badge over the photo (mockup style) */
.fest-service-photo { position: relative; }
.comm-service-badge {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--fp-line, rgba(15,59,46,0.10));
  box-shadow: 0 6px 16px rgba(15,59,46,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
body[data-page="comm-festive"] .fest-service-body { padding-top: 38px; text-align: center; }
body[data-page="comm-festive"] .fest-service-titlerow { justify-content: center; }
body[data-page="comm-festive"] .fest-service-card { overflow: visible; }
body[data-page="comm-festive"] .fest-service-photo { border-radius: 4px 4px 0 0; overflow: hidden; }

/* ─────── WHO WE SERVE ─────── */
.comm-serve {
  background: #fff;
  padding: 80px 60px 88px;
}
.comm-serve-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.comm-serve-inner .fest-services-head { text-align: center; margin-bottom: 52px; }
.comm-serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.comm-serve-item { text-align: center; }
.comm-serve-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  height: 48px;
}
.comm-serve-item h4 {
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--fp-ink, #1a1a1a);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.comm-serve-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fp-mute, rgba(26,26,26,0.65));
  margin: 0 auto;
  max-width: 240px;
  text-wrap: pretty;
}

/* ─────── WHY EPIC (dark green band) ─────── */
.comm-why {
  background: #0f3b2e;
  padding: 84px 60px 92px;
  color: #fff;
}
.comm-why-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.comm-why-eyebrow { color: var(--fp-gold, #d8b15a); }
.comm-why-title {
  font-family: var(--ecl-font-display, 'Cormorant Garamond', serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 14px 0 0;
}
.comm-why-accent { color: var(--fp-gold, #d8b15a); font-style: italic; }
.comm-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.comm-why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.comm-why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: transparent;
  flex-shrink: 0;
  overflow: hidden;
}
.comm-why-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.comm-why-item h4 {
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 6px;
}
.comm-why-item p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0;
  text-wrap: pretty;
}

/* ─────── CONTACT (photo left, form right) ─────── */
.comm-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #fff;
}
.comm-contact-photo {
  overflow: hidden;
  min-height: 540px;
  background: #0f3b2e;
  position: relative;
}
.comm-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
/* gradient melts the photo edges into the green band on all four sides */
.comm-contact-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, #0f3b2e 0%, rgba(15,59,46,0) 22%),
    linear-gradient(to bottom, rgba(15,59,46,0.85) 0%, rgba(15,59,46,0) 18%),
    linear-gradient(to right, #0f3b2e 0%, rgba(15,59,46,0) 14%),
    linear-gradient(to left, #0f3b2e 0%, rgba(15,59,46,0) 14%);
}
.comm-contact-form-wrap {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
}
.comm-contact-form-wrap .fest-section-title { margin: 14px 0 18px; }
.comm-contact-form-wrap .fest-form { box-shadow: none; border: 1px solid var(--fp-line, rgba(15,59,46,0.10)); margin-top: 8px; }

@media (max-width: 1080px) {
  .comm-serve-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .comm-why-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .comm-serve { padding: 64px 32px 72px; }
  .comm-why { padding: 64px 32px 72px; }
  .comm-contact { grid-template-columns: 1fr; }
  .comm-contact-photo { min-height: 320px; }
  .comm-contact-form-wrap { padding: 48px 32px; }
}
@media (max-width: 640px) {
  .comm-serve-grid { grid-template-columns: 1fr; }
  .comm-why-grid { grid-template-columns: 1fr; }
  .comm-contact-form-wrap { padding: 40px 20px; }
}


/* Commercial service cards: static (no badge, no hover lift) — image + blurb only */
.comm-static-card { padding-top: 0 !important; cursor: default; }
.comm-static-card:hover { transform: none !important; box-shadow: 0 8px 24px rgba(15,59,46,0.06) !important; border-color: var(--fp-line, rgba(15,59,46,0.10)) !important; }
.comm-static-card:hover .fest-service-photo img { transform: none !important; }
body[data-page="comm-festive"] .comm-static-card .fest-service-body { padding-top: 22px; }

/* Hero catalog note — small line under hero action buttons (all pages) */
.hero-catalog-note {
  margin: 16px 0 0;
  font-family: var(--ecl-font-sans, 'Manrope', sans-serif);
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 500;
  opacity: 0.82;
}
.hero-catalog-note.is-light { color: rgba(244,236,216,0.82); }
.hero-catalog-note.is-dark { color: var(--fp-green, #0f3b2e); }
.ecl-hero-actions + .hero-catalog-note { text-align: center; }

/* Catalog CTA — sits under the commercial services grid */
.comm-catalog-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  text-align: center;
}
.comm-catalog-cta-text {
  font-family: var(--ecl-font-display, 'Cormorant Garamond', serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  color: var(--fp-green, #0f3b2e);
  max-width: 24ch;
  margin: 0;
  font-weight: 400;
}
.comm-catalog-cta-text em { font-style: italic; color: var(--fp-red, #b91c1c); }
@media (max-width: 640px) {
  .comm-catalog-cta { margin-top: 36px; }
}


/* Why Epic commercial collage banner — full-width within the green band */
.comm-why-photo-wrap {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
  border: 1px solid rgba(216,177,90,0.35);
}
.comm-why-photo-wrap img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) { .comm-why-photo-wrap { margin-top: 36px; } }


/* Commercial hero photo: fill the frame (no letterbox) */
body[data-page="comm-festive"] .fest-hero-photo { aspect-ratio: 4 / 3; }
body[data-page="comm-festive"] .fest-hero-photo img { object-fit: cover; }


/* Commercial hero: smaller photo column, capped height so it fits the section */
body[data-page="comm-festive"] .fest-hero-inner { grid-template-columns: 48% 52%; align-items: center; }
body[data-page="comm-festive"] .fest-hero-photo {
  aspect-ratio: auto;
  max-height: 420px;
  border: 5px solid #fff6e9;
  border-radius: 3px;
  box-shadow: 0 0 0 5px #b91c1c, 0 24px 60px rgba(15,59,46,0.18);
  overflow: hidden;
}
body[data-page="comm-festive"] .fest-hero-photo img { height: 100%; max-height: 420px; object-fit: cover; }


/* Commercial hero headline: smaller so it doesn't overlap the photo */
body[data-page="comm-festive"] .fest-hero-title { font-size: clamp(30px, 3.4vw, 46px); margin: 16px 0 20px; }
body[data-page="comm-festive"] .fest-hero-title span { white-space: normal; }
body[data-page="comm-festive"] .fest-hero-sub { font-size: 14px; }
body[data-page="comm-festive"] .fest-hero-copy { max-width: 520px; }


/* Garland entrance (portrait) service photo: same frame as other cards, anchored top */
.fest-service-photo img[src*="commercial-garland-entrance"] {
  object-fit: cover;
  object-position: center top;
  background: #0a0807;
}


/* Commercial trust strip has 5 items — lay out 5-across on wide, wrap gracefully */
body[data-page="comm-festive"] .fest-trust-inner {
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) {
  body[data-page="comm-festive"] .fest-trust-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  body[data-page="comm-festive"] .fest-trust-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  body[data-page="comm-festive"] .fest-trust-inner { grid-template-columns: 1fr; }
}


/* Why Epic with left-side photo */
.comm-why-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.comm-why-photo-side {
  border-radius: 3px;
  overflow: hidden;
  border: 5px solid #fff6e9;
  box-shadow: 0 0 0 5px #b91c1c, 0 24px 56px rgba(0,0,0,0.35);
}
.comm-why-photo-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.comm-why-main { display: flex; flex-direction: column; gap: 28px; }
.comm-why-main .comm-why-grid { margin-top: 0; }
@media (max-width: 1080px) {
  .comm-why-layout { grid-template-columns: 1fr; gap: 36px; }
  .comm-why-photo-side { max-width: 520px; margin: 0 auto; }
}


/* Why Epic full-width centered header above the photo+bullets layout */
.comm-why-header {
  max-width: 1320px;
  margin: 0 auto 48px;
  text-align: center;
}
.comm-why-header .comm-why-title {
  margin: 12px auto 0;
  max-width: 1000px;
}


/* Full-width photo banner between FAQ and contact */
.comm-banner { width: 100%; line-height: 0; background: #0a0807; }
.comm-banner img { width: 100%; height: auto; display: block; }

/* Contact reverted to no-image: single centered column */
.comm-contact-noimg { display: block; }
/* Framed photo treatment for the Start Your Design photo */
.comm-contact-photo-framed {
  align-self: center;
  min-height: 0;
  margin: 0 auto;
  max-width: 85%;
  order: 2;
}
.comm-contact-photo-framed::after { display: none; }
.comm-contact-photo-framed img { object-fit: contain; height: auto; width: 100%; display: block; }
.comm-contact:has(.comm-contact-photo-framed) .comm-contact-form-wrap { order: 1; }
.comm-contact:has(.comm-contact-photo-framed) { align-items: center; }
.comm-contact-noimg .comm-contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px 92px;
}


/* Turn-Key section: green band, red-framed photo, light text */
.fest-trust:has(.fest-turnkey) {
  background: #0f3b2e;
  border-top: none;
  border-bottom: none;
}
.fest-turnkey-photo {
  border-radius: 4px;
  overflow: hidden;
  background: #fff8ec;
  padding: 6px;
  border: 4px solid #b91c1c;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(216,177,90,0.5);
}
.fest-turnkey-photo img { border-radius: 2px; }
.fest-trust:has(.fest-turnkey) .fest-turnkey-copy .fest-eyebrow { color: var(--fp-gold, #d8b15a); }
.fest-trust:has(.fest-turnkey) .fest-turnkey-copy p { color: rgba(255,255,255,0.9); }


/* Residential hero photo: red (inner) / white / green line frame */
body[data-page="res-festive"] .fest-hero-photo {
  border: 4px solid #b91c1c;
  border-radius: 4px;
  box-shadow: 0 0 0 4px #fff, 0 0 0 8px #0f3b2e, 0 24px 56px rgba(15,59,46,0.22);
  overflow: hidden;
}
body[data-page="res-festive"] .fest-hero-photo img { border-radius: 1px; }


/* Accent gold glows + string-light dots on the two solid color sections
   (Turn-Key green, Why Epic red) — base color stays solid. */
.fest-trust:has(.fest-turnkey),
.fest-why {
  position: relative;
}
.fest-trust:has(.fest-turnkey) {
  background:
    radial-gradient(circle at 10% 20%, rgba(216,177,90,0.14), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(216,177,90,0.12), transparent 36%),
    #0f3b2e;
}
.fest-why {
  background:
    radial-gradient(circle at 14% 18%, rgba(216,177,90,0.16), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(255,255,255,0.10), transparent 34%),
    var(--fp-red);
}
.fest-trust:has(.fest-turnkey)::before,
.fest-why::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255,244,214,0.45) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(255,244,214,0.28) 1px, transparent 1.6px);
  background-size: 140px 140px, 90px 90px;
  background-position: 0 0, 45px 60px;
  opacity: 0.5;
}
.fest-trust:has(.fest-turnkey) > *,
.fest-why > * { position: relative; z-index: 1; }


/* ─────── PHOTO GALLERY ─────── */
.fest-gallery { background: #fff; padding: 84px 60px 100px; }
.fest-gallery-head { text-align: center; max-width: 1320px; margin: 0 auto 48px; }
.fest-gallery-head .fest-section-title { margin-top: 10px; }
.fest-gallery-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.fest-gallery-cell {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 2;
  background: #0a0807;
  box-shadow: 0 8px 22px rgba(15,59,46,0.08);
}
.fest-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.fest-gallery-cell:hover img { transform: scale(1.06); }
.fest-gallery-cell::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(185,28,28,0);
  transition: background 0.25s ease;
}
.fest-gallery-cell:hover::after { background: rgba(185,28,28,0.14); }

.fest-lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(8,6,6,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  animation: fest-lb-in 0.2s ease;
}
@keyframes fest-lb-in { from { opacity: 0; } to { opacity: 1; } }
.fest-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 4px;
  border: 4px solid #b91c1c;
  box-shadow: 0 0 0 4px #fff, 0 30px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.fest-lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}
.fest-lightbox-close:hover { opacity: 1; color: var(--fp-gold, #d8b15a); }

@media (max-width: 1080px) {
  .fest-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .fest-gallery { padding: 56px 20px 64px; }
  .fest-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}


/* ═══════════════════════════════════════════════════════════════
   LANDSCAPE LIGHTING PAGE  (data-page="landscape")
   Dark-premium sibling of the home page. ll- prefix.
   ═══════════════════════════════════════════════════════════════ */

/* ─────── HERO ─────── */
.ll-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ecl-ink);
}
.ll-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.04);
}
.ll-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,18,24,0.55) 0%, rgba(14,18,24,0.18) 34%, rgba(14,18,24,0.30) 60%, rgba(14,18,24,0.88) 100%),
    radial-gradient(ellipse at 28% 60%, rgba(14,18,24,0.45), transparent 60%);
}
.ll-hero-inner {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 150px 48px 96px;
}
.ll-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ecl-font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ecl-gold);
  margin-bottom: 26px;
}
.ll-hero-eyebrow-line {
  width: 54px; height: 1px;
  background: var(--ecl-gold);
  opacity: 0.7;
}
.ll-hero-title {
  font-family: var(--ecl-font-display);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ecl-cream);
  margin: 0;
}
.ll-hero-title span { display: block; }
.ll-hero-title em {
  font-style: italic;
  color: var(--ecl-gold);
}
.ll-hero-sub {
  max-width: 540px;
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.62;
  color: rgba(244, 236, 216, 0.82);
  font-weight: 300;
}
.ll-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}
.ll-hero-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ecl-cream);
  border-bottom: 1px solid rgba(244, 236, 216, 0.35);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.ll-hero-link:hover { color: var(--ecl-gold); border-color: var(--ecl-gold); }
.ll-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  font-family: var(--ecl-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.6);
}
.ll-hero-meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ecl-gold);
  opacity: 0.7;
}
.ll-hero-scroll {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ll-hero-scroll span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ecl-gold);
}
.ll-scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--ecl-gold), transparent);
}

/* ─────── INTRO ─────── */
.ll-intro {
  background: var(--ecl-paper);
  padding: 130px 48px;
}
.ll-intro-inner { max-width: 1240px; margin: 0 auto; }
.ll-intro-head { max-width: 760px; }
.ll-intro-head .ecl-section-title { margin-top: 6px; }
.ll-intro-lead {
  margin: 30px 0 0;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(42, 47, 58, 0.72);
  font-weight: 300;
  max-width: 680px;
}
.ll-light-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ecl-line);
  border: 1px solid var(--ecl-line);
}
.ll-light-item {
  background: var(--ecl-paper);
  padding: 40px 38px 44px;
}
.ll-light-num {
  display: block;
}
.ll-light-num img {
  display: block;
  width: 40px;
  height: auto;
}
.ll-light-item h3 {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.15;
  color: var(--ecl-charcoal);
  margin: 18px 0 10px;
}
.ll-light-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(42, 47, 58, 0.66);
}

/* ─────── WHY EPIC (dark band) ─────── */
.ll-why {
  background: var(--ecl-charcoal);
  padding: 130px 48px;
  position: relative;
}
.ll-why-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 76px;
  align-items: center;
}
.ll-why-photo {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 4px solid var(--ecl-gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.ll-why-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.ll-why-copy .ecl-section-title { margin: 14px 0 0; }
.ll-why-list {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
}
.ll-why-list li {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--ecl-line-dark);
}
.ll-why-list li:last-child { border-bottom: 1px solid var(--ecl-line-dark); }
.ll-why-num {
  flex-shrink: 0;
  padding-top: 2px;
}
.ll-why-num img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.ll-why-list h3 {
  font-family: var(--ecl-font-display);
  font-weight: 500;
  font-size: 23px;
  color: var(--ecl-cream);
  margin: 0 0 8px;
}
.ll-why-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: rgba(244, 236, 216, 0.66);
  font-weight: 300;
}

/* ─────── GALLERY (near-black so warm light glows) ─────── */
.ll-gallery {
  background: var(--ecl-ink);
  padding: 120px 48px 130px;
}
.ll-gallery-head {
  max-width: 1240px;
  margin: 0 auto 56px;
  text-align: center;
}
.ll-gallery-head .ecl-section-eyebrow { justify-content: center; }
.ll-gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}
.ll-gallery-cell {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
}
.ll-gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 1px;
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.ll-gallery-cell.is-wide { grid-column: span 2; }
.ll-gallery-cell.is-tall { grid-row: span 2; }
.ll-gallery-cell:hover img { transform: scale(1.06); }
.ll-gallery-zoom {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(14,18,24,0.55);
  color: var(--ecl-cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
}
.ll-gallery-cell:hover .ll-gallery-zoom { opacity: 1; transform: translateY(0); }
.ll-lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(8, 10, 14, 0.94);
  display: grid;
  place-items: center;
  padding: 40px;
  cursor: zoom-out;
  animation: ll-fade 0.2s ease;
}
@keyframes ll-fade { from { opacity: 0; } to { opacity: 1; } }
.ll-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  cursor: default;
}
.ll-lightbox-close {
  position: absolute;
  top: 26px; right: 30px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ecl-cream);
  background: rgba(244,236,216,0.08);
  transition: background 0.2s ease, color 0.2s ease;
}
.ll-lightbox-close:hover { background: rgba(244,236,216,0.16); color: var(--ecl-gold); }

/* ─────── BEFORE & AFTER ─────── */
.ll-ba {
  background: var(--ecl-paper-2);
  padding: 120px 48px;
}
.ll-ba-inner { max-width: 1100px; margin: 0 auto; }
.ll-ba-head { text-align: center; max-width: 700px; margin: 0 auto 52px; }
.ll-ba-head .ecl-section-eyebrow { justify-content: center; }
.ll-ba-head .ecl-section-title { margin-top: 6px; }
.ll-ba-lead {
  margin: 26px auto 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(42, 47, 58, 0.72);
  font-weight: 300;
}
.ll-ba-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.ll-ba-frame {
  flex: 0 1 660px;
  max-width: 660px;
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 34px 80px rgba(14, 18, 24, 0.30);
}
.ll-ba-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: ll-fade 0.4s ease;
}
.ll-ba-arrow {
  flex-shrink: 0;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--ecl-line);
  background: #fff;
  color: var(--ecl-charcoal);
  box-shadow: 0 6px 18px rgba(14, 18, 24, 0.10);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.ll-ba-arrow:hover {
  background: var(--ecl-charcoal);
  color: var(--ecl-cream);
  border-color: var(--ecl-charcoal);
  transform: translateY(-1px);
}
.ll-ba-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.ll-ba-counter {
  font-family: var(--ecl-font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ecl-gold-deep);
}
.ll-ba-dots { display: flex; gap: 10px; }
.ll-ba-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(42, 47, 58, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.ll-ba-dot.is-active { background: var(--ecl-gold-deep); transform: scale(1.3); }
.ll-ba-cap {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(42, 47, 58, 0.62);
}

/* ─────── FAQ ─────── */
.ll-faq {
  background: var(--ecl-paper);
  padding: 120px 48px;
}
.ll-faq-inner { max-width: 940px; margin: 0 auto; }
.ll-faq-head { text-align: center; margin-bottom: 56px; }
.ll-faq-head .ecl-section-eyebrow { justify-content: center; }
.ll-faq-list { list-style: none; margin: 0; padding: 0; }
.ll-faq-item { border-top: 1px solid var(--ecl-line); }
.ll-faq-item:last-child { border-bottom: 1px solid var(--ecl-line); }
.ll-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 4px;
  text-align: left;
  font-family: var(--ecl-font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ecl-charcoal);
  transition: color 0.2s ease;
}
.ll-faq-q:hover { color: var(--ecl-gold-deep); }
.ll-faq-icon {
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.ll-faq-icon::before,
.ll-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ecl-gold-deep);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ll-faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.ll-faq-icon::after  { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.ll-faq-item.is-open .ll-faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.ll-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.ll-faq-item.is-open .ll-faq-a { grid-template-rows: 1fr; }
.ll-faq-a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 4px;
  font-size: 16px;
  line-height: 1.66;
  color: rgba(42, 47, 58, 0.7);
  font-weight: 300;
}
.ll-faq-item.is-open .ll-faq-a > p { padding-bottom: 28px; }

/* ─────── RESPONSIVE ─────── */
@media (max-width: 1080px) {
  .ll-why-inner { grid-template-columns: 1fr; gap: 44px; }
  .ll-why-photo img { min-height: 380px; }
  .ll-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .ll-gallery-cell.is-wide { grid-column: span 2; }
  .ll-gallery-cell.is-tall { grid-row: span 1; }
}
@media (max-width: 760px) {
  .ll-hero-inner { padding: 130px 24px 80px; }
  .ll-hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .ll-intro, .ll-why, .ll-gallery, .ll-faq { padding-left: 24px; padding-right: 24px; }
  .ll-intro, .ll-why, .ll-faq { padding-top: 84px; padding-bottom: 84px; }
  .ll-gallery { padding-top: 80px; padding-bottom: 90px; }
  .ll-light-grid { grid-template-columns: 1fr; }
  .ll-light-item { padding: 30px 26px 32px; }
  .ll-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .ll-gallery-cell.is-wide, .ll-gallery-cell.is-tall { grid-column: auto; grid-row: auto; }
  .ll-faq-q { font-size: 20px; }
  .ll-ba { padding: 84px 20px; }
  .ll-ba-stage { gap: 8px; }
  .ll-ba-arrow { width: 42px; height: 42px; }
}
