/* =========================================================
   {{BUSINESS_NAME}}: Permanent Holiday & Outdoor Lighting
   Mobile-first stylesheet, luxury dark theme
   ========================================================= */

:root{
  --bg:#0a0f0d;            /* page background, near-black deep green */
  --bg-alt:#0e1512;         /* alternate section background */
  --surface:#141c18;        /* card / surface background */
  --surface-2:#1a231e;      /* slightly raised surface (inputs, chips) */
  --surface-border:#2a352c;
  --emerald:#0f4d38;
  --emerald-light:#1c6b4d;
  --emerald-pale:#dff0e6;
  --gold:#cda454;
  --gold-light:#ecce8c;
  --gold-dim:#8a723f;
  --crimson:#9c2f3c;
  --ice:#bcd8ce;
  --text:#f5f2e9;            /* primary text, warm off-white */
  --text-soft:#c3cbc4;        /* secondary text */
  --text-faint:#828d84;
  --radius:14px;
  --shadow:0 12px 36px rgba(0,0,0,.55);
  --glow-gold:0 0 10px rgba(205,164,84,.55);
  --maxw:1180px;
  --gap:1.5rem;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--text-soft);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(28,107,77,.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(205,164,84,.06), transparent 55%),
    var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Poppins',system-ui,sans-serif;
  color:var(--text);
  line-height:1.2;
  margin:0 0 .6em;
  letter-spacing:.01em;
}
h1{font-size:clamp(2rem,5vw,3.2rem);font-weight:700}
h2{font-size:clamp(1.5rem,3.5vw,2.3rem);font-weight:600}
h3{font-size:clamp(1.15rem,2.5vw,1.5rem);font-weight:600;color:var(--text)}
p{margin:0 0 1em;color:var(--text-soft)}
a{color:var(--gold-light);text-decoration:none}
a:hover{color:var(--gold)}
img{max-width:100%;display:block;border-radius:var(--radius)}
ul{padding-left:1.2em}
.container{max-width:var(--maxw);margin:0 auto;padding:0 1.25rem}
section{padding:clamp(3rem,7vw,5.5rem) 0}
.section-alt{background:linear-gradient(180deg,var(--bg-alt),var(--bg))}
.section-dark{
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(205,164,84,.10), transparent 60%),
    linear-gradient(120deg,var(--emerald),#082a1f);
  color:var(--emerald-pale);
}
.section-dark h2,.section-dark h3{color:var(--white,#fff)}
.section-dark p{color:#d8e8df}
.center{text-align:center}
.eyebrow{
  display:inline-block;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-light);
  background:rgba(205,164,84,.12);
  border:1px solid rgba(205,164,84,.28);
  padding:.35em .9em;
  border-radius:999px;
  margin-bottom:.9em;
}
.lede{font-size:1.1rem;max-width:640px;color:var(--text-soft)}
.center .lede{margin-left:auto;margin-right:auto}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;gap:.5em;
  padding:.85em 1.6em;
  border-radius:999px;
  font-weight:600;
  font-size:.98rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary{background:linear-gradient(140deg,var(--gold-light),var(--gold));color:#1a1408;box-shadow:0 6px 18px rgba(205,164,84,.25)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(205,164,84,.4)}
.btn-outline{background:transparent;border-color:rgba(245,242,233,.35);color:var(--text)}
.btn-outline:hover{background:rgba(245,242,233,.08);border-color:var(--gold);color:var(--gold-light);transform:translateY(-2px)}
.section-alt .btn-outline{border-color:rgba(245,242,233,.25)}
.btn-block{width:100%;justify-content:center}

/* Header / Nav */
header.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(6,10,8,.92);
  backdrop-filter:blur(8px);
  color:var(--text);
  border-bottom:1px solid rgba(205,164,84,.15);
}
.nav-wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding:.85rem 1.25rem;
  max-width:var(--maxw);margin:0 auto;
}
.brand{
  display:flex;align-items:center;gap:.6em;
  font-family:'Poppins',sans-serif;font-weight:700;font-size:1.15rem;
  color:var(--text);
}
.brand .dot{color:var(--gold)}
.nav-links{
  list-style:none;display:none;
  gap:2rem;margin:0;padding:0;
  align-items:center;
}
.nav-links a{color:var(--text-soft);font-weight:500;font-size:.95rem}
.nav-links a:hover{color:var(--gold-light)}
.nav-cta{display:none}
.nav-phone{color:var(--gold-light);font-weight:600;white-space:nowrap}
.hamburger{
  background:none;border:none;color:var(--text);
  font-size:1.6rem;cursor:pointer;line-height:1;padding:.25em;
}
.nav-links.open{
  display:flex;flex-direction:column;
  position:absolute;top:100%;left:0;right:0;
  background:#0a0f0d;
  padding:1.25rem;gap:1rem;
  box-shadow:var(--shadow);
  border-bottom:1px solid rgba(205,164,84,.15);
}
@media(min-width:900px){
  .hamburger{display:none}
  .nav-links{display:flex;position:static;background:none;box-shadow:none;padding:0}
  .nav-cta{display:inline-flex}
}

/* ---- Light strand (decorative twinkling garland) ---- */
.light-strand{
  --wire-color: rgba(245,242,233,.14);
  max-width:var(--maxw);margin:0 auto;
  padding:.55rem 1.25rem .95rem;
  display:flex;align-items:flex-start;justify-content:space-between;
  position:relative;overflow:visible;
}
.light-strand::before{
  content:'';position:absolute;left:1.25rem;right:1.25rem;top:.55rem;height:1px;
  background:repeating-linear-gradient(90deg, var(--wire-color) 0 10px, transparent 10px 14px);
}
.light-strand .bulb{
  width:8px;height:8px;border-radius:50%;flex:0 0 auto;
  margin-top:2px;
  animation-name:twinkle;animation-duration:2.6s;animation-iteration-count:infinite;animation-timing-function:ease-in-out;
}
@keyframes twinkle{
  0%,100%{opacity:.32;filter:brightness(.75);transform:scale(.82)}
  50%{opacity:1;filter:brightness(1.15);transform:scale(1.12)}
}
@media(max-width:640px){ .light-strand .bulb:nth-child(n+16){display:none} }

/* Hero */
.hero{
  background:
    radial-gradient(700px 380px at 85% -10%, rgba(205,164,84,.12), transparent 60%),
    linear-gradient(165deg,#0d1a15,#081310 55%,#060a08),
    repeating-linear-gradient(45deg, rgba(205,164,84,.045) 0 2px, transparent 2px 42px);
  color:var(--text);
  padding:clamp(3.5rem,9vw,7rem) 0;
  position:relative;
}
.hero-grid{display:grid;gap:2.5rem;align-items:center}
@media(min-width:860px){.hero-grid{grid-template-columns:1.1fr .9fr}}
.hero p.lede{color:#cfd9d2}
.hero .btn-row{display:flex;flex-wrap:wrap;gap:1rem;margin-top:1.6rem}
.hero-badges{display:flex;flex-wrap:wrap;gap:1.2rem;margin-top:2rem;font-size:.88rem;color:var(--gold-light);font-weight:600}
.hero-badges span{display:flex;align-items:center;gap:.4em}
.hero-visual{
  background:linear-gradient(160deg,#13241c,#0a1512);
  border:1px solid rgba(205,164,84,.22);
  border-radius:var(--radius);
  aspect-ratio:4/3;
  display:flex;align-items:stretch;justify-content:flex-end;flex-direction:column;
  color:var(--gold-light);
  font-family:'Poppins',sans-serif;font-weight:600;text-align:center;
  padding:1.4rem;
  position:relative;overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-visual .lights{
  display:none;
}
.hero-visual img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:1;
}
.hero-visual::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,15,13,0) 45%,rgba(10,15,13,.75) 100%);
  z-index:1;
}
.hero-visual .hero-caption{
  position:relative;z-index:3;
  display:block;
  width:100%;
  text-align:left;
  font-size:.85rem;
  font-weight:500;
  color:var(--gold-light);
  text-shadow:0 2px 8px rgba(0,0,0,.7);
}
/* Interactive multicolor hero light effect (homepage) */
.hero-visual .hero-lightfx{
  position:absolute;inset:0;z-index:2;pointer-events:none;
}
.hero-visual .hero-lightfx .bulb-fx{
  position:absolute;
  width:9px;height:9px;border-radius:50%;
  opacity:.45;
  transform:scale(1);
  transition:opacity .25s ease, transform .25s ease;
}
.hero-visual:hover .hero-lightfx .bulb-fx,
.hero-visual.lit .hero-lightfx .bulb-fx{
  animation:bulb-fx-blink 1.15s ease-in-out infinite;
}
@keyframes bulb-fx-blink{
  0%,100%{opacity:.5;transform:scale(1)}
  50%{opacity:1;transform:scale(1.5)}
}
.hero-visual{cursor:pointer}


/* Grid cards */
.grid{display:grid;gap:var(--gap)}
.grid-3{grid-template-columns:1fr}
.grid-2{grid-template-columns:1fr}
@media(min-width:700px){.grid-2{grid-template-columns:1fr 1fr}.grid-3{grid-template-columns:repeat(3,1fr)}}
.card{
  background:linear-gradient(165deg,var(--surface),#101613);
  border:1px solid var(--surface-border);
  border-radius:var(--radius);
  padding:1.8rem;
  box-shadow:var(--shadow);
}
.card .icon{
  width:52px;height:52px;border-radius:12px;
  background:rgba(205,164,84,.12);
  border:1px solid rgba(205,164,84,.25);
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;margin-bottom:1rem;
}
.card h3{margin-bottom:.4em}
.card p{margin-bottom:0}

/* Steps */
.steps{counter-reset:step}
.step{display:flex;gap:1.1rem;margin-bottom:1.6rem}
.step .num{
  counter-increment:step;flex:0 0 auto;
  width:42px;height:42px;border-radius:50%;
  background:linear-gradient(140deg,var(--gold-light),var(--gold));color:#1a1408;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-family:'Poppins',sans-serif;
  box-shadow:var(--glow-gold);
}
.step .num::before{content:counter(step)}

/* Service area chips */
.area-chips{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.2rem}
.area-chips a{
  background:var(--surface-2);border:1px solid var(--surface-border);
  border-radius:999px;padding:.5em 1.1em;font-size:.9rem;font-weight:600;color:var(--text-soft);
}
.area-chips a:hover{border-color:var(--gold);color:var(--gold-light)}

/* FAQ */
.faq-item{
  border-bottom:1px solid var(--surface-border);
  padding:1.2rem 0;
}
.faq-item summary{
  cursor:pointer;font-weight:600;color:var(--text);
  font-family:'Poppins',sans-serif;font-size:1.02rem;
  list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:1.4rem;color:var(--gold);flex:0 0 auto}
.faq-item[open] summary::after{content:'–'}
.faq-item p{margin-top:.8rem}

/* Gallery */
.gallery-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem}
@media(min-width:700px){.gallery-grid{grid-template-columns:repeat(3,1fr)}}
.gallery-item{
  aspect-ratio:1;border-radius:10px;overflow:hidden;
  background:linear-gradient(160deg,var(--emerald-light),#081712);
  border:1px solid rgba(205,164,84,.18);
  position:relative;
  display:flex;align-items:flex-end;justify-content:center;
  color:var(--gold-light);font-size:.85rem;text-align:center;
  font-weight:600;
}
.gallery-item img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;
}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-item span{
  position:relative;z-index:2;width:100%;
  padding:.7rem .6rem .6rem;
  background:linear-gradient(0deg,rgba(6,10,8,.88),rgba(6,10,8,0));
  font-size:.82rem;
}

/* Testimonial */
.testimonial{
  background:var(--surface);border-radius:var(--radius);
  border:1px solid var(--surface-border);padding:1.8rem;box-shadow:var(--shadow);
}
.testimonial .stars{color:var(--gold);letter-spacing:.2em;margin-bottom:.6em}
.testimonial .who{font-weight:700;color:var(--text);margin-top:.8em;font-size:.92rem}

/* Forms */
.form-field{margin-bottom:1.1rem}
.form-field label{display:block;font-weight:600;margin-bottom:.4em;font-size:.92rem;color:var(--text)}
.form-field input,.form-field select,.form-field textarea{
  width:100%;padding:.85em 1em;border-radius:10px;border:1px solid var(--surface-border);
  font-family:inherit;font-size:1rem;background:var(--surface-2);color:var(--text);
}
.form-field input::placeholder,.form-field textarea::placeholder{color:var(--text-faint)}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{outline:none;border-color:var(--gold)}
.form-field textarea{min-height:120px;resize:vertical}
.form-note{font-size:.85rem;color:var(--text-faint)}

/* CTA band */
.cta-band{
  background:
    radial-gradient(500px 260px at 20% 0%, rgba(205,164,84,.14), transparent 60%),
    linear-gradient(120deg,var(--emerald),#082a1f);
  color:var(--white,#fff);border-radius:var(--radius);
  padding:2.5rem;text-align:center;
  border:1px solid rgba(205,164,84,.2);
}
.cta-band h2{color:#fff}

/* Blog */
.post-card{background:linear-gradient(165deg,var(--surface),#101613);border:1px solid var(--surface-border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.post-card .thumb{
  aspect-ratio:16/9;background:linear-gradient(150deg,var(--emerald-light),#081712);
  display:flex;align-items:center;justify-content:center;color:var(--gold-light);
  font-family:'Poppins',sans-serif;font-weight:600;padding:1rem;text-align:center;font-size:.9rem;
}
.post-card .body{padding:1.4rem}
.post-card .meta{font-size:.8rem;color:var(--text-faint);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.5em}
.post-card h3 a{color:var(--text)}
article.post{max-width:760px;margin:0 auto}
article.post .meta{font-size:.85rem;color:var(--text-faint);text-transform:uppercase;letter-spacing:.06em;margin-bottom:1em}
article.post h2{margin-top:1.6em}
article.post ul{color:var(--text-soft);margin-bottom:1.2em}
article.post li{margin-bottom:.4em}
.breadcrumb{font-size:.85rem;color:var(--text-faint);margin-bottom:1rem}
.breadcrumb a{color:var(--text-faint);text-decoration:underline}

/* Footer */
footer.site-footer{background:#070b09;color:var(--text-soft);padding:2rem 0 1.5rem;border-top:1px solid rgba(205,164,84,.15)}
.footer-grid{display:grid;gap:2rem;grid-template-columns:1fr}
@media(min-width:760px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer-grid h4{color:var(--text);font-size:.95rem;margin-bottom:1em}
.footer-grid ul{list-style:none;padding:0;margin:0}
.footer-grid li{margin-bottom:.6em}
.footer-grid a{color:var(--text-soft);font-size:.92rem}
.footer-grid a:hover{color:var(--gold-light)}
.footer-bottom{
  border-top:1px solid rgba(245,242,233,.08);
  margin-top:2.5rem;padding-top:1.5rem;
  font-size:.82rem;color:var(--text-faint);
  display:flex;flex-wrap:wrap;gap:.6rem;justify-content:space-between;
}

.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}

/* ---- Video showcase grid (drone / project clips) ---- */
.video-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem}
@media(min-width:700px){.video-grid{grid-template-columns:repeat(3,1fr)}}
.video-item{
  position:relative;border-radius:10px;overflow:hidden;
  aspect-ratio:9/16;background:linear-gradient(160deg,var(--emerald-light),#081712);
  border:1px solid rgba(205,164,84,.18);
  box-shadow:var(--shadow);
}
.video-item video,.video-item img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.video-item .video-label{
  position:absolute;left:0;right:0;bottom:0;z-index:2;
  padding:.7rem .6rem .6rem;
  background:linear-gradient(0deg,rgba(6,10,8,.88),rgba(6,10,8,0));
  font-size:.8rem;font-weight:600;color:var(--gold-light);
}
.video-item .play-badge{
  position:absolute;top:.6rem;right:.6rem;z-index:2;
  width:30px;height:30px;border-radius:50%;
  background:rgba(6,10,8,.55);border:1px solid rgba(245,242,233,.4);
  display:flex;align-items:center;justify-content:center;color:#fff;font-size:.8rem;
  cursor:pointer;
}
.video-item{cursor:pointer}
.video-item.playing .play-badge{opacity:0}

/* =========================================================
   Mobile-first visual refinements: more visuals, less text
   ========================================================= */
@media(max-width:640px){
  section{padding:2.3rem 0}
  .container{padding:0 1.1rem}
  .lede{font-size:1rem;line-height:1.55}
  body{line-height:1.55}
  h1{margin-bottom:.5em}
  .eyebrow{font-size:.7rem;padding:.3em .8em;margin-bottom:.7em}

  /* Hero: image leads, text follows; visual-first on small screens */
  .hero{padding:1.8rem 0 2.4rem}
  .hero-grid{gap:1.3rem}
  .hero-visual{order:-1;aspect-ratio:4/3}
  .hero .btn-row{gap:.7rem;margin-top:1.2rem}
  .hero .btn-row .btn{flex:1 1 auto;justify-content:center}
  .hero-badges{gap:.5rem .8rem;margin-top:1.4rem;font-size:.76rem}

  /* Buttons: fill width, easier tap targets */
  .btn{padding:.8em 1.3em;font-size:.92rem}

  /* Cards: tighter, icon-led */
  .card{padding:1.3rem}
  .card .icon{width:42px;height:42px;font-size:1.2rem;margin-bottom:.7rem}
  .card p{font-size:.92rem}

  /* Steps: compact */
  .step{gap:.85rem;margin-bottom:1.2rem}
  .step .num{width:36px;height:36px;font-size:.9rem}

  /* Gallery & video grids: bigger, fewer columns for visual impact */
  .gallery-grid{grid-template-columns:repeat(2,1fr);gap:.6rem}
  .video-grid{grid-template-columns:repeat(2,1fr);gap:.6rem}

  /* FAQ: tighter rows */
  .faq-item{padding:1rem 0}
  .faq-item summary{font-size:.96rem}

  /* CTA band: less padding, same energy */
  .cta-band{padding:1.8rem 1.3rem}
}

@media(max-width:420px){
  .hero-badges{flex-direction:column;align-items:flex-start;gap:.45rem}
  .gallery-grid,.video-grid{grid-template-columns:1fr 1fr}
}
