/* ============================================================
   TWINKLE BROS LIGHTING — Main Stylesheet
   COZY CHRISTMAS THEME
   Palette: deep pine green + cranberry + antique brass on warm cream paper.
   Variable NAMES are deliberately unchanged from the previous theme — several
   pages (gallery, quote, contact, service pages) reference var(--gold),
   var(--dark), var(--radius) etc. in page-local styles, so renaming would
   silently break them. Only the values changed.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,900&family=Nunito:wght@400;600;700&family=Dancing+Script:wght@600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold:        #C8952F;   /* antique brass */
  --gold-light:  #E0B559;
  --gold-dark:   #8F6A22;
  --cran:        #9E2B25;   /* cranberry */
  --cran-light:  #C0392F;
  --dark:        #0C261D;   /* deepest pine */
  --dark-2:      #12362A;   /* pine */
  --dark-3:      #1C4C3A;
  --dark-card:   #163D2E;
  --cream:       #FBF4E6;   /* page paper */
  --light:       #F4E8D2;   /* tinted band / panels */
  --light-2:     #EDE0C4;
  --white:       #FFFDF8;   /* warm white — cards + text on dark */
  --text-dark:   #2B211A;
  --text-muted:  #6D5C4C;
  --nav-h:       80px;
  --ease:        all 0.3s ease;
  --shadow:      0 10px 30px rgba(74,53,39,0.13), 0 2px 6px rgba(74,53,39,0.08);
  --shadow-lg:   0 22px 50px rgba(74,53,39,0.20);
  --shadow-gold: 0 8px 22px rgba(200,149,47,0.38);
  --radius:      14px;

  /* Festive light-string used under every page header. Held in variables so the
     same garland can be reused without repeating nine background layers. */
  --lights-img:
    radial-gradient(circle 10px at 40px  20px, rgba(224,90,78,.50),  transparent 70%),
    radial-gradient(circle 10px at 120px 20px, rgba(232,190,99,.55), transparent 70%),
    radial-gradient(circle 10px at 200px 20px, rgba(95,184,127,.48), transparent 70%),
    radial-gradient(circle 10px at 280px 20px, rgba(255,243,214,.55),transparent 70%),
    radial-gradient(circle 5.5px at 40px  20px, #e05a4e 96%, transparent),
    radial-gradient(circle 5.5px at 120px 20px, #e8be63 96%, transparent),
    radial-gradient(circle 5.5px at 200px 20px, #5fb87f 96%, transparent),
    radial-gradient(circle 5.5px at 280px 20px, #fff3d6 96%, transparent),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='26'%3E%3Cpath d='M0 3 Q40 28 80 3' fill='none' stroke='%238a7458' stroke-width='2.5'/%3E%3C/svg%3E");
  --lights-size: 320px 48px,320px 48px,320px 48px,320px 48px,
                 320px 48px,320px 48px,320px 48px,320px 48px, 80px 26px;
  --lights-pos:  0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0, 0 2px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--text-dark);
  background-color: var(--cream);
  /* soft paper grain */
  background-image:
    radial-gradient(rgba(74,53,39,.035) 1px, transparent 1px),
    radial-gradient(rgba(74,53,39,.025) 1px, transparent 1px);
  background-size: 22px 22px, 34px 34px;
  background-position: 0 0, 11px 17px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.18; color: var(--dark); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.85; }

.script {
  font-family: 'Dancing Script', cursive;
  color: var(--gold-light);
  display: block;
}
/* Eyebrow label above section headings */
.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.19em; text-transform: uppercase;
  color: var(--cran);
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-bottom: 0.6rem;
}
.section-label::before, .section-label::after {
  content: ''; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}

/* ===== LAYOUT ===== */
.container  { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-center { text-align: center; }

.section-dark { background: var(--dark-2); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(251,244,230,0.78); }
.section-dark .section-label { color: var(--gold-light); }
.section-dark .section-label::before, .section-dark .section-label::after { background: rgba(224,181,89,0.6); }

.section-light { background: var(--light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold    { background: var(--gold); color: var(--dark); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-white   { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--gold); transform: translateY(-2px); }
.btn-red     { background: var(--cran); color: #fff; box-shadow: 0 8px 20px rgba(158,43,37,.34); }
.btn-red:hover { background: var(--cran-light); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled,
.navbar.solid {
  background: var(--dark-2);
  box-shadow: 0 3px 18px rgba(0,0,0,0.30);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.navbar-logo img { height: 80px; width: auto; transition: opacity 0.3s; }
.navbar-logo img:hover { opacity: 0.85; }

.nav-menu { display: flex; align-items: center; }
.nav-item  { position: relative; }
.nav-link  {
  display: block; padding: 0.55rem 0.85rem;
  color: #F0E6D2; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.01em; white-space: nowrap;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(251,244,230,0.13); }
.has-dropdown > .nav-link::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.7; }
.nav-cta {
  background: var(--cran); color: #fff !important;
  border-radius: 999px; padding: 0.6rem 1.4rem;
  margin-left: 0.6rem; font-weight: 700;
}
.nav-cta:hover { background: var(--cran-light) !important; }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--dark-3);
  border-top: 3px solid var(--gold);
  min-width: 230px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.28s, transform 0.28s, visibility 0.28s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item a {
  display: block; padding: 0.8rem 1.3rem;
  color: rgba(251,244,230,0.82); font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.dropdown-item:last-child a { border-bottom: none; }
.dropdown-item a:hover { color: var(--gold-light); padding-left: 1.7rem; background: rgba(200,149,47,0.10); }

/* Mobile */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--dark-2); flex-direction: column; align-items: flex-start;
    padding: 1.5rem 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.32s ease;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-item { width: 100%; }
  .nav-link { padding: 0.95rem 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1.05rem; }
  .nav-link:hover, .nav-link.active { background: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,0.04); border-top: none;
    border-left: 3px solid var(--gold); margin-left: 1rem; box-shadow: none;
    display: none;
  }
  .has-dropdown.m-open .dropdown { display: block; }
  .nav-cta { margin-left: 0; margin-top: 1.2rem; display: inline-flex; }
}

/* ===== FESTIVE LIGHTS STRIP =====
   Hangs across the bottom of every page header. Painted below .hero-content /
   .page-hero-inner (both z-index:1) so it can never sit on top of the copy. */
.lightsbar,
.hero::after,
.page-hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 48px; pointer-events: none;
  background-image: var(--lights-img);
  background-size: var(--lights-size);
  background-position: var(--lights-pos);
  background-repeat: repeat-x;
}
.lightsbar { position: relative; background-color: var(--dark); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.92;
  transform: scale(1.03);
  animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.10); }
}
/* Lighter, shaped scrim — darkens behind the copy and along the bottom fade
   instead of flattening the whole photo. */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 64% 60% at 50% 48%, rgba(6,20,15,0.62), transparent 74%),
    radial-gradient(ellipse at 50% 26%, rgba(255,216,155,0.15), transparent 60%),
    linear-gradient(180deg, rgba(12,38,29,0.58) 0%, rgba(12,38,29,0.28) 36%, rgba(12,38,29,0.66) 82%, rgba(12,38,29,0.86) 100%);
}
#snow-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-content h1 { text-align: center; }
.hero-content p { text-align: center; margin-left: auto; margin-right: auto; }
.hero-ctas { justify-content: center; }
.hero-trust { justify-content: center; }
.hero-content h1 { color: #fff; margin-bottom: 1.2rem; text-shadow: 0 3px 10px rgba(0,0,0,.72), 0 8px 40px rgba(0,0,0,.55); }
.hero-content p { color: var(--cream); font-size: 1.15rem; max-width: 600px; margin-bottom: 2.2rem; text-shadow: 0 2px 9px rgba(0,0,0,.75); }
.hero-logo { display: block; height: 200px; width: auto; margin-bottom: 0.4rem; filter: drop-shadow(0 6px 26px rgba(0,0,0,0.75)); }
.hero-script {
  font-family: 'Dancing Script', cursive; font-size: clamp(1.7rem,3.2vw,2.4rem);
  color: var(--gold-light); display: block; margin-bottom: 0.4rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hero-trust span {
  color: var(--cream); font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(12,38,29,0.42); border: 1px solid rgba(251,244,230,0.3);
  padding: 0.5rem 1rem; border-radius: 999px;
}
.hero-trust i { color: var(--gold-light); }

/* Page Hero (inner pages) */
.page-hero {
  position: relative; padding: 9rem 0 5.5rem;
  background: var(--dark-2); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover; background-position: center; opacity: 0.42;
}
.page-hero { background-image: linear-gradient(180deg, rgba(12,38,29,.55), rgba(12,38,29,.80)); }
.page-hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.page-hero h1 { color: #fff; text-shadow: 0 3px 14px rgba(0,0,0,.6); }
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-label::before, .page-hero .section-label::after { background: rgba(224,181,89,0.6); }
.breadcrumb { color: rgba(251,244,230,0.62); font-size: 0.82rem; margin-bottom: 0.8rem; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--light); padding: 2.6rem 0;
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-num {
  font-family: 'Fraunces', serif; font-size: 2.9rem; color: var(--cran); line-height: 1;
  font-weight: 900; margin-bottom: 0.3rem;
}
.stat-label { color: var(--text-muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }

/* ===== SERVICES OVERVIEW ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.9rem; }
.service-card {
  background: var(--white); border: 1px solid rgba(74,53,39,0.14);
  border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sc-img { height: 220px; overflow: hidden; position: relative; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .sc-img img { transform: scale(1.06); }
.sc-body { padding: 1.6rem; }
.sc-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--dark-2); }
.sc-body p  { font-size: 0.93rem; margin-bottom: 1.2rem; }
.sc-link {
  color: var(--cran); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.01em; text-transform: none;
  display: inline-flex; align-items: center; gap: 0.45rem; transition: gap 0.2s;
}
.sc-link:hover { gap: 0.8rem; }
/* blog cards on dark backgrounds keep readable body text */
.section-dark .service-card { background: var(--dark-card); border-color: rgba(224,181,89,0.22); }
.section-dark .sc-body h3 { color: var(--white); }

/* ===== SERVICE PLACEHOLDER (AI-style) ===== */
.svc-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.7rem; position: relative; overflow: hidden;
}
.svc-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.15);
  background-image: radial-gradient(circle at 30% 70%, rgba(200,149,47,0.15) 0%, transparent 60%);
}
.svc-placeholder-icon { font-size: 3.2rem; z-index: 1; }
.svc-placeholder-label {
  color: rgba(255,255,255,0.75); font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase; z-index: 1;
}
/* Gradient themes */
.sp-trees    { background: linear-gradient(140deg,#071a0f,#0f3820,#183d20); }
.sp-roofline { background: linear-gradient(140deg,#080814,#10103a,#1a0e55); }
.sp-walkway  { background: linear-gradient(140deg,#1a0f06,#3d1a06,#6b2a00); }
.sp-perm     { background: linear-gradient(140deg,#030e1a,#082b4a,#0f4570); }
.sp-landscape{ background: linear-gradient(140deg,#071209,#0f2e12,#183518); }
.sp-concrete { background: linear-gradient(140deg,#1a1408,#3d2e10,#5c4018); }

/* ===== WHY US ===== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.9rem; }
.feat-item {
  text-align: center; background: var(--white);
  border: 1px solid rgba(74,53,39,0.13); border-radius: var(--radius);
  padding: 2.1rem 1.7rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.feat-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--cran), var(--gold), var(--dark-3));
}
.feat-icon {
  width: 66px; height: 66px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--gold-light), var(--gold));
  border: none;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem; font-size: 1.5rem; color: var(--dark);
  box-shadow: 0 0 0 7px rgba(200,149,47,0.16);
  transition: transform 0.3s;
}
.feat-item:hover .feat-icon { transform: scale(1.06); background: radial-gradient(circle at 34% 30%, var(--gold-light), var(--gold)); color: var(--dark); }
.feat-item h3 { font-size: 1.16rem; margin-bottom: 0.5rem; color: var(--dark-2); }
.section-dark .feat-item { background: var(--dark-card); border-color: rgba(224,181,89,0.22); }
.section-dark .feat-item h3 { color: var(--white); }

/* ===== HOW IT WORKS =====
   Alternating step rows: copy card on one side, illustration on the other,
   flipping each row. Each step heading names the worry it removes rather than
   the stage it describes. */
.hiw-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hiw-row + .hiw-row { margin-top: 4.5rem; }
/* the zig-zag: on even rows the copy moves to the right */
.hiw-row:nth-child(even) .hiw-text { order: 2; }

.hiw-text {
  background: var(--white);
  border: 1px solid rgba(74,53,39,0.13);
  border-radius: var(--radius);
  padding: 2.4rem 2.5rem;
  box-shadow: var(--shadow);
}
.hiw-num {
  display: block;
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 1.05rem; letter-spacing: 0.04em;
  color: var(--cran); margin-bottom: 0.35rem;
}
.hiw-text h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  color: var(--dark-2); margin-bottom: 0.7rem;
}
.hiw-text p { font-size: 1rem; margin: 0; }

.hiw-art {
  border-radius: var(--radius);
  border: 3px solid rgba(224,181,89,0.35);
  box-shadow: var(--shadow);
  overflow: hidden; background: var(--light);
}
.hiw-art img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }

@media (max-width: 900px) {
  .hiw-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .hiw-row + .hiw-row { margin-top: 3rem; }
  /* reset the flip so a step's copy always precedes its own illustration */
  .hiw-row:nth-child(even) .hiw-text { order: 0; }
  .hiw-text { padding: 1.8rem 1.6rem; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.t-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(74,53,39,0.13); border-left: 5px solid var(--gold);
  padding: 1.9rem; box-shadow: var(--shadow);
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.t-card::before {
  content: '"'; position: absolute; top: 0.8rem; right: 1.5rem;
  font-family: 'Fraunces', serif; font-size: 6rem;
  color: var(--gold); opacity: 0.13; line-height: 1;
}
.stars { color: var(--gold); font-size: 1.02rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.t-text { font-size: 0.95rem; font-style: italic; color: var(--text-dark); margin-bottom: 1.3rem; line-height: 1.75; }
.t-author strong { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--dark-2); }
.t-author span   { font-size: 0.78rem; color: var(--text-muted); }
.google-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.7rem; }
.google-badge i { color: #EA4335; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.gallery-item {
  overflow: hidden; border-radius: var(--radius); cursor: pointer; position: relative;
  border: 3px solid rgba(224,181,89,0.32);
}
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  transition: background 0.3s; display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(158,43,37,0.24); }
.gallery-overlay i { color: var(--white); font-size: 2rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,24,18,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--white); font-size: 2.2rem;
  cursor: pointer; line-height: 1; transition: color 0.2s;
}
.lb-close:hover { color: var(--gold-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--cran); padding: 6rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,216,155,0.26) 0%, transparent 62%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 0.9rem; }
.cta-banner p  { color: rgba(255,255,255,0.93); max-width: 560px; margin: 0 auto 2.2rem; }
.cta-banner .btn-gold { box-shadow: 0 10px 26px rgba(0,0,0,0.22); }

/* ===== COVERAGE ===== */
.coverage-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.8rem; }
.coverage-tag {
  background: rgba(251,244,230,0.10); border: 1px solid rgba(224,181,89,0.42);
  color: var(--cream); padding: 0.5rem 1.05rem;
  border-radius: 999px; font-size: 0.85rem; font-weight: 600;
}

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item  {
  border: 1px solid rgba(74,53,39,0.13); border-radius: var(--radius);
  background: var(--white); margin-bottom: 0.9rem; padding: 0 1.4rem;
  box-shadow: var(--shadow);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; cursor: pointer;
  font-family: 'Fraunces', serif; font-size: 1.08rem; color: var(--dark-2); font-weight: 700;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--cran); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--dark); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 0 1.4rem; }

/* ===== FORMS ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.fg { display: flex; flex-direction: column; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark-2); margin-bottom: 0.4rem; }
.fg input, .fg select, .fg textarea {
  padding: 0.85rem 1rem; border: 2px solid rgba(74,53,39,0.16);
  border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  color: var(--text-dark); background: var(--white); outline: none; transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; min-height: 130px; }
.svc-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark-2); margin-bottom: 0.75rem; }
.svc-label em { font-style: normal; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-muted); }
.service-checks { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.svc-chip input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.svc-chip { position: relative; }
.svc-chip span {
  display: block; padding: 0.55rem 1.1rem;
  border: 2px solid rgba(74,53,39,0.16); border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
  background: var(--white); cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  user-select: none; white-space: nowrap;
}
.svc-chip span:hover { border-color: var(--gold); color: var(--dark-2); }
.svc-chip input:checked + span { border-color: var(--gold); background: var(--gold); color: var(--dark); }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }
.form-success { text-align: center; padding: 3rem 0; }
.form-success h3 { color: var(--cran); margin-bottom: 0.8rem; }

/* ===== ABOUT ===== */
.about-split  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-w  { position: relative; }
.about-img-w img { border-radius: var(--radius); width: 100%; height: 520px; object-fit: cover; border: 4px solid rgba(224,181,89,0.35); }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--cran); color: #fff; padding: 1.5rem;
  border-radius: var(--radius); text-align: center;
  border: 3px solid var(--gold-light); box-shadow: var(--shadow-lg);
}
.about-badge strong { display: block; font-size: 2.5rem; font-family: 'Fraunces', serif; line-height: 1; font-weight: 900; }
.about-badge span   { font-size: 0.75rem; font-weight: 700; }

/* ===== SERVICE DETAIL PAGE ===== */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.svc-features { margin: 1.5rem 0; }
.svc-features li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(74,53,39,0.10); font-size: 0.96rem;
}
.svc-features li:last-child { border-bottom: none; }
.svc-features i { color: var(--gold); margin-top: 0.25rem; flex-shrink: 0; }
.svc-img-hero {
  width: 100%; height: 420px; border-radius: var(--radius);
  overflow: hidden; position: sticky; top: calc(var(--nav-h) + 2rem);
  border: 4px solid rgba(224,181,89,0.35);
}
.svc-img-hero img, .svc-img-hero .svc-placeholder { width: 100%; height: 100%; object-fit: cover; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(251,244,230,0.72); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
/* width:auto is required — without it the img's width attribute becomes the
   used width and the logo renders stretched. Same reason .navbar-logo img has it. */
.footer-brand img { height: 52px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.5rem; color: rgba(251,244,230,0.72); }
.footer h4 {
  color: var(--gold-light); font-family: 'Nunito', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(251,244,230,0.68); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; margin-bottom: 0.8rem; }
.footer-contact i { color: var(--gold); margin-top: 0.25rem; flex-shrink: 0; }
.footer-contact a { color: rgba(251,244,230,0.72); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(251,244,230,0.14); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(251,244,230,0.45);
}
.social-links { display: flex; gap: 0.7rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(251,244,230,0.14);
  background: rgba(251,244,230,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(251,244,230,0.75); font-size: 0.9rem; transition: all 0.2s;
}
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ===== SCROLL ANIMATIONS ===== */
[data-ani] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-ani].visible { opacity: 1; transform: none; }
[data-ani="left"]  { transform: translateX(-40px); }
[data-ani="left"].visible { transform: none; }
[data-ani="right"] { transform: translateX(40px); }
[data-ani="right"].visible { transform: none; }
[data-ani="scale"] { transform: scale(0.9); }
[data-ani="scale"].visible { transform: none; }

[data-stagger] > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-stagger].visible > * { opacity: 1; transform: none; }
[data-stagger].visible > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].visible > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].visible > *:nth-child(3) { transition-delay: 0.2s; }
[data-stagger].visible > *:nth-child(4) { transition-delay: 0.3s; }
[data-stagger].visible > *:nth-child(5) { transition-delay: 0.4s; }
[data-stagger].visible > *:nth-child(6) { transition-delay: 0.5s; }

/* Twinkling lights decoration */
@keyframes twinkle {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.8); }
}
.twinkle { animation: twinkle 2.2s ease-in-out infinite; }
.twinkle:nth-child(2n)   { animation-delay: 0.4s; }
.twinkle:nth-child(3n)   { animation-delay: 0.8s; }
.twinkle:nth-child(4n)   { animation-delay: 1.2s; }

.lights-string {
  display: flex; justify-content: center; gap: 2.2rem; margin: 2.5rem 0;
  flex-wrap: wrap;
}
.light-bulb {
  width: 12px; height: 18px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
}
.light-bulb::after {
  content: ''; position: absolute; top: -4px; left: 4px;
  width: 4px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.6);
}
.lb-gold   { background: var(--gold-light); box-shadow: 0 0 10px var(--gold-light), 0 0 20px rgba(224,181,89,0.45); }
.lb-red    { background: #e05a4e; box-shadow: 0 0 10px #e05a4e, 0 0 20px rgba(224,90,78,0.45); }
.lb-green  { background: #5fb87f; box-shadow: 0 0 10px #5fb87f, 0 0 20px rgba(95,184,127,0.45); }
.lb-white  { background: #fff3d6; box-shadow: 0 0 10px #fff3d6, 0 0 20px rgba(255,243,214,0.45); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .features-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split, .svc-detail { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: 1rem; right: 1rem; }
  .svc-img-hero { position: static; height: 360px; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.2rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-logo { height: 140px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero::after, .page-hero::after { height: 38px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
