@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --mile-blue:    #1a3a5c;
  --mile-blue-mid:#254d7a;
  --sky:          #3d7ab5;
  --sky-light:    #6fa3d4;
  --sky-pale:     #e8f2fa;
  --green-denver: #2d7a3a;
  --green-mid:    #3a9648;
  --green-light:  #58b868;
  --green-pale:   #e8f5eb;
  --orange:       #e8640a;
  --orange-light: #f58c3a;
  --orange-pale:  #fff3eb;
  --white:        #ffffff;
  --gray-50:      #f6f7f6;
  --gray-100:     #eef0ee;
  --gray-200:     #dde2dd;
  --gray-400:     #8a968a;
  --gray-600:     #4a574a;
  --dark:         #0e1a0e;

  --font-display: 'Barlow Condensed', Impact, sans-serif;
  --font-body:    'Barlow', sans-serif;
  --shadow-sm:    0 2px 8px rgba(14,26,14,0.07);
  --shadow-md:    0 8px 28px rgba(14,26,14,0.11);
  --shadow-lg:    0 20px 56px rgba(14,26,14,0.17);
  --radius:       6px;
  --radius-lg:    14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: inherit; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--mile-blue);
  padding: 9px 48px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.75);
}
.topbar a { color: rgba(255,255,255,0.85); font-weight: 500; }
.topbar a:hover { color: var(--white); }
.topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-phone { color: var(--orange-light) !important; font-weight: 600 !important; font-size: 14px !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--green-denver);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: var(--shadow-md);
}
.nav-logo { font-family: var(--font-display); font-size: 26px; color: var(--dark); font-weight: 800; letter-spacing: 0.5px; line-height: 1; }
.nav-logo span { color: var(--green-denver); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: var(--gray-600); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius); transition: all 0.2s; }
.nav-links a:hover { color: var(--dark); background: var(--gray-100); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; font-weight: 700 !important; border-radius: var(--radius) !important; padding: 10px 22px !important; }
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,100,10,0.35) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 23px; height: 2px; background: var(--dark); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  background: var(--mile-blue);
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 60px 48px;
  position: relative; overflow: hidden;
}

/* Denver skyline via CSS */
.skyline {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 220px; z-index: 0; opacity: 0.08;
}
.skyline::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 100%;
  background:
    /* Buildings */
    linear-gradient(var(--white),var(--white)) 5% 0/6% 55% no-repeat,
    linear-gradient(var(--white),var(--white)) 12% 0/4% 70% no-repeat,
    linear-gradient(var(--white),var(--white)) 17% 0/8% 45% no-repeat,
    linear-gradient(var(--white),var(--white)) 26% 0/5% 80% no-repeat,
    linear-gradient(var(--white),var(--white)) 32% 0/7% 60% no-repeat,
    linear-gradient(var(--white),var(--white)) 40% 0/4% 90% no-repeat,
    linear-gradient(var(--white),var(--white)) 45% 0/9% 65% no-repeat,
    linear-gradient(var(--white),var(--white)) 55% 0/5% 75% no-repeat,
    linear-gradient(var(--white),var(--white)) 61% 0/8% 50% no-repeat,
    linear-gradient(var(--white),var(--white)) 70% 0/6% 85% no-repeat,
    linear-gradient(var(--white),var(--white)) 77% 0/4% 55% no-repeat,
    linear-gradient(var(--white),var(--white)) 82% 0/7% 70% no-repeat,
    linear-gradient(var(--white),var(--white)) 90% 0/5% 48% no-repeat;
}

.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

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

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  color: var(--white); line-height: 0.95;
  margin-bottom: 22px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
}
.hero h1 .line2 { color: var(--green-light); display: block; }
.hero h1 .line3 { color: var(--orange-light); display: block; font-size: 0.65em; letter-spacing: 3px; }

.hero-desc { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.75; margin-bottom: 36px; max-width: 500px; font-weight: 300; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-orange {
  background: var(--orange); color: var(--white);
  padding: 14px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; font-family: var(--font-body);
  border: none; cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-orange:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232,100,10,0.4); }

.btn-white-outline {
  background: transparent; color: var(--white);
  padding: 14px 30px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; font-family: var(--font-body);
  border: 2px solid rgba(255,255,255,0.4); cursor: pointer; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-chip { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }
.trust-chip .check { width: 18px; height: 18px; background: var(--green-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: white; flex-shrink: 0; }

/* Hero card */
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
}
.hc-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px; }
.hc-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 20px; letter-spacing: 0.5px; }
.hc-form { display: flex; flex-direction: column; gap: 12px; }
.hc-form input, .hc-form select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--dark); outline: none; transition: all 0.2s;
}
.hc-form input:focus, .hc-form select:focus { border-color: var(--green-denver); box-shadow: 0 0 0 3px rgba(45,122,58,0.1); }
.hc-form button {
  background: var(--orange); color: var(--white);
  padding: 14px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px; font-family: var(--font-body);
  border: none; cursor: pointer; transition: all 0.25s;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.hc-form button:hover { background: var(--orange-light); }
.hc-note { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 4px; letter-spacing: 0.3px; }

/* ===== SHARED ===== */
.section { padding: 80px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.label-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green-denver);
  padding: 5px 14px; border-radius: 50px; font-size: 11px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); color: var(--dark); line-height: 1.05; margin-bottom: 14px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; }
