/* ============================================
   STAR CITY ROOFING — MAIN STYLESHEET
   Font: Barlow Condensed (headers) + Barlow (body)
   Theme: Premium Desert Southwest — bronze/tan + charcoal + off-white
   Brand accent: #D1B394 (warm bronze — matches logo)
   ============================================ */

:root {
  --accent: #D1B394;
  --accent-dark: #B8996F;
  --red: #D1B394;       /* alias — var(--red) used throughout HTML */
  --red-dark: #B8996F;
  --charcoal: #1A1A1A;
  --charcoal-mid: #2D2D2D;
  --gray: #5A5A5A;
  --light-gray: #F0EEE9;
  --off-white: #FAFAF7;
  --white: #FFFFFF;
  --gold: #E8A020;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  font-size: 16px;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.12); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--charcoal); }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

.logo { height: 48px; width: auto; }
.logo-link { flex-shrink: 0; }

.main-nav { flex: 1; }
.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover { color: var(--accent); background: rgba(255,255,255,0.06); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--charcoal-mid);
  border-radius: var(--radius);
  border-top: 2px solid var(--accent);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 10px 16px;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover { background: var(--accent); color: var(--charcoal); font-weight: 600; }

.btn-call {
  background: var(--accent);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-call:hover { background: var(--accent-dark); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: 8px;
}

.btn-call-top {
  display: none;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--accent);
  margin-left: auto;
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: 12px 0; }
.mobile-nav ul li a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav ul li a:hover { color: var(--accent); }
.btn-call-mobile {
  display: block;
  background: var(--accent);
  color: var(--charcoal);
  font-weight: 800;
  text-align: center;
  margin: 8px 16px;
  padding: 12px;
  border-radius: var(--radius);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,12,12,0.88) 0%, rgba(12,12,12,0.75) 60%, rgba(12,12,12,0.88) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 20px;
  max-width: 700px;
}
.trust-badge {
  display: inline-block;
  background: rgba(209,179,148,0.95);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--accent); display: block; }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-badges span {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--accent);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--charcoal);
}
.trust-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ── CREDENTIALS BAR ── */
.creds-bar {
  background: var(--charcoal-mid);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.creds-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cred-item .cred-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTIONS COMMON ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 10px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services-section {
  padding: 80px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 3px solid transparent;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-bottom-color: var(--accent); }
.service-img {
  height: 210px;
  background-size: cover;
  background-position: center;
}
.service-card-body { padding: 22px; }
.service-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.service-card-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 14px; line-height: 1.6; }
.learn-more {
  color: var(--accent-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── WHY US ── */
.why-section {
  padding: 80px 0;
  background: var(--charcoal);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.05;
}
.why-text > p {
  color: rgba(255,255,255,0.68);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.7;
}
.why-list { margin-bottom: 36px; }
.why-list li {
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  line-height: 1.55;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.why-item strong {
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.3;
}
.why-item span {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.5;
}
.check {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.why-img img {
  border-radius: var(--radius);
  width: 100%;
  height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ── GALLERY ── */
.gallery-section {
  padding: 80px 0;
  background: var(--light-gray);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.gallery-pair {
  position: relative;
  grid-column: span 2;
}
.gallery-pair img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
}
.gallery-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--charcoal);
  color: white;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}
.gallery-label.after { background: var(--accent); color: var(--charcoal); }
.gallery-more {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.gallery-more img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.2s;
}
.gallery-more img:hover { transform: scale(1.02); }

/* ── REVIEWS ── */
.reviews-section {
  padding: 80px 0;
  background: var(--off-white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}
.stars { font-size: 1rem; margin-bottom: 12px; }
.review-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 14px;
  font-style: italic;
}
.review-card strong {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.review-cta { text-align: center; }

/* ── AREAS ── */
.areas-section {
  padding: 72px 0;
  background: var(--charcoal);
}
.areas-section .section-title { color: var(--white); }
.areas-section .section-sub { color: rgba(255,255,255,0.58); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-pill {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.86);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14);
  transition: all 0.2s;
}
.area-pill:hover { background: var(--accent); border-color: var(--accent); color: var(--charcoal); }
.content-section .area-pill {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.content-section .area-pill:hover { background: var(--accent); border-color: var(--accent); color: var(--charcoal); }

/* ── PROCESS ── */
.process-section {
  padding: 80px 0;
  background: var(--off-white);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--accent);
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.step p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.step-arrow {
  font-size: 1.6rem;
  color: var(--accent);
  align-self: center;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── QUOTE FORM ── */
.quote-section {
  padding: 80px 0;
  background: var(--light-gray);
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.quote-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.05;
}
.quote-text > p { color: var(--gray); margin-bottom: 24px; line-height: 1.7; }
.quote-perks { margin-bottom: 28px; }
.quote-perks li {
  color: var(--charcoal);
  font-size: 0.97rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-perks li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.quote-phone {
  color: var(--gray);
  font-size: 0.9rem;
}
.quote-phone a {
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.quote-form {
  background: white;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; }

/* ── MAP ── */
.map-section {
  padding: 64px 0;
  background: var(--off-white);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.map-address {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}
.map-address a { color: var(--accent-dark); font-weight: 700; }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  padding: 60px 0 0;
  border-top: 3px solid var(--accent);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  height: 44px;
  margin-bottom: 14px;
}
.footer-col > p {
  color: rgba(255,255,255,0.52);
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.footer-phone {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-address {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-top: 16px;
  line-height: 1.8;
}
.footer-license {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  margin-top: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 18px 20px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.38);
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }

/* ── INNER PAGE HERO ── */
.inner-hero {
  background: var(--charcoal);
  padding: 56px 0 48px;
  border-bottom: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(209,179,148,0.12) 0%, transparent 60%);
}
.inner-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 16px;
}
.breadcrumb a, .breadcrumb span {
  color: rgba(255,255,255,0.48);
  font-size: 0.8rem;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.22); }
.inner-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.inner-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.inner-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CONTENT SECTIONS (inner pages) ── */
.content-section {
  padding: 72px 0;
  background: var(--off-white);
}
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px;
  align-items: start;
}
.content-main h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 14px;
  margin-top: 36px;
  letter-spacing: 0.02em;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
  margin-top: 28px;
  letter-spacing: 0.03em;
}
.content-main ol { padding-left: 20px; margin-bottom: 24px; }
.content-main ol li { color: var(--gray); font-size: 0.97rem; line-height: 1.7; margin-bottom: 8px; }
.content-main p { color: var(--gray); line-height: 1.78; margin-bottom: 16px; font-size: 0.97rem; }
.content-main ul { padding-left: 0; margin-bottom: 24px; }
.content-main ul li {
  color: var(--gray);
  font-size: 0.97rem;
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  line-height: 1.6;
}
.content-main ul li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 900;
  position: absolute;
  left: 0;
}
.content-main a { color: var(--accent-dark); font-weight: 600; }
.content-main a:hover { text-decoration: underline; }

.area-services-list { margin: 20px 0 32px; }
.area-services-list li {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 10px 0 10px 26px;
}
.area-services-list li a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1rem;
}
.area-services-list li a:hover { color: var(--accent-dark); }

.sidebar-cta {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 4px solid var(--accent);
  position: sticky;
  top: 90px;
}
.sidebar-cta h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}
.sidebar-cta p { color: rgba(255,255,255,0.64); font-size: 0.88rem; margin-bottom: 22px; line-height: 1.65; }
.sidebar-phone {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 900;
  display: block;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.sidebar-cta .btn-primary { width: 100%; text-align: center; display: block; }

.sidebar-photo-box {
  margin-top: 24px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.sidebar-photo-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.sidebar-photo-box .sidebar-photo-inner {
  padding: 12px;
}
.sidebar-photo-box .sidebar-photo-inner img {
  height: 150px;
  border-radius: 4px;
}

.sidebar-review {
  margin-top: 24px;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 4px solid var(--accent);
}
.sidebar-review-label {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sidebar-review blockquote {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 10px;
}
.sidebar-review cite {
  color: rgba(255,255,255,0.42);
  font-size: 0.78rem;
  font-style: normal;
}

/* ── FAQ ── */
.faq-section {
  padding: 72px 0;
  background: var(--light-gray);
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  border-left: 3px solid var(--accent);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--off-white); }
.faq-icon { color: var(--accent-dark); font-size: 1.2rem; font-weight: 900; transition: transform 0.2s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--gray);
  font-size: 0.94rem;
  line-height: 1.75;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }

/* ── CONTENT GALLERY (3-col responsive grid for inner page photos) ── */
.content-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 32px;
}
.content-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── RELATED SERVICES (dark band) ── */
.related-section {
  padding: 56px 0;
  background: var(--charcoal);
}
.related-section .section-title { color: var(--white); margin-bottom: 36px; }

