    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: #1C2B3A; background: #FFF9F2; line-height: 1.6; overflow-x: hidden; }
    img  { max-width: 100%; height: auto; display: block; }
    a    { text-decoration: none; color: inherit; }
    ul   { list-style: none; }

    :root {
      --navy:      #0B1B2E;
      --navy-mid:  #122845;
      --red:       #C41E2E;
      --red-lt:    #E0293A;
      --gold:      #E8A800;
      --gold-lt:   #F5C518;
      --gold-glow: #FFD700;
      --green:     #0C5C2A;
      --cream:     #FFF9F2;
      --card:      #F5EFE6;
      --text:      #1C2B3A;
      --muted:     #6B7280;
      --white:     #FFFFFF;
      --border:    #E5DED4;
      --pad:       clamp(64px, 8vw, 110px);
    }

    h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.18; }
    h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
    h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
    h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }
    p  { color: var(--muted); line-height: 1.85; }

    .wrap  { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }
    .sec   { padding: var(--pad) 0; }
    .label { font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; display: flex; align-items: center; gap: .6rem; }
    .label::before { content: ''; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }
    .mid   { text-align: center; }
    .mid .label { justify-content: center; }
    .mid .label::before { display: none; }
    .sec-title { margin-bottom: 1.1rem; color: var(--text); }
    .sec-sub   { max-width: 580px; font-size: 1.05rem; }
    .mid .sec-sub { margin: 0 auto; }

    /* ── Buttons ── */
    .btn { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 2rem; border-radius: 6px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .92rem; cursor: pointer; transition: all .22s ease; border: 2px solid transparent; }
    .btn-red   { background: var(--red); color: #fff; border-color: var(--red); }
    .btn-red:hover { background: var(--red-lt); border-color: var(--red-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,30,46,.42); }
    .btn-gold  { background: var(--gold-lt); color: var(--navy); border-color: var(--gold-lt); font-weight: 700; }
    .btn-gold:hover { background: var(--gold-glow); border-color: var(--gold-glow); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,168,0,.45); }
    .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
    .btn-ghost:hover { background: #fff; color: var(--navy); }
    .btn-dark  { background: transparent; color: var(--navy); border-color: var(--navy); }
    .btn-dark:hover { background: var(--navy); color: #fff; }

    /* ══════════════════════════════════════════
       STRING LIGHTS BAR
    ══════════════════════════════════════════ */
    .lights-bar {
      background: var(--navy);
      height: 40px;
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9100;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      transition: height .3s, opacity .3s;
    }
    .lights-bar.hidden { height: 0; opacity: 0; }
    .wire {
      position: absolute;
      top: 11px; left: -1%; right: -1%;
      height: 2px;
      background: rgba(255,255,255,.18);
    }
    .bulbs {
      display: flex;
      width: 100%;
      justify-content: space-around;
      padding: 0 8px;
      align-items: flex-end;
      height: 100%;
    }
    .bulb {
      width: 10px; height: 15px;
      border-radius: 5px 5px 7px 7px;
      position: relative;
      margin-bottom: 1px;
      animation: bulbPulse 1.8s ease-in-out infinite alternate;
    }
    .bulb::before {
      content: '';
      position: absolute;
      top: -5px; left: 50%;
      transform: translateX(-50%);
      width: 5px; height: 5px;
      background: rgba(255,255,255,.3);
      border-radius: 2px 2px 0 0;
    }
    .bulb.r { background: var(--red); animation-delay: 0s; }
    .bulb.g { background: #16a34a; animation-delay: .4s; }
    .bulb.b { background: #3b82f6; animation-delay: .8s; }
    .bulb.y { background: var(--gold-glow); animation-delay: .2s; }
    .bulb.w { background: #e2e8f0; animation-delay: 1.1s; }
    .bulb.p { background: #a855f7; animation-delay: .6s; }
    @keyframes bulbPulse {
      from { opacity: .55; filter: brightness(.7); }
      to   { opacity: 1;   filter: brightness(1.4) drop-shadow(0 0 6px currentColor); }
    }

    /* ══════════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 40px; left: 0; right: 0;
      z-index: 9000;
      background: rgba(11,27,46,.97);
      backdrop-filter: blur(14px);
      padding: 1rem 0;
      transition: top .3s, padding .3s, box-shadow .3s;
    }
    .nav.compact { top: 0; padding: .6rem 0; box-shadow: 0 2px 30px rgba(0,0,0,.35); }
    .nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
    .nav-logo { display: flex; align-items: center; gap: .75rem; }
    .nav-logo-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--red) 0%, var(--red-lt) 100%);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.35rem;
      flex-shrink: 0;
      box-shadow: 0 3px 12px rgba(196,30,46,.4);
    }
    .nav-logo-txt { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: #fff; line-height: 1.2; }
    .nav-logo-txt small { display: block; font-size: .6rem; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: .1em; color: rgba(255,255,255,.5); text-transform: uppercase; }
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a { color: rgba(255,255,255,.75); font-size: .87rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--gold-lt); }
    .nav-right { display: flex; align-items: center; gap: 1.2rem; }
    .nav-tel { color: rgba(255,255,255,.72); font-size: .84rem; display: flex; align-items: center; gap: .4rem; transition: color .2s; }
    .nav-tel:hover { color: var(--gold-lt); }
    .ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .ham span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }
    @media (max-width: 920px) {
      .nav-links { display: none; }
      .nav-tel   { display: none; }
      .ham       { display: flex; }
      .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1.5rem 2rem; gap: 1.4rem; box-shadow: 0 10px 28px rgba(0,0,0,.35); }
    }

    /* ══════════════════════════════════════════
       HERO
    ══════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 160px;
      padding-bottom: 80px;
      position: relative;
      overflow: hidden;
      background: var(--navy);
    }
    .hero-bg-art {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 15% 60%, rgba(196,30,46,.38) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 35%, rgba(232,168,0,.28) 0%, transparent 45%),
        radial-gradient(ellipse at 55% 80%, rgba(22,163,74,.22) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 75%, rgba(59,130,246,.2) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 20%, rgba(168,85,247,.18) 0%, transparent 38%),
        linear-gradient(160deg, #070E18 0%, #0B1B2E 55%, #0D2235 100%);
    }
    .stars-canvas { position: absolute; inset: 0; z-index: 0; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,27,46,.88) 0%, rgba(11,27,46,.65) 52%, rgba(11,27,46,.35) 100%); }
    .hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
    .hero-copy { color: #fff; }
    .hero-eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .75rem; }
    .hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gold); }
    .hero h1 { color: #fff; margin-bottom: 1.5rem; }
    .hero h1 em { font-style: italic; color: var(--gold-lt); }
    .hero h1 .hi-red { color: var(--red-lt); font-style: normal; }
    .hero-sub { font-size: 1.07rem; color: rgba(255,255,255,.8); max-width: 500px; margin-bottom: 2.4rem; }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
    .hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; }
    .trust-pill { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.7); }
    .trust-pill i { color: var(--gold-lt); }

    /* Hero right — bokeh light panels */
    .hero-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 460px; }
    .hero-cell { border-radius: 14px; overflow: hidden; }
    .hero-cell:first-child { grid-row: 1 / 3; }
    .hero-cell-inner { width: 100%; height: 100%; transition: transform .45s ease; position: relative; display: flex; align-items: center; justify-content: center; }
    .hero-cell:hover .hero-cell-inner { transform: scale(1.04); }
    .hc1 {
      background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-01.jpg') center/cover no-repeat;
    }
    .hc2 {
      background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-11.jpg') center/cover no-repeat;
    }
    .hc3 {
      background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-08.jpg') center/cover no-repeat;
    }
    .hero-cell-label {
      position: absolute;
      bottom: 16px; left: 16px;
      font-size: .75rem; font-weight: 600;
      color: rgba(255,255,255,.7);
      letter-spacing: .06em;
      text-transform: uppercase;
      background: rgba(11,27,46,.55);
      backdrop-filter: blur(6px);
      border-radius: 5px;
      padding: .3rem .7rem;
    }
    .hero-cell img { width: 100%; height: 100%; object-fit: cover; }

    @media (max-width: 900px) {
      .hero .wrap { grid-template-columns: 1fr; }
      .hero { padding-top: 168px; padding-bottom: 3rem; min-height: 0; }
      /* real install photos are the strongest proof on mobile — show them as a strip */
      .hero-mosaic { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 1fr; height: 150px; margin-top: 2rem; }
      .hero-cell:first-child { grid-row: auto; }
      .hero-cell-label { font-size: .6rem; }
    }
    @media (max-width: 420px) {
      .hero { padding-top: 180px; }
      .hero-mosaic { height: 120px; gap: 7px; }
    }

    /* ══════════════════════════════════════════
       URGENCY BAR
    ══════════════════════════════════════════ */
    .urgency {
      background: linear-gradient(90deg, var(--red) 0%, #A8101E 100%);
      padding: .65rem 0;
      position: relative;
      overflow: hidden;
    }
    .urgency::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,.08)'/%3E%3C/svg%3E"); }
    .urgency .wrap { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; position: relative; }
    .urgency-dot { width: 8px; height: 8px; background: var(--gold-glow); border-radius: 50%; animation: urgencyPulse 1.1s ease-in-out infinite; flex-shrink: 0; }
    @keyframes urgencyPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: .5; } }
    .urgency-txt { color: #fff; font-size: .88rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
    .urgency-spots { color: var(--gold-glow); font-weight: 800; }
    .urgency-link { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4); color: #fff; font-size: .78rem; font-weight: 700; padding: .3rem 1rem; border-radius: 4px; white-space: nowrap; transition: background .2s; }
    .urgency-link:hover { background: rgba(255,255,255,.28); }

    /* ══════════════════════════════════════════
       STATS
    ══════════════════════════════════════════ */
    .stats { background: var(--navy-mid); padding: 2.8rem 0; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
    .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat { text-align: center; padding: .8rem 1rem; border-right: 1px solid rgba(255,255,255,.09); }
    .stat:last-child { border: none; }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 2.7rem; font-weight: 700; color: #fff; line-height: 1; }
    .stat-num b { color: var(--gold-lt); font-weight: inherit; }
    .stat-lbl { font-size: .71rem; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .11em; margin-top: .38rem; }
    @media (max-width: 560px) { .stats-row { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: none; } }

    /* ══════════════════════════════════════════
       ABOUT
    ══════════════════════════════════════════ */
    .about { background: var(--cream); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-visual { position: relative; }
    .about-main { border-radius: 16px; overflow: hidden; height: 520px; }
    .about-main-art {
      width: 100%; height: 100%;
      background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.1) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-05.jpg') center/cover no-repeat;
      display: flex; align-items: center; justify-content: center;
    }
    .about-art-glow { display: none; font-size: 4.5rem; text-shadow: 0 0 40px rgba(232,168,0,.8), 0 0 80px rgba(196,30,46,.5); animation: artFloat 5s ease-in-out infinite; }
    @keyframes artFloat { 0%,100%{ transform: translateY(0) rotate(-3deg); } 50%{ transform: translateY(-10px) rotate(3deg); } }
    .about-inset { position: absolute; bottom: -28px; right: -24px; width: 195px; height: 195px; border-radius: 14px; overflow: hidden; border: 5px solid var(--cream); box-shadow: 0 12px 36px rgba(0,0,0,.22); }
    .about-inset-art {
      width: 100%; height: 100%;
      background: linear-gradient(150deg, rgba(6,14,24,0.20) 0%, rgba(11,27,46,0.14) 100%), url('/images/holiday-lights-brevard-03.jpg') center/cover no-repeat;
      display: flex; align-items: center; justify-content: center; font-size: 2.6rem;
    }
    .about-badge { position: absolute; top: 28px; left: -20px; background: var(--gold-lt); color: var(--navy); padding: 1.1rem 1.3rem; border-radius: 12px; text-align: center; box-shadow: 0 6px 22px rgba(232,168,0,.5); }
    .about-badge-n { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
    .about-badge-t { font-size: .63rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; margin-top: .2rem; opacity: .8; }
    .about-feats { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.1rem; }
    .feat { display: flex; gap: 1rem; align-items: flex-start; }
    .feat-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(196,30,46,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.1rem; }
    .feat-txt h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .93rem; color: var(--text); margin-bottom: .2rem; }
    .feat-txt p  { font-size: .88rem; }
    @media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .about-visual { margin-bottom: 3.5rem; } .about-inset { right: 8px; } }

    /* ══════════════════════════════════════════
       SERVICES
    ══════════════════════════════════════════ */
    .services { background: var(--card); }
    .svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; margin-top: 3rem; }
    .svc-card { position: relative; border-radius: 16px; overflow: hidden; height: 380px; cursor: pointer; }
    .svc-bg { width: 100%; height: 100%; transition: transform .48s ease; }
    .svc-card:hover .svc-bg { transform: scale(1.07); }
    .svc-layer { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,27,46,.96) 0%, rgba(11,27,46,.4) 58%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2.2rem; }
    .svc-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: rgba(255,255,255,.1); line-height: 1; margin-bottom: -.2rem; }
    .svc-layer h3 { color: #fff; font-size: 1.28rem; margin-bottom: .5rem; }
    .svc-layer p  { color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 1.1rem; }
    .svc-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--gold-lt); font-size: .82rem; font-weight: 600; font-family: 'Inter', sans-serif; }
    .svc-link i { transition: transform .2s; }
    .svc-card:hover .svc-link i { transform: translateX(5px); }
    .svc-bg-1 {
      background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-12.jpg') center/cover no-repeat;
    }
    .svc-bg-2 {
      background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-08.jpg') center/cover no-repeat;
    }
    .svc-bg-3 {
      background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-03.jpg') center/cover no-repeat;
    }
    .svc-bg-4 {
      background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-04.jpg') center/cover no-repeat;
    }
    @media (max-width: 680px) { .svc-grid { grid-template-columns: 1fr; } .svc-card { height: 300px; } }

    /* ══════════════════════════════════════════
       WHY CHOOSE US
    ══════════════════════════════════════════ */
    .why { background: var(--cream); }
    .why-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .why-card { background: var(--white); border-radius: 16px; padding: 2rem 1.6rem; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
    .why-card:hover { transform: translateY(-5px); box-shadow: 0 14px 42px rgba(0,0,0,.09); }
    .why-ico { width: 54px; height: 54px; background: rgba(196,30,46,.09); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--red); margin-bottom: 1.2rem; }
    .why-card h3 { font-size: 1rem; margin-bottom: .65rem; }
    .why-card p  { font-size: .88rem; }
    @media (max-width: 900px) { .why-cards { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .why-cards { grid-template-columns: 1fr; } }

    /* ══════════════════════════════════════════
       SERVICE AREAS — SEO GEO
    ══════════════════════════════════════════ */
    .areas { background: var(--navy); padding: var(--pad) 0; }
    .areas .label { color: var(--gold-lt); }
    .areas .sec-title { color: #fff; }
    .areas .sec-sub { color: rgba(255,255,255,.58); }
    .areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
    .area-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 1.4rem 1.6rem; transition: all .25s; }
    .area-card:hover { background: rgba(255,255,255,.085); border-color: rgba(232,168,0,.3); transform: translateY(-3px); }
    .area-ico { width: 34px; height: 34px; background: rgba(232,168,0,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold-lt); font-size: .88rem; margin-bottom: .8rem; }
    .area-card h3 { color: #fff; font-size: 1rem; margin-bottom: .3rem; }
    .area-card p { color: rgba(255,255,255,.45); font-size: .8rem; }
    .areas-footer { margin-top: 2.5rem; text-align: center; }
    .areas-note { font-size: .85rem; color: rgba(255,255,255,.4); }
    @media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .areas-grid { grid-template-columns: 1fr; } }

    /* ══════════════════════════════════════════
       GALLERY
    ══════════════════════════════════════════ */
    .gallery { background: var(--card); padding: var(--pad) 0; }
    .gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 230px 230px; gap: 10px; margin-top: 2.5rem; }
    .gal-item { border-radius: 12px; overflow: hidden; }
    .gal-item:first-child { grid-row: 1 / 3; }
    .gal-inner { width: 100%; height: 100%; transition: transform .42s; display: flex; align-items: flex-end; justify-content: flex-start; padding: 1rem; }
    .gal-item:hover .gal-inner { transform: scale(1.04); }
    .g1 { background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-09.jpg') center/cover no-repeat; }
    .g2 { background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-07.jpg') center/cover no-repeat; }
    .g3 { background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-10.jpg') center/cover no-repeat; }
    .g4 { background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-06.jpg') center/cover no-repeat; }
    .g5 { background: radial-gradient(ellipse at 62% 28%, rgba(232,168,0,0.10) 0%, transparent 62%), linear-gradient(150deg, rgba(6,14,24,0.34) 0%, rgba(11,27,46,0.24) 100%), url('/images/holiday-lights-brevard-02.jpg') center/cover no-repeat; }
    .gal-tag { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.65); letter-spacing: .06em; text-transform: uppercase; background: rgba(11,27,46,.55); backdrop-filter: blur(6px); border-radius: 4px; padding: .25rem .65rem; }
    .gal-footer { text-align: center; margin-top: 2.2rem; }
    @media (max-width: 680px) { .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } .gal-item:first-child { grid-row: auto; grid-column: 1 / 3; height: 200px; } .gal-item { height: 160px; } }

    /* ══════════════════════════════════════════
       PROCESS
    ══════════════════════════════════════════ */
    .process { background: var(--cream); }
    .proc-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; margin-top: 3rem; position: relative; }
    .proc-row::before { content: ''; position: absolute; top: 34px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 2px; background: linear-gradient(to right, var(--gold), var(--red-lt), var(--green), var(--navy-mid)); z-index: 0; }
    .proc-step { text-align: center; position: relative; z-index: 1; }
    .proc-n { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin: 0 auto 1.5rem; }
    .proc-step:nth-child(1) .proc-n { background: var(--gold-lt); color: var(--navy); box-shadow: 0 6px 22px rgba(232,168,0,.45); }
    .proc-step:nth-child(2) .proc-n { background: var(--red); color: #fff; box-shadow: 0 6px 22px rgba(196,30,46,.42); }
    .proc-step:nth-child(3) .proc-n { background: var(--green); color: #fff; box-shadow: 0 6px 22px rgba(12,92,42,.42); }
    .proc-step:nth-child(4) .proc-n { background: var(--navy-mid); color: var(--gold-lt); box-shadow: 0 6px 22px rgba(18,40,69,.42); }
    .proc-step h3 { margin-bottom: .65rem; }
    .proc-step p  { font-size: .9rem; max-width: 210px; margin: 0 auto; }
    @media (max-width: 780px) { .proc-row { grid-template-columns: 1fr 1fr; } .proc-row::before { display: none; } }
    @media (max-width: 480px) { .proc-row { grid-template-columns: 1fr; } }

    /* ══════════════════════════════════════════
       LEAD CAPTURE / FREE QUOTE FORM
    ══════════════════════════════════════════ */
    .lead {
      background: var(--navy);
      padding: var(--pad) 0;
      position: relative;
      overflow: hidden;
    }
    .lead-art {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 8% 50%, rgba(196,30,46,.16) 0%, transparent 48%),
        radial-gradient(ellipse at 92% 50%, rgba(232,168,0,.13) 0%, transparent 48%),
        radial-gradient(ellipse at 50% 100%, rgba(22,163,74,.1) 0%, transparent 40%);
    }
    .lead-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.028) 1px, transparent 1px); background-size: 30px 30px; }
    .lead .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
    .lead-copy .label { color: var(--gold-lt); }
    .lead-copy h2 { color: #fff; margin-bottom: 1rem; }
    .lead-copy > p { color: rgba(255,255,255,.68); font-size: 1.05rem; margin-bottom: 2rem; }
    .lead-perks { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2.2rem; }
    .lead-perk { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.8); font-size: .9rem; }
    .lead-perk i { color: var(--gold-lt); width: 18px; flex-shrink: 0; }
    .lead-tel { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.65); font-size: .9rem; }
    .lead-tel i { color: var(--red-lt); }
    .lead-tel a { color: var(--gold-lt); font-weight: 600; }
    .lead-form-wrap { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 2.6rem; }
    .lead-form-wrap h3 { color: #fff; font-size: 1.3rem; margin-bottom: .35rem; }
    .form-sub { color: rgba(255,255,255,.5); font-size: .84rem; margin-bottom: 1.8rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .38rem; }
    .form-group label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 8px;
      padding: .75rem 1rem;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: .9rem;
      outline: none;
      transition: border-color .2s, background .2s;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,.28); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--gold-lt); background: rgba(255,255,255,.1); }
    .form-group select option { background: #0D2235; color: #fff; }
    .form-group textarea { resize: none; }
    .form-full { grid-column: 1 / 3; }
    .form-submit { margin-top: 1.2rem; }
    .form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }
    .form-privacy { font-size: .73rem; color: rgba(255,255,255,.33); margin-top: .85rem; text-align: center; }
    .form-success { display: none; text-align: center; padding: 2rem 0; }
    .form-success i { font-size: 3rem; color: var(--gold-lt); margin-bottom: 1rem; }
    .form-success h3 { color: #fff; margin-bottom: .5rem; }
    .form-success p { color: rgba(255,255,255,.65); font-size: .9rem; }
    @media (max-width: 900px) { .lead .wrap { grid-template-columns: 1fr; } }
    @media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } .form-full { grid-column: auto; } .lead-form-wrap { padding: 1.8rem; } }

    /* ══════════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════════ */
    .reviews { background: var(--card); }
    .rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .rev-card { background: var(--white); border-radius: 16px; padding: 2rem; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
    .rev-card:hover { transform: translateY(-4px); box-shadow: 0 12px 34px rgba(0,0,0,.08); }
    .rev-stars { color: #F59E0B; font-size: .95rem; margin-bottom: .75rem; letter-spacing: .08em; }
    .rev-service { display: inline-flex; align-items: center; gap: .35rem; background: rgba(12,92,42,.08); color: var(--green); font-size: .68rem; font-weight: 700; padding: .22rem .6rem; border-radius: 4px; margin-bottom: .9rem; text-transform: uppercase; letter-spacing: .07em; }
    .rev-text { font-size: .92rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.78; font-style: italic; }
    .rev-auth { display: flex; align-items: center; gap: .75rem; }
    .rev-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--red) 0%, var(--red-lt) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .92rem; flex-shrink: 0; }
    .rev-name { font-weight: 600; font-size: .88rem; color: var(--text); }
    .rev-loc  { font-size: .78rem; color: var(--muted); }
    .rev-footer { margin-top: 2.5rem; text-align: center; }
    .g-badge { display: inline-flex; align-items: center; gap: .7rem; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: .75rem 1.4rem; font-size: .88rem; color: var(--text); font-weight: 500; transition: box-shadow .2s; }
    .g-badge:hover { box-shadow: 0 4px 16px rgba(0,0,0,.09); }
    .g-badge i { color: #4285F4; font-size: 1.15rem; }
    @media (max-width: 880px) { .rev-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

    /* ══════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════ */
    .faq { background: var(--cream); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
    .faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--white); }
    .faq-q { width: 100%; background: none; border: none; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .93rem; color: var(--text); text-align: left; gap: 1rem; }
    .faq-q i { color: var(--gold); transition: transform .3s; flex-shrink: 0; }
    .faq-item.open .faq-q i { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; padding: 0 1.5rem; }
    .faq-a p { font-size: .9rem; padding-bottom: 1.2rem; line-height: 1.82; }
    .faq-item.open .faq-a { max-height: 280px; }
    @media (max-width: 680px) { .faq-grid { grid-template-columns: 1fr; } }

    /* ══════════════════════════════════════════
       CTA BAND
    ══════════════════════════════════════════ */
    .cta-band {
      background: linear-gradient(130deg, #8B0A16 0%, var(--red) 50%, #A8101E 100%);
      padding: var(--pad) 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px); background-size: 28px 28px; }
    .cta-band-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(232,168,0,.22) 0%, transparent 55%); }
    .cta-band .wrap { position: relative; }
    .cta-band .label { color: rgba(255,255,255,.65); justify-content: center; }
    .cta-band .label::before { display: none; }
    .cta-band h2 { color: #fff; margin-bottom: 1rem; }
    .cta-band > .wrap > p { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 520px; margin: 0 auto 2.5rem; }
    .cta-acts { display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }
    .cta-tel { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.82); font-size: .98rem; font-weight: 500; transition: color .2s; }
    .cta-tel:hover { color: #fff; }
    .cta-tel i { color: var(--gold-lt); }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    .footer { background: #060C14; padding: 4.5rem 0 2rem; }
    .foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
    .foot-logo-row { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
    .foot-logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--red) 0%, var(--red-lt) 100%); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
    .foot-brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; }
    .foot-sub   { font-size: .65rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .12em; }
    .foot-desc  { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.88; max-width: 275px; margin-bottom: 1.4rem; }
    .socials { display: flex; gap: .65rem; }
    .soc { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.52); transition: all .2s; }
    .soc:hover { background: var(--red); color: #fff; }
    .foot-col h4 { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.28); margin-bottom: 1.2rem; }
    .foot-links { display: flex; flex-direction: column; gap: .7rem; }
    .foot-links a { font-size: .86rem; color: rgba(255,255,255,.55); transition: color .2s; }
    .foot-links a:hover { color: var(--gold-lt); }
    .foot-contact { display: flex; flex-direction: column; gap: .8rem; }
    .foot-ci { display: flex; gap: .7rem; align-items: flex-start; font-size: .85rem; color: rgba(255,255,255,.55); }
    .foot-ci i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
    .foot-ci a { color: rgba(255,255,255,.55); transition: color .2s; }
    .foot-ci a:hover { color: var(--gold-lt); }
    .foot-areas { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06); }
    .foot-areas-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.28); margin-bottom: .6rem; }
    .foot-areas p { font-size: .76rem; color: rgba(255,255,255,.28); line-height: 2.1; }
    .foot-areas a { color: rgba(255,255,255,.36); transition: color .2s; }
    .foot-areas a:hover { color: var(--gold-lt); }
    .foot-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .foot-copy { font-size: .78rem; color: rgba(255,255,255,.28); }
    .foot-badges { display: flex; gap: 1.2rem; flex-wrap: wrap; }
    .foot-badge { font-size: .72rem; color: rgba(255,255,255,.28); display: flex; align-items: center; gap: .4rem; }
    .foot-badge i { color: var(--gold); }
    @media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .foot-top { grid-template-columns: 1fr; } .foot-bottom { flex-direction: column; text-align: center; } }

    /* ══════════════════════════════════════════
       FLOATING MOBILE CTA
    ══════════════════════════════════════════ */
    .float-cta { display: none; position: fixed; bottom: 22px; right: 20px; z-index: 8000; }
    @media (max-width: 768px) { .float-cta { display: block; } }
    .float-cta a {
      background: var(--red);
      color: #fff;
      border-radius: 50px;
      padding: .85rem 1.6rem;
      font-weight: 700;
      font-size: .88rem;
      display: flex;
      align-items: center;
      gap: .5rem;
      box-shadow: 0 6px 26px rgba(196,30,46,.55);
      animation: floatBounce 3.5s ease-in-out infinite;
    }
    @keyframes floatBounce { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-7px); } }

    /* ══════════════════════════════════════════
       SCROLL REVEAL
    ══════════════════════════════════════════ */
    .fade { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
    .fade.in { opacity: 1; transform: none; }
    .fade-d1 { transition-delay: .1s; }
    .fade-d2 { transition-delay: .2s; }
    .fade-d3 { transition-delay: .3s; }
    .fade-d4 { transition-delay: .4s; }
    /* ══════════════════════════════════════════
       SUBPAGE COMPONENTS (multi-page build)
    ══════════════════════════════════════════ */
    .phero { position: relative; padding: 190px 0 4.5rem; background: var(--navy); overflow: hidden; }
    .phero::before { content:''; position:absolute; inset:0;
      background: linear-gradient(150deg, rgba(6,14,24,.72) 0%, rgba(11,27,46,.58) 100%), var(--phero-img) center/cover no-repeat; }
    .phero .wrap { position: relative; z-index: 2; }
    .phero h1 { font-family:'Playfair Display',serif; font-size: clamp(2.1rem,4.6vw,3.5rem); color:#fff; line-height:1.12; margin:.6rem 0 1rem; font-weight:700; }
    .phero p.phero-lede { color: rgba(255,255,255,.82); font-size:1.05rem; max-width: 660px; line-height:1.75; }
    .phero-acts { display:flex; gap:1rem; flex-wrap:wrap; margin-top:2rem; align-items:center; }
    .crumb { font-size:.8rem; color: rgba(255,255,255,.6); font-family:'Inter',sans-serif; }
    .crumb a { color: rgba(255,255,255,.75); }
    .crumb a:hover { color: var(--gold-lt); }
    .crumb span { margin: 0 .45rem; opacity:.5; }

    .prose { max-width: 760px; margin: 0 auto; }
    .prose h2 { font-family:'Playfair Display',serif; font-size:1.85rem; margin:2.4rem 0 .9rem; color:var(--ink); }
    .prose h3 { font-size:1.15rem; margin:1.8rem 0 .6rem; color:var(--ink); font-weight:700; }
    .prose p { margin-bottom:1.1rem; line-height:1.8; color:var(--ink-soft); }
    .prose ul { margin:0 0 1.3rem 1.1rem; }
    .prose li { margin-bottom:.6rem; line-height:1.7; color:var(--ink-soft); }
    .prose strong { color: var(--ink); }

    .city-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:.9rem; margin-top:2.2rem; }
    .city-link { display:flex; align-items:center; gap:.6rem; padding:1rem 1.15rem; border-radius:11px;
      background:#fff; border:1px solid rgba(11,27,46,.09); font-family:'Inter',sans-serif; font-size:.92rem;
      font-weight:600; color:var(--ink); transition:all .2s; box-shadow:0 2px 10px rgba(11,27,46,.04); }
    .city-link:hover { transform:translateY(-2px); border-color:var(--gold); box-shadow:0 8px 24px rgba(11,27,46,.10); color:var(--red); }
    .city-link i { color:var(--gold); font-size:.9rem; }
    .areas .city-link { background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.14); color:#fff; }
    .areas .city-link:hover { background:rgba(255,255,255,.13); color:var(--gold-lt); }

    .gal-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:2.4rem; }
    .gal-strip .gal-item { height:210px; border-radius:13px; overflow:hidden; }
    @media (max-width:680px){ .gal-strip { grid-template-columns:1fr 1fr; } .gal-strip .gal-item:last-child{ display:none; } }

    @media (max-width:900px){ .phero { padding:168px 0 3.2rem; } }
    @media (max-width:420px){ .phero { padding:180px 0 2.8rem; } }