.section-sub { color: var(--gray-600); font-size: 16px; max-width: 560px; line-height: 1.75; font-weight: 300; }

/* ===== SERVICES ===== */
.services-section { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }

.svc-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200); padding: 28px 24px;
  transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden;
}
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gray-200); transition: background 0.3s; }
.svc-card:hover::before { background: var(--green-denver); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-icon { font-size: 32px; margin-bottom: 14px; }
.svc-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.svc-card p { color: var(--gray-600); font-size: 13px; line-height: 1.65; margin-bottom: 16px; font-weight: 300; }
.svc-more { color: var(--green-denver); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.svc-card:hover .svc-more { gap: 9px; }

/* ===== DENVER DIFFERENCE ===== */
.diff-section { background: var(--white); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.diff-visual {
  background: var(--mile-blue);
  border-radius: var(--radius-lg); padding: 44px;
  position: relative; overflow: hidden;
}
.diff-visual::after { content: '🏔️'; position: absolute; font-size: 180px; opacity: 0.05; right: -20px; bottom: -20px; }
.diff-visual h3 { font-family: var(--font-display); color: var(--white); font-size: 30px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.diff-visual > p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 28px; font-weight: 300; }
.metro-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.metro-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); padding: 9px 14px; border-radius: var(--radius); font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.metro-chip:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.metro-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange-light); flex-shrink: 0; }

