/* =====================================================
   Sunflower Plumbing — Main Site Stylesheet
   Design system carried from sunflower-offers template
   ===================================================== */

:root {
  --yellow: #FCAF18;
  --yellow-deep: #E89A00;
  --black: #121315;
  --grey: #666666;
  --subtle: #999999;
  --divider: #D7D7D7;
  --bg-cream: #FBF8F2;
  --white: #FFFFFF;
  --shadow: 0 30px 60px -20px rgba(18,19,21,0.18);
  --shadow-soft: 0 10px 30px -10px rgba(18,19,21,0.08);
}

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

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 3.2px;
  color: var(--black);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--yellow);
}
.eyebrow.on-dark { color: var(--yellow); }
.eyebrow.on-dark::before { background: var(--yellow); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.28px;
  background: var(--yellow);
  color: var(--white);
  padding: 0 6px 0 35px;
  height: 57px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
.btn .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}
.btn:hover { background: var(--black); }
.btn:hover .btn-icon { background: rgba(255,255,255,0.15); }
.btn--white {
  background: var(--yellow);
  color: var(--white);
}
.btn--white:hover { background: var(--black); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0 30px;
}
.btn--outline:hover { border-color: var(--yellow); background: var(--yellow); }
.btn--sm {
  height: 46px;
  font-size: 13px;
  padding: 0 6px 0 24px;
}
.btn--sm .btn-icon { width: 36px; height: 36px; }

