  :root {
      --red: #c70000;
      --red-dark: #9f0000;
      --red-light: #e82222;
      --gold: #e7ac44;
      --gold-dark: #c8912a;
      --black: #0d0d0d;
      --white: #ffffff;
      --gray: #f5f4f2;
      --gray-mid: #e8e6e1;
      --dark-gray: #1e1e1e;
      --text: #2c2b28;
      --text-muted: #6b6760;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
      font-size: 16px;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: 92%;
      max-width: 1240px;
      margin: 0 auto;
    }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--black);
      color: rgba(255,255,255,0.75);
      padding: 9px 0;
      font-size: 13.5px;
      letter-spacing: 0.04em;
      font-weight: 600;
    }
    .topbar-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .topbar a {
      color: var(--gold);
      font-weight: 700;
      letter-spacing: 0.06em;
      transition: color 0.15s;
    }
    .topbar a:hover { color: #f5c866; }
    .topbar-location::before {
      content: '📍 ';
      font-style: normal;
    }

    /* ── HEADER ── */
    header {
      background: var(--white);
      border-bottom: 3px solid var(--red);
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }
    .header-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
      gap: 20px;
    }
    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .logo-wrap img { max-height: 64px; width: auto; }

    .logo-text h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: var(--red);
      line-height: 1;
      letter-spacing: 0.04em;
    }
    .logo-text p {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* ── NAV ── */
    nav ul {
      list-style: none;
      display: flex;
      gap: 6px;
      align-items: center;
      flex-wrap: wrap;
    }
    nav a {
      font-weight: 700;
      font-size: 13.5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
      padding: 8px 12px;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }
    nav a:not(.cta-btn):hover {
      color: var(--red);
      background: rgba(199,0,0,0.06);
    }

    /* ── BUTTONS ── */
    .cta-btn {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      padding: 12px 22px;
      font-weight: 700;
      font-size: 13.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 4px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 3px 12px rgba(199,0,0,0.3);
    }
    .cta-btn:hover {
      background: var(--red-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(199,0,0,0.4);
    }
    .secondary-btn {
      display: inline-block;
      background: transparent;
      color: var(--white);
      padding: 12px 22px;
      font-weight: 700;
      font-size: 13.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 4px;
      border: 2px solid rgba(255,255,255,0.6);
      transition: border-color 0.2s, background 0.2s;
    }
    .secondary-btn:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.12);
    }
    .gold-btn {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      padding: 14px 28px;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: 4px;
      transition: background 0.2s, transform 0.15s;
    }
    .gold-btn:hover {
      background: var(--gold-dark);
      transform: translateY(-1px);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      background: var(--black) url('roofing-hero.jpg') center/cover no-repeat;
      color: var(--white);
      padding: 120px 0 100px;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.3) 100%);
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
    }
    .hero .container { position: relative; }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(231,172,68,0.18);
      border: 1px solid rgba(231,172,68,0.4);
      color: var(--gold);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
    }
    .hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }
    .hero-content { max-width: 800px; }
    .hero h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 80px;
      line-height: 0.95;
      letter-spacing: 0.02em;
      margin-bottom: 24px;
    }
    .hero h2 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero p {
      font-size: 19px;
      max-width: 620px;
      margin-bottom: 36px;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
    }
    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }
    .hero-trust {
      margin-top: 52px;
      display: flex;
      gap: 36px;
      flex-wrap: wrap;
    }
    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .hero-trust-item .icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    /* ── SECTION DEFAULTS ── */
    section { padding: 88px 0; }

    .section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      background: rgba(199,0,0,0.08);
      padding: 5px 12px;
      border-radius: 100px;
      margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 52px;
      letter-spacing: 0.03em;
      color: var(--black);
      line-height: 1;
      margin-bottom: 16px;
    }
    .section-title.center { text-align: center; }
    .section-subtitle {
      font-size: 17.5px;
      color: var(--text-muted);
      max-width: 700px;
      line-height: 1.7;
    }
    .section-subtitle.center {
      text-align: center;
      margin: 0 auto 56px;
    }
    .section-header { margin-bottom: 56px; }
    .section-header.center { text-align: center; }

    .gray-bg { background: var(--gray); }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 40px;
      align-items: start;
    }
    .about-prose h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 38px;
      letter-spacing: 0.03em;
      color: var(--black);
      margin-bottom: 18px;
      line-height: 1;
    }
    .about-prose p {
      font-size: 16.5px;
      color: #444;
      margin-bottom: 18px;
      line-height: 1.75;
    }
    .about-card {
      background: var(--white);
      border: 1px solid var(--gray-mid);
      border-radius: 12px;
      padding: 36px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.07);
      position: relative;
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--gold));
    }
    .about-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 20px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    .about-card ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .about-card ul li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15.5px;
      color: var(--text);
      font-weight: 600;
      line-height: 1.4;
    }
    .about-card ul li::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 5px;
    }

    /* ── SERVICES ── */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--gray-mid);
      border-radius: 12px;
      padding: 36px 30px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.05);
      transition: box-shadow 0.25s, transform 0.25s;
      position: relative;
      overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .service-card:hover {
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
      transform: translateY(-4px);
    }
    .service-card:hover::after { transform: scaleX(1); }

    .service-icon {
      width: 54px;
      height: 54px;
      background: rgba(199,0,0,0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin-bottom: 20px;
    }
    .service-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 30px;
      letter-spacing: 0.03em;
      color: var(--black);
      margin-bottom: 12px;
      line-height: 1;
    }
    .service-card p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 18px;
      line-height: 1.65;
    }
    .service-card ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 18px;
    }
    .service-card li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 14.5px;
      color: var(--text);
      font-weight: 600;
      line-height: 1.4;
    }
    .service-card li::before {
      content: '→';
      color: var(--red);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ── WHY US ── */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .why-card {
      padding: 36px 32px;
      border-radius: 12px;
      background: var(--white);
      border: 1px solid var(--gray-mid);
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: box-shadow 0.25s;
    }
    .why-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
    .why-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      line-height: 0.9;
      color: rgba(199,0,0,0.1);
      margin-bottom: 10px;
      letter-spacing: -2px;
    }
    .why-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }
    .why-card p {
      font-size: 15.5px;
      color: #555;
      line-height: 1.7;
    }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: var(--black);
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(199,0,0,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 90% 50%, rgba(231,172,68,0.12) 0%, transparent 70%);
    }
    .cta-banner .container { position: relative; text-align: center; }
    .cta-banner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 62px;
      letter-spacing: 0.03em;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1;
    }
    .cta-banner h2 em {
      font-style: normal;
      color: var(--gold);
    }
    .cta-banner p {
      font-size: 18px;
      color: rgba(255,255,255,0.75);
      max-width: 680px;
      margin: 0 auto 32px;
      line-height: 1.65;
    }

    /* ── COVERAGE ── */
    .coverage-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .coverage-card {
      background: var(--white);
      border: 1px solid var(--gray-mid);
      border-radius: 12px;
      padding: 36px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }
    .coverage-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 0.03em;
      color: var(--black);
      margin-bottom: 14px;
      line-height: 1;
    }
    .coverage-card p {
      font-size: 15.5px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .coverage-card ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .coverage-card li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
    }
    .coverage-card li::before {
      content: '✓';
      color: var(--red);
      font-weight: 700;
    }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 36px;
      align-items: start;
    }
    .contact-info-card {
      background: var(--black);
      color: var(--white);
      border-radius: 12px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    .contact-info-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--gold));
    }
    .contact-info-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 28px;
      line-height: 1;
    }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .contact-detail:last-of-type { border-bottom: none; }
    .contact-detail-icon {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }
    .contact-detail-text strong {
      display: block;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2px;
    }
    .contact-detail-text span {
      font-size: 16px;
      color: rgba(255,255,255,0.85);
    }
    .contact-detail-text a { color: rgba(255,255,255,0.85); }
    .contact-detail-text a:hover { color: var(--gold); }
    .contact-info-card .cta-btn {
      width: 100%;
      text-align: center;
      margin-top: 28px;
      padding: 16px;
      font-size: 15px;
    }

    .contact-form-card {
      background: var(--white);
      border: 1px solid var(--gray-mid);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .contact-form-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 34px;
      letter-spacing: 0.04em;
      color: var(--black);
      margin-bottom: 8px;
    }
    .contact-form-card .form-sub {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 26px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }
    .form-group label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid #ddd;
      border-radius: 6px;
      font-size: 15px;
      font-family: inherit;
      color: var(--text);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(199,0,0,0.08);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      border: none;
      cursor: pointer;
      font-family: inherit;
      width: 100%;
      padding: 16px;
      font-size: 15px;
      margin-top: 4px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.6);
      padding: 0;
    }
    .footer-inner {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 36px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      color: var(--white);
      letter-spacing: 0.06em;
    }
    .footer-logo span { color: var(--red); }
    .footer-middle {
      text-align: center;
      font-size: 13px;
    }
    .footer-middle p { margin-bottom: 4px; }
    .footer-phone a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--gold);
    }

    /* ── STICKY CALL ── */
    .sticky-call {
      position: fixed;
      right: 24px;
      bottom: 24px;
      background: var(--red);
      color: var(--white);
      padding: 14px 22px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 8px 28px rgba(199,0,0,0.45);
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .sticky-call:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(199,0,0,0.55);
    }
    .sticky-call .phone-icon { font-size: 16px; }

    /* ── DIVIDER ── */
    .red-divider {
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero h2 { font-size: 64px; }
      .service-grid, .why-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .about-grid, .service-grid, .why-grid, .coverage-grid, .contact-grid {
        grid-template-columns: 1fr;
      }
      .header-flex { flex-direction: column; align-items: flex-start; }
      .hero h2 { font-size: 52px; }
      .hero p { font-size: 17px; }
      .section-title { font-size: 40px; }
      .cta-banner h2 { font-size: 46px; }
      .hero-trust { gap: 20px; }
    }
    @media (max-width: 500px) {
      .hero { padding: 90px 0 70px; }
      .hero h2 { font-size: 42px; }
      .section-title { font-size: 34px; }
      .cta-banner h2 { font-size: 36px; }
      .form-row { grid-template-columns: 1fr; }
      .sticky-call {
        left: 16px; right: 16px;
        bottom: 16px;
        border-radius: 8px;
        justify-content: center;
      }
      nav ul { gap: 6px; }
      nav a { font-size: 12.5px; padding: 6px 8px; }
    }