/*
Theme Name: Greensboro New Roof
Theme URI: https://greensboronewroof.com
Author: Greensboro New Roof
Author URI: https://greensboronewroof.com
Description: SEO-optimized roofing contractor theme for Greensboro, NC — Piedmont Triad's premier roofing company
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: greensboronewroof
Tags: business, roofing, seo, responsive, navy
*/

/* ============================================================
   RESET & CSS VARIABLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --navy:        #0D1F3C;
  --navy-mid:    #142850;
  --navy-light:  #1B3A6B;
  --navy-subtle: #1E3F74;
  --amber:       #E8A020;
  --amber-dark:  #C4841A;
  --amber-light: #F0B340;
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --slate:       #E8EDF5;
  --gray-text:   #6B7A99;
  --dark-text:   #0D1F3C;
  --mid-text:    #2D3F60;

  /* Typography */
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Utility */
  --shadow-sm:  0 2px 10px rgba(13,31,60,0.08);
  --shadow-md:  0 8px 32px rgba(13,31,60,0.14);
  --shadow-lg:  0 20px 60px rgba(13,31,60,0.22);
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.25s ease;
  --max-width:  1180px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   UTILITY BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(232,160,32,0.35);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,160,32,0.45);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}
.btn-lg { font-size: 19px; padding: 18px 44px; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(30px, 3.8vw, 52px);
  color: var(--navy);
  margin-bottom: 18px;
}
.section-heading .accent { color: var(--amber); }
.section-heading-white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 580px;
}

/* ============================================================
   TOP ALERT BAR
   ============================================================ */
.alert-bar {
  background: var(--amber);
  color: var(--navy);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.alert-bar a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}
.alert-bar a:hover { opacity: 0.8; }

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(13,31,60,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 76px;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
}
.logo-mark svg { width: 44px; height: 44px; }
.logo-wordmark { line-height: 1; }
.logo-line1 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
}
.logo-line1 span { color: var(--amber); }
.logo-line2 {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.primary-nav a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.primary-nav a:hover,
.primary-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  margin-left: 8px;
}
.nav-phone:hover {
  background: var(--amber-dark) !important;
  color: var(--navy) !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  margin-left: auto;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Decorative angular background */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -5%; bottom: 0;
  width: 55%;
  background: var(--navy-light);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(232,160,32,0.08) 0%, transparent 65%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 120px;
}
.hero-left {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--amber-light);
  font-size: 12px;
  font-family: var(--font-head);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 22px;
  line-height: 1.05;
}
.hero h1 .accent { color: var(--amber); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
}
.trust-chip svg {
  width: 16px; height: 16px;
  stroke: var(--amber);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

/* Hero right — Stats cards */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.hero-stat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,160,32,0.4);
}
.hero-stat-card:first-child {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(232,160,32,0.2), rgba(232,160,32,0.08));
  border-color: rgba(232,160,32,0.3);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-card:first-child .stat-num { font-size: 64px; }
.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-head);
  font-weight: 400;
}
.stat-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* Hero scroll ribbon */
.hero-ribbon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(13,31,60,0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.ribbon-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ribbon-scroll 30s linear infinite;
  padding: 14px 0;
}
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ribbon-item .dot {
  width: 5px; height: 5px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ribbon-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--off-white); }
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.services-intro-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-inline {
  background: var(--white);
  border: 1px solid var(--slate);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-inline-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  line-height: 1;
}
.stat-inline-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.stat-inline-text span {
  font-size: 13px;
  color: var(--gray-text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--slate);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.service-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(transparent, rgba(255,255,255,0.04));
}

.service-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-tag {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--navy); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-img-wrap {
  width: 100%;
  height: 500px;
  background: linear-gradient(150deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.why-img-wrap::before {
  content: '';
  position: absolute;
  top: -30%; right: -30%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
}
.experience-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 110px; height: 110px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(232,160,32,0.4);
  border: 4px solid var(--navy);
}
.experience-badge strong {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.experience-badge span {
  font-family: var(--font-head);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.8;
  text-align: center;
  line-height: 1.3;
}

.why-content { display: flex; flex-direction: column; gap: 0; }
.why-content .section-heading-white { margin-bottom: 16px; }
.why-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}

.features-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  width: 46px; height: 46px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--amber); stroke-width: 2; fill: none; }
.feature-text h4 {
  font-size: 16px;
  font-family: var(--font-head);
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 500;
}
.feature-text p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ============================================================
   CLIMATE / CONTENT SECTION (SEO)
   ============================================================ */