.diff-features { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.diff-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200); transition: all 0.25s;
}
.diff-feat:hover { border-color: var(--green-light); background: var(--green-pale); }
.df-icon { width: 44px; height: 44px; min-width: 44px; background: var(--mile-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.25s; }
.diff-feat:hover .df-icon { background: var(--green-denver); }
.diff-feat h4 { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 3px; }
.diff-feat p { font-size: 13px; color: var(--gray-600); line-height: 1.55; font-weight: 300; }

/* ===== ELEVATION STRIP ===== */
.elevation-section {
  background: linear-gradient(135deg, var(--green-denver) 0%, var(--mile-blue) 100%);
  padding: 64px 48px;
}
.elevation-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.elevation-text h2 { font-family: var(--font-display); color: var(--white); font-size: clamp(28px,4vw,42px); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.elevation-text p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.elev-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.elev-stat { text-align: center; }
.elev-stat strong { display: block; font-family: var(--font-display); font-size: 40px; color: var(--orange-light); font-weight: 800; line-height: 1; }
.elev-stat span { color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 300; margin-top: 4px; display: block; }

/* ===== SEASONAL ===== */
.seasonal-section { background: var(--gray-50); }
.seasonal-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.season-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--gray-200); transition: all 0.3s; }
.season-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.s-header { padding: 24px 22px 18px; }
.s-header.spring { background: linear-gradient(135deg,#d4f5d8,#b8e8be); }
.s-header.summer { background: linear-gradient(135deg,#d4ecd8,#b0d8b8); }
.s-header.fall   { background: linear-gradient(135deg,#fce8d4,#f8d4a8); }
.s-header.winter { background: linear-gradient(135deg,#d4e4f8,#b8d0f0); }
.s-emoji { font-size: 30px; margin-bottom: 8px; display: block; }
.season-card h4 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--dark); letter-spacing: 0.5px; text-transform: uppercase; }
.s-sub { font-size: 11px; color: var(--gray-400); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }
.s-body { padding: 18px 22px 22px; }
.s-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.s-list li { font-size: 13px; color: var(--gray-600); display: flex; gap: 9px; align-items: flex-start; font-weight: 300; }
.s-list li::before { content: '›'; color: var(--green-mid); font-weight: 700; font-size: 16px; line-height: 1.2; flex-shrink: 0; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--dark); padding: 80px 48px; }
.reviews-section .label-tag { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.reviews-section .section-title { color: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.r-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s; }
.r-card:hover { background: rgba(255,255,255,0.09); }
.r-stars { color: var(--orange-light); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.r-card blockquote { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.75; font-style: italic; margin-bottom: 20px; font-weight: 300; }
.r-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); }
.r-av { width: 40px; height: 40px; border-radius: 50%; background: var(--mile-blue-mid); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; color: var(--sky-light); font-weight: 700; }
.r-author strong { color: var(--white); font-size: 14px; display: block; font-weight: 600; }
.r-author span { color: rgba(255,255,255,0.4); font-size: 12px; }

/* ===== CTA ===== */
.cta-section { background: var(--orange); padding: 80px 48px; text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(36px,5vw,64px); color: var(--white); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; line-height: 1; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 36px; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--orange); padding: 15px 36px; border-radius: var(--radius); font-weight: 700; font-size: 14px; font-family: var(--font-body); border: none; cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-white:hover { background: var(--orange-pale); transform: translateY(-2px); }
.btn-dark-outline { background: transparent; color: var(--white); padding: 15px 36px; border-radius: var(--radius); font-weight: 600; font-size: 14px; font-family: var(--font-body); border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-dark-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

/* ===== FOOTER ===== */
footer { background: var(--mile-blue); color: rgba(255,255,255,0.6); padding: 64px 48px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.f-logo { font-family: var(--font-display); font-size: 22px; color: var(--white); font-weight: 800; letter-spacing: 0.5px; margin-bottom: 14px; text-transform: uppercase; }
.f-logo span { color: var(--orange-light); }
.footer-brand p { font-size: 13px; line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.f-social { display: flex; gap: 10px; }
.f-soc { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; transition: all 0.2s; }
.f-soc:hover { background: var(--orange); }
.footer-col h4 { color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.2s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--orange-light); }
.fci { display: flex; gap: 10px; margin-bottom: 11px; font-size: 13px; font-weight: 300; }
.fci a:hover { color: var(--orange-light); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }

/* ===== CONTACT PAGE ===== */
.page-hero { background: var(--mile-blue); padding: 100px 48px 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 180px; opacity: 0.06; background: linear-gradient(var(--white),var(--white)) 10% 0/5% 60% no-repeat, linear-gradient(var(--white),var(--white)) 20% 0/8% 45% no-repeat, linear-gradient(var(--white),var(--white)) 35% 0/4% 80% no-repeat, linear-gradient(var(--white),var(--white)) 44% 0/9% 70% no-repeat, linear-gradient(var(--white),var(--white)) 55% 0/5% 55% no-repeat, linear-gradient(var(--white),var(--white)) 65% 0/7% 90% no-repeat, linear-gradient(var(--white),var(--white)) 75% 0/6% 65% no-repeat, linear-gradient(var(--white),var(--white)) 85% 0/5% 75% no-repeat; }
.page-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.45); font-size: 13px; margin-bottom: 20px; }
.breadcrumb a { color: var(--orange-light); font-weight: 500; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(38px,5.5vw,68px); color: var(--white); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; line-height: 1; margin-bottom: 14px; }
.page-hero h1 span { color: var(--orange-light); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 540px; font-weight: 300; line-height: 1.7; }

.contact-wrap { max-width: 1200px; margin: 0 auto; padding: 72px 48px; display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 32px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--gray-600); margin-bottom: 28px; font-size: 15px; font-weight: 300; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--dark); margin-bottom: 6px; letter-spacing: 1px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--dark); background: var(--white); transition: all 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-denver); box-shadow: 0 0 0 3px rgba(45,122,58,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group textarea { height: 120px; resize: vertical; }

.contact-sidebar { display: flex; flex-direction: column; gap: 18px; }
.c-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 24px; border: 1.5px solid var(--gray-200); }
.c-card.orange { background: var(--orange); border: none; }
.c-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; color: var(--dark); }
.c-card.orange h3 { color: var(--white); }
.c-card.orange p { color: rgba(255,255,255,0.82); font-size: 13px; font-weight: 300; margin-bottom: 14px; }
.phone-big { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.18); padding: 13px 17px; border-radius: var(--radius); color: white; font-weight: 700; font-size: 20px; transition: all 0.2s; margin-bottom: 8px; font-family: var(--font-display); letter-spacing: 0.5px; }
.phone-big:hover { background: rgba(255,255,255,0.28); }
.c-info-item { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; }
.c-info-icon { font-size: 17px; margin-top: 1px; }
.c-info-item strong { display: block; font-size: 13px; color: var(--dark); margin-bottom: 2px; font-weight: 600; }
.c-info-item span, .c-info-item a { font-size: 13px; color: var(--gray-600); font-weight: 300; line-height: 1.5; }
.c-info-item a:hover { color: var(--green-denver); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .topbar { display: none; }
  .navbar { padding: 0 24px; }
  .hero { padding: 50px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { display: none; }
  .section { padding: 60px 24px; }
  .elevation-section, .reviews-section, .cta-section { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 36px; }
  .elevation-inner { grid-template-columns: 1fr; gap: 36px; }
  .seasonal-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; padding: 52px 24px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .seasonal-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 48px 20px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-wrap { padding: 36px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 20px 64px; }
  .elev-stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
}