/* =============== UTILITY BAR =============== */
.utility-bar {
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  font-size: 14px;
}
.utility-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  padding: 14px 40px;
  max-width: 1480px;
  margin: 0 auto;
}
.util-item { display: inline-flex; align-items: center; gap: 12px; color: var(--grey); }
.util-icon {
  width: 32px; height: 32px;
  background: var(--yellow);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.util-social {
  display: flex; gap: 14px;
  border-left: 1px solid var(--divider);
  padding-left: 24px;
  margin-left: 8px;
}
.util-social a {
  color: var(--black);
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.util-social a:hover { color: var(--yellow); }

/* =============== HEADER =============== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--divider);
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 18px 40px;
  max-width: 1480px;
  margin: 0 auto;
  gap: 40px;
}
.logo { flex-shrink: 0; }
.logo img { height: 64px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main-nav a {
  color: var(--black);
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--yellow); }

.book-online {
  background: var(--yellow);
  color: var(--white);
  padding: 18px 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
  white-space: nowrap;
}
.book-online:hover { background: var(--black); color: var(--white); }

.menu-toggle {
  display: none;
  background: none; border: none; font-size: 24px;
  color: var(--black); cursor: pointer;
  margin-left: auto;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black);
  padding: 20px 24px 28px;
  gap: 4px;
}
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a.mobile-cta { color: var(--yellow); }
.mobile-nav a.mobile-cta { font-weight: 700; margin-top: 8px; }
.mobile-nav.open { display: flex; }

/* =============== PAGE HERO =============== */
.page-hero {
  background: var(--black);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.page-hero .lead {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 580px;
  text-transform: none;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--yellow); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* =============== HOMEPAGE HERO =============== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  background: var(--black);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: 80px 24px;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(47px, 6.3vw, 86px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
  font-family: 'Barlow', sans-serif;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-badge i { color: var(--yellow); }

/* =============== TRUST STRIP =============== */
.trust-strip {
  background: var(--yellow);
  padding: 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: stretch;
  max-width: 100%;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  border-right: 1px solid rgba(0,0,0,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 16px; }

/* =============== SECTION HEADERS =============== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1;
}
.section-header h2 em { color: var(--yellow); font-style: normal; }
.section-header p { font-size: 17px; max-width: 540px; margin: 0 auto; }

/* =============== SERVICES GRID =============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-cream);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.service-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.service-link:hover { color: var(--yellow); }

/* =============== SOCIAL PROOF =============== */
.proof-section {
  background: var(--black);
  padding: 100px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.proof-stat .num {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.proof-stat .num small { font-size: 40px; }
.proof-stat .desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  padding: 28px;
  border-left: 3px solid var(--yellow);
}
.review-stars { color: var(--yellow); font-size: 16px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); }

/* =============== ABOUT / HOMEPAGE =============== */
.about-section { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img { width: 100%; height: auto; display: block; }
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--yellow);
  z-index: -1;
}
.about-content .eyebrow { margin-bottom: 12px; }
.about-content h2 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 24px;
}
.about-content h2 em { color: var(--yellow); font-style: normal; }
.about-content p { margin-bottom: 20px; font-size: 16px; }
.owner-line {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-pill {
  background: var(--bg-cream);
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-pill i { color: var(--yellow); }

/* =============== HOMEPAGE BLOG FEATURED =============== */
.blog-featured-section { padding: 100px 0; background: var(--bg-cream); }
.blog-featured-card .blog-featured-img {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-featured-card .blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =============== SERVICE HUB =============== */
.hub-intro { padding: 80px 0; background: var(--white); }
.hub-service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.hub-service-item {
  background: var(--bg-cream);
  padding: 32px 24px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}
.hub-service-item:hover { border-color: var(--yellow); }
.hub-service-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
}
.hub-service-item h3 { font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; }
.hub-service-item p { font-size: 14px; margin-bottom: 16px; }
.hub-cta { padding: 80px 0; background: var(--black); text-align: center; }
.hub-cta h2 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hub-cta h2 em { color: var(--yellow); font-style: normal; }
.hub-cta p { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 36px; }
.hub-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============== SERVICE DETAIL =============== */
.service-detail { padding: 100px 0; background: var(--white); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-detail-content h2 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.service-detail-content h2 em { color: var(--yellow); font-style: normal; }
.service-detail-content p { margin-bottom: 16px; }
.service-detail-img img { width: 100%; height: auto; display: block; }
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }

/* =============== AREAS =============== */
.areas-section { padding: 100px 0; background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.area-pill {
  background: var(--bg-cream);
  padding: 14px 10px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border-top: 2px solid transparent;
}
.area-pill:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

/* =============== CONTACT =============== */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.contact-info h2 em { color: var(--yellow); font-style: normal; }
.contact-info p { margin-bottom: 24px; font-size: 16px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-form-wrap {
  background: var(--bg-cream);
  padding: 48px 40px;
}
.contact-form-wrap h3 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--divider);
  background: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; }

/* =============== FAQ =============== */
.faq-list { }
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--divider);
}
.faq-item:first-child { border-top: 1px solid var(--divider); }
.faq-item h3 {
  font-size: 17px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--black);
}
.faq-item p { font-size: 15px; line-height: 1.7; }

/* =============== FINANCING =============== */
.financing-section { padding: 100px 0; background: var(--white); }
.financing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.financing-highlight {
  background: var(--black);
  color: var(--white);
  padding: 56px 48px;
}
.financing-highlight h3 {
  color: var(--yellow);
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.financing-highlight p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 28px; }
.financing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.financing-stat {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255,255,255,0.06);
}
.financing-stat .num {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.financing-stat .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
}
.financing-content h2 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.financing-content h2 em { color: var(--yellow); font-style: normal; }.financing-content p { margin-bottom: 20px; font-size: 16px; }
.financing-partner {
  background: var(--bg-cream);
  padding: 32px;
  margin-top: 32px;
}
.financing-partner h4 { font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.financing-partner p { font-size: 14px; margin-bottom: 16px; }

/* =============== BLOG =============== */
.blog-section { padding: 80px 0; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--bg-cream);
  display: flex;
  flex-direction: column;
}
.blog-card-img { aspect-ratio: 1 / 1; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--subtle);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 17px; letter-spacing: 0.5px; margin-bottom: 12px; line-height: 1.3; }
.blog-card p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.blog-card .service-link { margin-top: auto; }
.blog-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--subtle);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  grid-column: 1/-1;
}

