    :root {
      --brown-dark:   #2e1a0e;
      --brown-deep:   #1a0f06;
      --brown-mid:    #4a2810;
      --cream:        #f5e6d0;
      --cream-light:  #fdf6ee;
      --orange:       #c8863c;
      --orange-hover: #e09840;
      --red-cta:      #c0392b;
      --red-hover:    #e74c3c;
      --text-dark:    #1a0f06;
      --text-mid:     #4a3728;
      --white:        #ffffff;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Open Sans', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── HEADER ── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--brown-dark);
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 20px;
      display: grid;
      grid-template-columns: auto auto 1fr auto;
      align-items: center;
      gap: 16px;
    }

    .brand { display: inline-flex; align-items: center; text-decoration: none; }
    .logo  { height: 52px; width: auto; display: block; }

    .header-calltext { display: flex; align-items: center; }
    .calltext-link {
      text-decoration: none;
      color: var(--cream);
      line-height: 1.1;
      font-family: 'Montserrat', sans-serif;
    }
    .calltext-top  { display: block; font-size: 12px; font-weight: 600; opacity: .85; }
    .calltext-num  { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }

    .site-nav { justify-self: center; }
    .nav {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-link {
      color: var(--cream);
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 15px;
      padding: 8px 14px;
      border-radius: 999px;
      transition: background .2s;
    }
    .nav-link:hover { background: rgba(255,255,255,.15); }

    .nav-toggle {
      display: none;
      background: transparent;
      border: 0;
      cursor: pointer;
      padding: 6px;
      justify-self: end;
    }
    .nav-toggle .bar {
      display: block;
      width: 26px; height: 3px;
      margin: 5px 0;
      background: var(--cream);
      border-radius: 2px;
    }

    @media (max-width: 900px) {
      .header-inner { grid-template-columns: auto 1fr auto; }
      .header-calltext { justify-content: center; }
      .calltext-num { font-size: 18px; }
      .nav-toggle { display: block; }
      .site-nav {
        grid-column: 1 / -1;
        display: none;
        padding-bottom: 10px;
      }
      .site-nav.is-open { display: block; }
      .nav { flex-direction: column; align-items: stretch; gap: 4px; }
      .nav-link { border-radius: 12px; }
    }

    /* ── HERO ── */
    .location-hero {
      background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown-dark) 60%, #3d2010 100%);
      padding: 60px 20px 80px;
      position: relative;
      overflow: hidden;
    }

    .location-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(200,134,60,.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .hero-image-col {}
    .hero-main-img {
      width: 100%;
      border-radius: 20px;
      border: 4px solid rgba(245,230,208,.3);
      box-shadow: 0 20px 60px rgba(0,0,0,.5);
      display: block;
      object-fit: cover;
      aspect-ratio: 4/3;
    }

    .hero-content-col {}

    .hero-content-col h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.6em;
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 12px;
      text-shadow: 2px 2px 8px rgba(0,0,0,.5);
    }

    .hero-subhead {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2em;
      font-weight: 600;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .hero-body {
      font-size: 1.05em;
      line-height: 1.75;
      color: var(--cream);
      margin-bottom: 28px;
    }

    .hero-phone-line {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1em;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 28px;
    }
    .hero-phone-line a {
      color: var(--orange);
      text-decoration: none;
    }
    .hero-phone-line a:hover { text-decoration: underline; }

    /* Q&A Box */
    .qa-box {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(245,230,208,.15);
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 32px;
    }

    .qa-box-title {
      font-family: 'Montserrat', sans-serif;
      font-size: .8em;
      font-weight: 700;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 16px;
    }

    .qa-item { margin-bottom: 14px; }
    .qa-item:last-child { margin-bottom: 0; }

    .qa-question {
      font-family: 'Montserrat', sans-serif;
      font-size: .95em;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .qa-answer {
      font-size: .92em;
      line-height: 1.6;
      color: rgba(245,230,208,.8);
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: .95em;
      padding: 13px 26px;
      border-radius: 999px;
      text-decoration: none;
      transition: all .2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--red-cta);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(192,57,43,.4);
    }
    .btn-primary:hover {
      background: var(--red-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(192,57,43,.5);
    }

    .btn-secondary {
      background: transparent;
      color: var(--cream);
      border: 2px solid rgba(245,230,208,.4);
    }
    .btn-secondary:hover {
      background: rgba(245,230,208,.1);
      border-color: var(--cream);
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .hero-container { grid-template-columns: 1fr; gap: 30px; }
      .hero-content-col h1 { font-size: 2em; }
    }

    @media (max-width: 600px) {
      .location-hero { padding: 40px 16px 60px; }
      .hero-content-col h1 { font-size: 1.7em; }
      .hero-btns { flex-direction: column; }
      .btn { justify-content: center; }
    }



    /* ── SERVICES ── */
    .services-section {
      background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown-dark) 100%);
      padding: 90px 20px;
    }

    .section-container { max-width: 1100px; margin: 0 auto; }

    .section-heading {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.2em;
      font-weight: 800;
      color: var(--white);
      text-align: center;
      margin-bottom: 70px;
      position: relative;
    }

    .section-heading::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: var(--orange);
      margin: 16px auto 0;
      border-radius: 2px;
    }

    .services-grid {
      display: flex;
      flex-direction: column;
      gap: 70px;
    }

    .service-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .service-card.reverse { direction: rtl; }
    .service-card.reverse .service-text { direction: ltr; }

    .service-img-wrap {
      border-radius: 18px;
      overflow: hidden;
      border: 3px solid rgba(255,255,255,.12);
      box-shadow: 0 12px 40px rgba(0,0,0,.4);
      position: relative;
    }

    .service-img-wrap img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }

    .service-card:hover .service-img-wrap img { transform: scale(1.04); }

    .service-img-wrap::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 80px;
      background: linear-gradient(transparent, rgba(0,0,0,.5));
      pointer-events: none;
    }

    /* Hidden SEO H2 */
    .seo-h2 {
      position: absolute;
      width: 1px; height: 1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
    }

    .service-text h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.8em;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      padding-bottom: 14px;
      position: relative;
    }

    .service-text h3::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 40px; height: 3px;
      background: var(--orange);
      border-radius: 2px;
    }

    .service-text p {
      font-size: 1.05em;
      line-height: 1.8;
      color: rgba(245,230,208,.75);
      margin-bottom: 24px;
    }


    .service-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red-cta);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: .95em;
      padding: 13px 26px;
      border-radius: 999px;
      text-decoration: none;
      transition: all .2s ease;
      box-shadow: 0 4px 16px rgba(192,57,43,.35);
    }

    .service-cta:hover {
      background: var(--red-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(192,57,43,.5);
    }

    @media (max-width: 900px) {
      .service-card, .service-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 28px;
      }
      .service-text h3::after { left: 0; }
    }

    @media (max-width: 600px) {
      .services-section { padding: 50px 16px; }
      .section-heading { font-size: 1.6em; margin-bottom: 40px; }
      .service-text h3 { font-size: 1.4em; }
    }

    /* ── WHY US ── */
    .why-us-section {
      background: var(--cream-light);
      padding: 90px 20px;
    }

    .why-us-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .why-us-img-wrap {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(46,26,14,.2);
      border: 4px solid var(--orange);
      position: relative;
    }

    .why-us-img-wrap img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
    }

    .why-us-badge {
      position: absolute;
      bottom: 20px; left: 20px;
      background: var(--brown-dark);
      color: var(--cream);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: .85em;
      padding: 10px 18px;
      border-radius: 999px;
      border: 2px solid var(--orange);
    }

    .why-us-content {}

    .why-us-content h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2em;
      font-weight: 800;
      color: var(--brown-dark);
      margin-bottom: 28px;
      line-height: 1.2;
      position: relative;
      padding-bottom: 18px;
    }

    .why-us-content h2::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 50px; height: 4px;
      background: var(--orange);
      border-radius: 2px;
    }

    .why-us-body p {
      font-size: 1.05em;
      line-height: 1.8;
      color: var(--text-mid);
      margin-bottom: 18px;
    }

    .why-us-sig {
      font-family: 'Montserrat', sans-serif;
      font-style: italic;
      font-weight: 600;
      color: var(--brown-dark);
      font-size: 1.1em;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 2px solid rgba(46,26,14,.15);
    }

    @media (max-width: 900px) {
      .why-us-inner { grid-template-columns: 1fr; gap: 36px; }
      .why-us-content h2 { font-size: 1.6em; }
    }

    @media (max-width: 600px) {
      .why-us-section { padding: 50px 16px; }
    }

    /* ── FAQ ── */
    .faq-section {
      background: var(--brown-dark);
      padding: 90px 20px;
    }

    .faq-section .section-heading { color: var(--cream); }
    .faq-section .section-heading::after { background: var(--orange); }

    .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-item {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(245,230,208,.12);
      border-radius: 14px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: transparent;
      border: 0;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      text-align: left;
      font-family: 'Montserrat', sans-serif;
      font-size: 1em;
      font-weight: 700;
      color: var(--cream);
      transition: background .2s;
    }

    .faq-question:hover { background: rgba(255,255,255,.05); }

    .faq-question.is-open { color: var(--orange); }

    .faq-chev {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: rgba(200,134,60,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: var(--orange);
      transition: transform .3s ease;
    }

    .faq-question.is-open .faq-chev { transform: rotate(180deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s ease;
    }

    .faq-answer.is-open { max-height: 1000px; }

    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: .97em;
      line-height: 1.75;
      color: rgba(245,230,208,.8);
    }

    .faq-answer-inner a {
      color: var(--orange);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    @media (max-width: 600px) {
      .faq-section { padding: 50px 16px; }
      .faq-question { font-size: .92em; padding: 16px 18px; }
      .faq-answer-inner { padding: 0 18px 16px; }
    }

    /* ── REVIEWS ── */
    .reviews-section {
      background: linear-gradient(135deg, var(--brown-mid) 0%, var(--brown-dark) 100%);
      padding: 90px 20px;
    }

    .reviews-section .section-heading { color: var(--cream); }
    .reviews-section .section-heading::after { background: var(--orange); }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .review-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(200,134,60,.2);
      border-radius: 18px;
      padding: 32px 28px;
      box-shadow: 0 8px 30px rgba(0,0,0,.3);
      display: flex;
      flex-direction: column;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,.4);
    }

    .review-stars {
      color: #f5a623;
      font-size: 1.15em;
      letter-spacing: 3px;
      margin-bottom: 14px;
      text-shadow: 0 1px 4px rgba(245,166,35,.4);
    }

    .review-quote-mark {
      font-family: 'Montserrat', sans-serif;
      font-size: 3.5em;
      font-weight: 800;
      color: var(--orange);
      opacity: .35;
      line-height: .7;
      margin-bottom: 10px;
    }

    .review-text {
      font-size: 1em;
      line-height: 1.75;
      color: rgba(245,230,208,.85);
      font-style: italic;
      flex: 1;
      margin-bottom: 20px;
    }

    .review-author {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: .88em;
      color: var(--orange);
      padding-top: 16px;
      border-top: 1px solid rgba(200,134,60,.25);
    }

    @media (max-width: 900px) {
      .reviews-grid { grid-template-columns: 1fr; max-width: 520px; }
    }

    @media (max-width: 600px) {
      .reviews-section { padding: 50px 16px; }
      .review-card { padding: 24px 20px; }
    }

    /* ── SERVICE AREA ── */
    .service-area-section {
      background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown-dark) 100%);
      padding: 80px 20px;
      text-align: center;
    }

    .service-area-section h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2em;
      font-weight: 800;
      color: var(--cream);
      margin-bottom: 18px;
      position: relative;
      display: inline-block;
      padding-bottom: 18px;
    }

    .service-area-section h2::after {
      content: '';
      display: block;
      width: 50px; height: 4px;
      background: var(--orange);
      margin: 14px auto 0;
      border-radius: 2px;
    }

    .service-area-body {
      font-size: 1.05em;
      color: rgba(245,230,208,.8);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .city-list {
      font-family: 'Montserrat', sans-serif;
      font-size: .95em;
      font-weight: 600;
      color: var(--orange);
      line-height: 2.2;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .area-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red-cta);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1em;
      padding: 15px 36px;
      border-radius: 999px;
      text-decoration: none;
      transition: all .2s ease;
      box-shadow: 0 4px 20px rgba(192,57,43,.4);
    }

    .area-cta:hover {
      background: var(--red-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(192,57,43,.5);
    }

    @media (max-width: 600px) {
      .service-area-section { padding: 50px 16px; }
      .service-area-section h2 { font-size: 1.5em; }
    }

    /* ── FOOTER ── */
    .site-footer {
      background: var(--brown-deep);
      padding: 50px 20px 30px;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(245,230,208,.1);
    }

    .footer-col h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: .85em;
      font-weight: 700;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 16px;
    }

    .footer-col p, .footer-col a {
      font-size: .9em;
      color: rgba(245,230,208,.7);
      line-height: 1.9;
      text-decoration: none;
      display: block;
    }

    .footer-col a:hover { color: var(--cream); }

    .footer-bottom {
      max-width: 1100px;
      margin: 24px auto 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: .82em;
      color: rgba(245,230,208,.4);
    }

    .footer-wc-link {
      font-size: .82em;
      color: rgba(245,230,208,.5);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-wc-link:hover { color: var(--orange); }

    @media (max-width: 768px) {
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 500px) {
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

/* ── TRUST + Q&A MERGED SECTION ── */
.trust-qa-section {
  background: var(--brown-deep);
  border-top: 1px solid rgba(200,134,60,.2);
  border-bottom: 3px solid var(--orange);
  padding: 50px 20px;
}

.trust-qa-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 50px;
  align-items: start;
}

.trust-qa-divider {
  background: rgba(200,134,60,.25);
  align-self: stretch;
}

/* Trust col */
.trust-col-label,
.qa-col-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .75em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 20px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .92em;
  font-weight: 600;
  color: var(--cream);
}

.trust-icon {
  width: 24px; height: 24px;
  background: rgba(200,134,60,.2);
  border: 1px solid rgba(200,134,60,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Q&A col */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qa-item {}

.qa-question {
  font-family: 'Montserrat', sans-serif;
  font-size: .95em;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 5px;
}

.qa-answer {
  font-size: .9em;
  line-height: 1.65;
  color: rgba(245,230,208,.7);
}

@media (max-width: 900px) {
  .trust-qa-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trust-qa-divider {
    height: 1px;
    width: 100%;
    align-self: auto;
  }
}

@media (max-width: 600px) {
  .trust-qa-section { padding: 36px 16px; }
}

/* ── FOOTER LEGAL LINKS ── */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82em;
}

.footer-legal-links a {
  color: rgba(245,230,208,.5);
  text-decoration: none;
  transition: color .2s;
}

.footer-legal-links a:hover { color: var(--orange); }

.footer-legal-links span {
  color: rgba(245,230,208,.3);
}

#spring-repair,
#opener-repair,
#door-installation {
  scroll-margin-top: 120px;
}
