/* ─── BLASTMASTERS FL — HOMEPAGE STYLES ─── */

    /* ─── TOKENS ─── */
    :root {
      --ink:       #1C2128;
      --ink-soft:  #2D3540;
      --white:     #FFFFFF;
      --offwhite:  #F4F5F7;
      --border:    #E0E3E8;
      --muted:     #6B7585;
      --yellow:    #FFD000;
      --yellow-dk: #E8BB00;
      --blue:      #2A7AE4;
      --max:       1200px;
      --pad:       clamp(20px, 5vw, 80px);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

    /* topbar removed */

    /* ─── NAV ─── */
    .site-header {
      background: var(--white);
      border-bottom: 3px solid var(--yellow);
      position: sticky;
      top: 0;
      z-index: 200;
    }
    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad);
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo-wrap { display: flex; align-items: center; }
    .logo-img { height: 48px; width: auto; display: block; }

    .nav-phone {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      color: var(--ink-soft);
      white-space: nowrap;
      padding: 8px 10px;
      transition: color 0.15s;
    }
    .nav-phone:hover { color: var(--blue); }

    .nav-list { list-style: none; display: flex; align-items: center; gap: 2px; }
    .nav-list > li { position: relative; }
    .nav-list > li > a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--ink-soft);
      padding: 8px 14px;
      display: block;
      transition: color 0.15s;
    }
    .nav-list > li > a:hover { color: var(--blue); }
    .has-sub > a::after { content: ' ▾'; font-size: 0.6rem; opacity: 0.5; }

    .sub-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--ink);
      min-width: 220px;
      z-index: 300;
      border-top: 3px solid var(--yellow);
    }
    .has-sub:hover .sub-menu { display: block; }
    .sub-menu a {
      display: block;
      padding: 12px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.15s, background 0.15s;
    }
    .sub-menu a:hover { color: var(--yellow); background: rgba(255,255,255,0.04); }

    .nav-cta {
      background: var(--yellow);
      color: var(--ink) !important;
      font-family: 'Barlow Condensed', sans-serif !important;
      font-weight: 800 !important;
      font-size: 0.92rem !important;
      letter-spacing: 0.08em !important;
      text-transform: uppercase !important;
      padding: 11px 22px !important;
      white-space: nowrap;
      transition: background 0.15s !important;
    }
    .nav-cta:hover { background: var(--yellow-dk) !important; color: var(--ink) !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--ink); }

    /* ─── HERO ─── */
    .hero {
      background: var(--ink);
      background-image: url(../images/hero-main.webp);
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      min-height: 580px;
      display: flex;
      align-items: center;
    }
    /* Dark overlay for text readability */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(28,33,40,0.88) 0%, rgba(28,33,40,0.75) 50%, rgba(28,33,40,0.45) 100%);
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: var(--max);
      margin: 0 auto;
      padding: 80px var(--pad);
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      align-items: center;
      width: 100%;
    }
    .hero-kicker {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }
    .hero-kicker::before,
    .hero-kicker::after {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: var(--yellow);
      flex-shrink: 0;
    }
    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(3rem, 7vw, 5.5rem);
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      color: var(--white);
      margin-bottom: 24px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--yellow);
      display: block;
    }
    .hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.62);
      max-width: 520px;
      margin-bottom: 40px;
      line-height: 1.75;
    }
    .hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
    .btn-hero {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--yellow);
      color: var(--ink);
      padding: 16px 36px;
      display: inline-block;
      transition: background 0.15s, transform 0.15s;
    }
    .btn-hero:hover { background: var(--yellow-dk); transform: translateY(-1px); }
    .btn-phone {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      transition: color 0.15s;
    }
    .btn-phone:hover { color: var(--white); }
    .btn-phone strong { color: var(--white); font-size: 1.05rem; }

    /* Hero illustration placeholder — big and confident */
    .hero-art {
      width: 260px;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.12;
      flex-shrink: 0;
    }
    .hero-art svg { width: 100%; height: 100%; }

    /* ─── PROOF BAR ─── */
    .proof-bar {
      background: var(--offwhite);
      border-bottom: 1px solid var(--border);
      padding: 0;
    }
    .proof-items {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .proof-item {
      padding: 28px 24px;
      border-right: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .proof-item:last-child { border-right: none; }
    .proof-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 2.4rem;
      line-height: 1;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .proof-num span { color: var(--yellow); -webkit-text-stroke: 1px var(--ink); font-size: 2rem; }
    .proof-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ─── SECTION BASE ─── */
    .sec { padding: 88px 0; }
    .sec-alt { background: var(--offwhite); }
    .sec-dark { background: var(--ink); }

    .eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); }
    .eyebrow.yw { color: var(--yellow); }
    .eyebrow.yw::before { background: var(--yellow); }

    .sec-h {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(2rem, 4vw, 3rem);
      text-transform: uppercase;
      letter-spacing: 0.01em;
      line-height: 1.05;
      color: var(--ink);
    }
    .sec-h.wh { color: var(--white); }
    .sec-p { font-size: 0.95rem; color: var(--muted); margin-top: 14px; max-width: 560px; line-height: 1.75; }
    .sec-p.wh { color: rgba(255,255,255,0.55); }

    /* ─── SERVICES ─── */
    .svc-header { margin-bottom: 56px; }
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .svc-item {
      padding: 36px 32px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      transition: background 0.2s;
    }
    .svc-item:hover { background: var(--ink); }
    .svc-item:nth-child(3n) { border-right: none; }
    .svc-item:nth-child(4), .svc-item:nth-child(5), .svc-item:nth-child(6) { border-bottom: none; }
    .svc-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 3.5rem;
      line-height: 1;
      color: var(--border);
      margin-bottom: 12px;
      transition: color 0.2s;
    }
    .svc-item:hover .svc-num { color: rgba(255,255,255,0.08); }
    .svc-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.35rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--ink);
      margin-bottom: 20px;
      transition: color 0.2s;
      flex: 1;
    }
    .svc-item:hover .svc-name { color: var(--white); }
    .svc-arrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s, gap 0.2s;
    }
    .svc-item:hover .svc-arrow { color: var(--yellow); gap: 14px; }
    .svc-arrow::after { content: '→'; font-size: 1rem; }
    .svc-item > a {
      position: absolute;
      inset: 0;
    }

    /* ─── ABOUT STRIP ─── */
    .about-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .about-img {
      background: var(--ink-soft);
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
    }
    .about-content {
      background: var(--ink);
      padding: 64px clamp(28px, 5vw, 72px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
    }
    .why-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
    .why-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .why-row:last-child { border-bottom: none; }
    .why-tick {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      background: var(--yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }
    .why-tick svg { width: 10px; height: 10px; }
    .why-row strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 3px;
    }
    .why-row span { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

    /* ─── REVIEWS ─── */
    .reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
    .rating-display { display: flex; align-items: center; gap: 12px; }
    .big-rating {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 3.5rem;
      line-height: 1;
      color: var(--ink);
    }
    .rating-detail { display: flex; flex-direction: column; gap: 3px; }
    .stars-row { color: #FBBC04; font-size: 1.1rem; letter-spacing: 2px; }
    .rating-count { font-size: 0.82rem; color: var(--muted); }
    .google-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      border-bottom: 2px solid var(--border);
      padding-bottom: 2px;
      transition: color 0.15s, border-color 0.15s;
    }
    .google-link:hover { color: var(--blue); border-color: var(--blue); }
    .g-icon { width: 18px; height: 18px; }

    .reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); }
    .review-card {
      padding: 32px;
      border-right: 1px solid var(--border);
    }
    .review-card:last-child { border-right: none; }
    .rc-stars { color: #FBBC04; font-size: 0.9rem; margin-bottom: 14px; }
    .rc-text { font-size: 0.9rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 20px; }
    .rc-author {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--ink);
    }

    /* ─── LOCATIONS ─── */
    .loc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-left: 1px solid var(--border);
      border-top: 1px solid var(--border);
    }
    .loc-item {
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink);
      transition: background 0.15s, color 0.15s;
    }
    .loc-item:hover { background: var(--ink); color: var(--yellow); }
    .loc-item::after { content: '→'; opacity: 0.3; transition: opacity 0.15s; }
    .loc-item:hover::after { opacity: 1; }
    .loc-intro { margin-bottom: 40px; }

    /* ─── CTA ─── */
    .cta-block {
      background: var(--yellow);
      padding: 72px var(--pad);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .cta-block h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(2rem, 4vw, 3rem);
      text-transform: uppercase;
      line-height: 1.0;
      color: var(--ink);
    }
    .cta-block p { font-size: 0.95rem; color: rgba(0,0,0,0.6); margin-top: 8px; }
    .btn-dark {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--ink);
      color: var(--white);
      padding: 16px 40px;
      display: inline-block;
      white-space: nowrap;
      transition: background 0.15s;
      flex-shrink: 0;
    }
    .btn-dark:hover { background: var(--ink-soft); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.5);
      padding: 64px 0 28px;
    }
    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 28px;
    }
    .foot-logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.4rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 16px;
      display: block;
    }
    .foot-logo span { color: var(--yellow); }
    .foot-brand p { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
    .foot-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 7px; font-size: 0.86rem; }
    .foot-contact a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
    .foot-contact a:hover { color: var(--yellow); }
    .foot-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 18px;
    }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .foot-col ul a {
      font-size: 0.87rem;
      color: rgba(255,255,255,0.55);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.88rem;
      transition: color 0.15s;
    }
    .foot-col ul a:hover { color: var(--yellow); }
    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.28);
    }
    .foot-bottom a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
    .foot-bottom a:hover { color: rgba(255,255,255,0.7); }

    /* ─── MOBILE STICKY ─── */
    .sticky-call {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--yellow);
      color: var(--ink);
      text-align: center;
      padding: 16px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      z-index: 999;
    }

    /* ─── HOA SECTION ─── */
    .hoa-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .hoa-list {
      list-style: none;
      margin: 28px 0 36px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .hoa-list li {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .hoa-list li:last-child { border-bottom: none; }
    .hoa-icon {
      flex-shrink: 0;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.1rem;
      color: var(--blue);
      margin-top: 2px;
      width: 20px;
    }
    .hoa-list li strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--ink);
      margin-bottom: 3px;
    }
    .hoa-list li span { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
    .btn-hoa {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--ink);
      color: var(--white);
      padding: 15px 32px;
      transition: background 0.15s;
    }
    .btn-hoa:hover { background: var(--blue); }
    .hoa-img {
      background: var(--border);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #aaa;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .proof-items { grid-template-columns: repeat(2, 1fr); }
      .proof-item:nth-child(2) { border-right: none; }
      .proof-item:nth-child(3) { border-top: 1px solid var(--border); }
      .svc-grid { grid-template-columns: repeat(2, 1fr); }
      .svc-item:nth-child(2n) { border-right: none; }
      .svc-item:nth-child(3), .svc-item:nth-child(4), .svc-item:nth-child(5), .svc-item:nth-child(6) { border-bottom: none; }
      .svc-item:nth-child(5), .svc-item:nth-child(6) { border-bottom: none; }
      .about-strip { grid-template-columns: 1fr; }
      .hoa-grid { grid-template-columns: 1fr; }
      .hoa-img { display: none; }
      .reviews-grid { grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border); }
      .review-card { border-right: none; border-bottom: 1px solid var(--border); }
      .review-card:last-child { border-bottom: none; }
      .loc-grid { grid-template-columns: repeat(2, 1fr); }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .sticky-call { display: block; }
      body { padding-bottom: 58px; }
    }
    @media (max-width: 768px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-art { display: none; }
      .nav-list { display: none; }
      .hamburger { display: flex; }
      .tb-r { flex-direction: column; gap: 4px; text-align: right; }
      .svc-grid { grid-template-columns: 1fr; }
      .svc-item { border-right: none; border-bottom: 1px solid var(--border); }
      .svc-item:last-child { border-bottom: none; }
      .reviews-header { flex-direction: column; align-items: flex-start; }
      .cta-block { flex-direction: column; align-items: flex-start; }
      .foot-grid { grid-template-columns: 1fr; gap: 32px; }
      .proof-items { grid-template-columns: repeat(2, 1fr); }
    }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }
  