/* ── RESPONSIVE — 960px (tablet/nav breakpoint) ── */
@media (max-width: 960px) {
  .main-nav, .btn-call { display: none; }
  .hamburger { display: block; }
  .btn-call-top { display: block; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-img { order: -1; }
  .why-img img { height: 260px; }
  .quote-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .sidebar-cta { position: static; }
}

/* ── RESPONSIVE — 640px (mobile landscape / small tablet) ── */
@media (max-width: 640px) {
  /* Section padding — reduce from desktop 80px */
  .services-section,
  .gallery-section,
  .reviews-section,
  .areas-section,
  .process-section { padding: 52px 0; }
  .why-section { padding: 52px 0; }
  .quote-section { padding: 52px 0; }
  .content-section { padding: 44px 0; }
  .map-section { padding: 36px 0; }
  .related-section { padding: 44px 0; }

  /* Hero */
  .hero { min-height: 520px; }
  .hero-content { padding: 48px 20px; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { text-align: center; }

  /* Inner page hero */
  .inner-hero { padding: 36px 0 28px; }
  .inner-hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .inner-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .inner-hero-ctas .btn-primary,
  .inner-hero-ctas .btn-secondary { text-align: center; }

  /* Trust / Creds bars */
  .trust-bar-inner { justify-content: center; gap: 20px 32px; }
  .trust-num { font-size: 1.9rem; }
  .creds-bar-inner { gap: 16px; }
  .cred-item { font-size: 0.75rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-pair { grid-column: span 1; }
  .gallery-more { grid-template-columns: 1fr 1fr; }
  .content-gallery { grid-template-columns: 1fr 1fr !important; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step { max-width: 100%; width: 100%; }

  /* Quote form */
  .quote-form { padding: 20px; }
  .quote-inner { gap: 28px; }

  /* iOS — prevent input font-size zoom (must be >= 16px) */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .site-footer { padding: 44px 0 0; }
}

/* ── RESPONSIVE — 480px (narrow mobile / 375px phones) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Section padding — tighter on small screens */
  .services-section,
  .gallery-section,
  .reviews-section,
  .areas-section,
  .process-section,
  .why-section,
  .quote-section { padding: 44px 0; }
  .content-section { padding: 36px 0; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-content { padding: 40px 16px; }

  /* Trust bar — tighter */
  .trust-bar { padding: 18px 0; }
  .trust-num { font-size: 1.7rem; }
  .trust-label { font-size: 0.7rem; }
  .trust-bar-inner { gap: 14px 24px; }

  /* Creds bar */
  .creds-bar { padding: 14px 0; }
  .creds-bar-inner { gap: 10px; }
  .cred-item { font-size: 0.7rem; letter-spacing: 0.03em; }

  /* Section titles */
  .section-title { font-size: clamp(1.5rem, 7vw, 1.9rem); }

  /* Content main headings */
  .content-main h2 { font-size: 1.5rem; margin-top: 28px; }
  .content-main h3 { font-size: 1.1rem; }

  /* Quote form */
  .quote-form { padding: 16px; }
  .quote-text h2 { font-size: 1.8rem; }

  /* FAQ */
  .faq-question { font-size: 0.9rem; padding: 14px 16px; }
  .faq-answer { padding: 0 16px 16px; padding-top: 14px; }

  /* Inner hero */
  .inner-hero { padding: 28px 0 22px; }
  .inner-hero h1 { font-size: clamp(1.7rem, 9vw, 2.4rem); }

  /* Sidebar */
  .sidebar-phone { font-size: 1.4rem; }
  .sidebar-cta { padding: 20px; }

  /* Footer */
  .footer-inner { gap: 20px; }
  .site-footer { padding: 36px 0 0; }
  .footer-bottom { padding: 16px; }
  .footer-bottom p { font-size: 0.72rem; }

  /* Gallery — 2 cols on narrow screens */
  .gallery-more { grid-template-columns: 1fr 1fr; }
  .gallery-more img { height: 140px; }
  .gallery-pair img { height: 180px; }

  /* Area pills — slightly smaller */
  .area-pill { font-size: 0.82rem; padding: 8px 14px; }

  /* Review cards */
  .review-card { padding: 18px; }

  /* Service cards */
  .service-img { height: 180px; }

  /* Why section */
  .why-img img { height: 220px; }
  .why-section { padding: 44px 0; }
  .why-list li { font-size: 0.92rem; }

  /* Mobile nav — larger tap targets */
  .mobile-nav ul li a { padding: 14px 20px; font-size: 1.05rem; }
  .btn-call-mobile { padding: 14px; font-size: 1rem; }

  /* Trust badge — allow wrapping on narrow screens */
  .trust-badge {
    white-space: normal;
    text-align: center;
    display: block;
    max-width: 100%;
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  /* Hero badges — stack on narrow */
  .hero-badges { flex-direction: column; gap: 8px; }
  .hero-badges span { font-size: 0.8rem; }

  /* Content gallery */
  .content-gallery { gap: 8px; }
  .content-gallery img { height: 130px; }

  /* Prevent horizontal overflow */
  .cred-item { white-space: normal; text-align: center; }

  /* Wider tap targets for all buttons */
  .btn-primary,
  .btn-secondary,
  .btn-outline { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
}