/* Blog post layout */
.blog-post-layout { padding: 80px 0; background: var(--white); }
.blog-post-inner { max-width: 780px; margin: 0 auto; }
.blog-post-inner h1 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.05;
}
.blog-post-inner .blog-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--subtle);
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-post-inner .blog-featured-img { margin-bottom: 40px; }
.blog-post-inner .blog-featured-img img { width: 100%; height: auto; display: block; }
.blog-post-body { font-size: 17px; line-height: 1.75; color: var(--grey); }
.blog-post-body h2 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 40px 0 16px;
  line-height: 1.1;
  text-transform: uppercase;
}
.blog-post-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 20px 24px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body a { color: var(--yellow); text-decoration: underline; }
.blog-post-body img { max-width: 100%; height: auto; margin: 24px 0; display: block; }
.blog-post-body blockquote {
  border-left: 4px solid var(--yellow);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--bg-cream);
  font-style: italic;
}

/* =============== CALL BAND =============== */
.call-band {
  background: var(--yellow);
  padding: 80px 0;
  text-align: center;
}
.call-band h2 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.call-band h2 em { color: var(--white); font-style: normal; }
.call-band p { color: rgba(18,19,21,0.7); font-size: 17px; margin-bottom: 36px; }
.call-band-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.call-band .btn { background: var(--black); color: var(--white); }
.call-band .btn:hover { background: var(--white); color: var(--black); }

/* =============== FOOTER CTA =============== */
.footer-cta {
  background: var(--black);
  padding: 60px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-cta-text h3 {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.footer-cta-text p { color: rgba(255,255,255,0.6); font-size: 15px; }
.footer-cta-buttons { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* =============== FOOTER =============== */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 60px; width: auto; }
.footer-about p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-col ul li a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--yellow); }

/* =============== 404 =============== */
.not-found {
  padding: 120px 0;
  text-align: center;
}
.not-found .num {
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}
.not-found h2 { font-size: 32px; margin-bottom: 16px; }
.not-found p { font-size: 17px; max-width: 480px; margin: 0 auto 36px; }

/* =============== CITY / SERVICE-LOCATION PAGE =============== */
.city-hero { background: var(--black); padding: 80px 0; }
.city-intro { padding: 80px 0; background: var(--white); }
.city-services { padding: 80px 0; background: var(--bg-cream); }
.city-faq { padding: 80px 0; background: var(--white); }

/* =============== PRIVACY / TERMS =============== */
.legal-body { padding: 80px 0; background: var(--white); max-width: 780px; margin: 0 auto; }
.legal-body h2 { font-size: 22px; margin: 32px 0 12px; }
.legal-body p { margin-bottom: 16px; font-size: 15px; }
.legal-body ul { margin: 0 0 16px 24px; }
.legal-body li { margin-bottom: 8px; font-size: 15px; }

/* =============== MOBILE =============== */
@media (max-width: 760px) {
  .utility-bar { display: none; }
  .main-nav { display: none !important; }
  .book-online { display: none; }
  .menu-toggle { display: block; }
  .header-inner { padding: 14px 20px; gap: 16px; }
  .logo img { height: 48px; }
  .hero { min-height: 520px; }
  .hero-inner { min-height: 520px; padding: 60px 20px; }
  .hero h1 { font-size: 47px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-strip-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding: 18px 24px; }
  .trust-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .hub-service-list { grid-template-columns: 1fr !important; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .financing-grid { grid-template-columns: 1fr !important; }
  .financing-highlight { padding: 40px 28px; }
  .financing-stats { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .areas-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 36px; }
  .service-detail-grid { grid-template-columns: 1fr !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .proof-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Catch-all: collapse ANY inline-style grid to single column on mobile */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .mobile-col {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}