.climate { background: var(--off-white); }
.climate-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.climate-content h2 { margin-bottom: 20px; }
.climate-content p {
  font-size: 16px;
  color: var(--mid-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.climate-content p:last-of-type { margin-bottom: 0; }
.climate-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.climate-stat {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.climate-stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.climate-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-head);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--white); }
.process-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.process-header .section-sub { margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--amber) 0%, rgba(232,160,32,0.2) 100%);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px var(--white);
  transition: var(--transition);
}
.process-step:hover .step-circle {
  background: var(--amber);
  color: var(--navy);
}
.process-step h4 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--gray-text); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--navy-mid); }
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.review-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.review-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  min-width: 110px;
}
.review-badge-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.review-badge-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,160,32,0.3);
  transform: translateY(-4px);
}
.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.stars span { color: var(--amber); font-size: 18px; }
.t-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: var(--white); font-size: 15px; font-family: var(--font-head); letter-spacing: 0.03em; }
.reviewer-location { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.reviewer-source { font-size: 11px; color: var(--amber); font-family: var(--font-head); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--amber);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; left: -5%;
  width: 50%; height: 220%;
  background: rgba(13,31,60,0.08);
  transform: rotate(-8deg);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 64px 0;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(13,31,60,0.75);
  max-width: 480px;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.cta-phone svg { width: 24px; height: 24px; stroke: var(--navy); stroke-width: 2; fill: none; }
.cta-note { font-size: 13px; color: rgba(13,31,60,0.6); text-align: right; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { background: var(--off-white); }
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.areas-intro p {
  font-size: 16px;
  color: var(--mid-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--slate);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid-text);
  transition: var(--transition);
  cursor: default;
}
.area-card svg {
  width: 14px; height: 14px;
  stroke: var(--amber);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}
.area-card:hover {
  border-color: var(--amber);
  color: var(--navy);
  background: rgba(232,160,32,0.04);
  transform: translateX(3px);
}
.areas-note {
  grid-column: span 3;
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 4px;
}
.areas-note strong { color: var(--amber); }

/* ============================================================
   CONTACT / ESTIMATE FORM
   ============================================================ */
.contact { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 4px; }
.contact-info .section-heading { margin-bottom: 12px; }
.contact-info > p {
  font-size: 16px;
  color: var(--mid-text);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate);
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--amber); stroke-width: 2; fill: none; }
.contact-detail h4 {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  margin-bottom: 4px;
  font-weight: 400;
}
.contact-detail p, .contact-detail a {
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
}
.contact-detail a:hover { color: var(--amber-dark); }

/* Form card */
.form-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.form-card-title {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 6px;
}
.form-card-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-card-sub::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--amber);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 17px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(232,160,32,0.3);
}
.form-submit:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.45);
}
.form-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-name span { color: var(--amber); }
.footer-brand-tag { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-about {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-seo-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  max-width: 300px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--amber); stroke-width: 2; fill: none; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--amber); }
.footer-contact-item span { color: rgba(255,255,255,0.5); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--amber); }
.footer-legal { display: flex; gap: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { grid-template-columns: repeat(4, 1fr); }
  .hero-stat-card:first-child { grid-column: span 2; }
  .services-intro { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .climate-grid { grid-template-columns: 1fr; gap: 40px; }
  .climate-stats { position: static; grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .areas-layout { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --max-width: 100%; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .alert-bar { display: none; }
  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    padding: 32px 24px;
    overflow-y: auto;
    z-index: 999;
    align-items: flex-start;
    gap: 4px;
  }
  .primary-nav.open a {
    width: 100%;
    font-size: 20px;
    padding: 14px 16px;
  }
  .primary-nav.open .nav-phone {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    font-size: 20px;
  }
  .hamburger { display: flex; }
  .hero::before { width: 100%; clip-path: none; opacity: 0.3; }
  .hero-content { padding: 60px 0 100px; }
  .hero-right { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-card:first-child { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { flex-direction: column; align-items: flex-start; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { align-items: flex-start; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-note { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .climate-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
}
