/* ==========================================================================
   Colombino Carpentry, Landing Page Stylesheet
   Built by DLBoost MKT (www.dlboostmkt.com)
   ========================================================================== */

:root {
  --brown-light: #c29269;
  --brown-mid: #b98960;
  --brown-dark: #68452b;
  --brown-deep: #5c3a23;
  --charcoal-dark: #30363a;
  --charcoal-mid: #3b4248;
  --charcoal-light: #474c52;
  --gray-mid: #8c9092;
  --gray-light: #adb0b1;
  --white: #ffffff;
  --off-white: #f8f5f1;
  --cream: #f2ede6;

  /* Text colors chosen to meet WCAG 2.1 AA contrast (4.5:1) against their
     intended background. Do not swap these for --gray-mid / --brown-mid on
     body copy: those fail contrast at the sizes used on this page. */
  --text-body-light-bg: #5f6365;   /* body copy on white / off-white / cream */
  --text-body-dark-bg: var(--gray-light); /* body copy on charcoal backgrounds */
  --label-light-bg: #8f6a3a;        /* eyebrows / small labels on white / off-white / cream */
  --label-dark-bg: #c9a077;         /* eyebrows / small labels on charcoal backgrounds */

  --focus-ring: #2f6fb3;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

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

/* ── ACCESSIBILITY: skip link + focus states ── */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--white);
  color: var(--charcoal-dark);
  padding: 12px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(48, 54, 58, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(194, 146, 105, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.3px;
}

.nav-logo-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--brown-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--brown-light); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-light) !important;
  font-size: 13px !important;
  text-transform: none !important;
}

.nav-phone svg { width: 15px; height: 15px; color: var(--brown-light); }

.nav-cta {
  background: var(--brown-dark);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--brown-deep) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(48,54,58,0.92) 0%, rgba(59,66,72,0.75) 60%, rgba(104,69,43,0.6) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--brown-light) 0px,
    var(--brown-light) 1px,
    transparent 1px,
    transparent 40px
  );
  z-index: 0;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #2a3035 0%, #3b4248 40%, #5c3a23 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--label-dark-bg);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--brown-light);
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  color: var(--brown-light);
}

.hero-description {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 540px;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--brown-dark);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--brown-deep);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(194, 146, 105, 0.5);
  color: var(--brown-light);
  padding: 15px 34px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--brown-light);
  background: rgba(194, 146, 105, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--charcoal-mid);
  padding: 20px 0;
  border-top: 1px solid rgba(194,146,105,0.2);
  border-bottom: 1px solid rgba(194,146,105,0.2);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body-dark-bg);
  font-size: 13px;
  letter-spacing: 0.3px;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--brown-light);
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--charcoal-dark);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--label-light-bg);
  margin-bottom: 14px;
}

.section-dark .eyebrow { color: var(--label-dark-bg); }

.section-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 17px;
  color: var(--text-body-light-bg);
  max-width: 580px;
  font-weight: 300;
  line-height: 1.8;
}

.section-dark .section-intro { color: var(--text-body-dark-bg); }

/* Utility: avoids inline style="" attributes so the CSP below does not
   need 'unsafe-inline' in style-src. */
.text-on-dark { color: var(--white); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: #ddd7cf;
  border: 1px solid #ddd7cf;
  margin-top: 64px;
}

/* Each service gets its own accent color, set once here, everything else
   (icon badge, top bar, hover/active state) reads from --accent. Colors
   are warm/earthy variations that stay in the same family as the brand
   palette rather than clashing with it. */
.card-decks       { --accent: #b98960; }  /* brown-mid, brand default */
.card-pergolas    { --accent: #a8632f; }  /* rust/terracotta */
.card-carports    { --accent: #2f6f6a; }  /* deep teal */
.card-renovations { --accent: #b8862e; }  /* warm amber */
.card-roofplumbing { --accent: #4a6b52; }  /* muted forest green */
.card-custom      { --accent: #7a3b4a; }  /* deep plum */

.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.55;
  transform: scaleX(1);
  transform-origin: left;
  transition: opacity 0.25s ease, height 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
  background: var(--off-white);
  transform: translateY(-4px);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
  height: 4px;
}

.service-card:active {
  transform: translateY(-1px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--accent);
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--charcoal-dark);
}

.service-card p {
  font-size: 15px;
  color: var(--text-body-light-bg);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--charcoal-mid);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.about-img-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #474c52 0%, #3b4248 50%, #5c3a23 100%);
}

.about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(48,54,58,0.7) 0%, transparent 100%);
}

.about-img-note {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1.6;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: var(--brown-dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 32px rgba(104,69,43,0.3);
}

.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1;
}

.about-badge-text {
  font-size: 11px;
  font-weight: 300;
  opacity: 0.95;
  max-width: 90px;
  text-align: center;
  line-height: 1.4;
}

.about-content h2 { margin-bottom: 20px; }

.about-text {
  font-size: 16px;
  color: var(--text-body-light-bg);
  line-height: 1.85;
  margin-bottom: 36px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-value-dot {
  width: 8px;
  height: 8px;
  background: var(--brown-mid);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.about-value-text {
  font-size: 15px;
  color: var(--charcoal-mid);
  line-height: 1.6;
}

.about-value-text strong {
  display: block;
  font-weight: 500;
  color: var(--charcoal-dark);
  margin-bottom: 2px;
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--brown-light);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  padding: 0 24px;
  text-align: center;
}

.process-step-num {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  background: var(--charcoal-mid);
  border: 2px solid var(--brown-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--brown-light);
}

.process-step h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-body-dark-bg);
  line-height: 1.7;
}

/* ── TRUST / VALUE CARDS (replaces unverified testimonials until real
   Google reviews exist, see HTML comment above the section) ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: 4px;
  border-left: 3px solid var(--brown-mid);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(194,146,105,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.testimonial-icon svg { width: 20px; height: 20px; color: var(--brown-dark); }

.testimonial-text {
  font-size: 15px;
  color: var(--text-body-light-bg);
  line-height: 1.8;
  margin-bottom: 0;
}

.testimonial-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--charcoal-dark);
  margin-bottom: 10px;
}

.reviews-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(194,146,105,0.1);
  border: 1px dashed rgba(184,137,96,0.5);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-body-light-bg);
  text-align: center;
}

.reviews-note strong { color: var(--charcoal-dark); }

/* ── LIVE GBP REVIEWS (populated by reviews.js when configured, see
   comments in that file, falls back to .reviews-note above until then) ── */
.gbp-review-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--charcoal-dark);
}

.gbp-review-stars { display: inline-flex; gap: 2px; color: #d4a13a; }
.gbp-review-stars svg { display: block; }

.gbp-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gbp-review-card {
  background: var(--white);
  padding: 28px;
  border-radius: 4px;
  border-top: 3px solid var(--brown-mid);
}

.gbp-review-card .gbp-review-stars { margin-bottom: 12px; }

.gbp-review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body-light-bg);
  margin-bottom: 14px;
}

.gbp-review-meta {
  font-size: 13px;
  color: var(--charcoal-light);
}

.gbp-review-meta strong { color: var(--charcoal-dark); }

.gbp-review-source {
  margin-top: 24px;
  font-size: 12px;
  color: var(--charcoal-light);
  text-align: center;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--brown-deep);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 30px
  );
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  font-size: 17px;
  color: #e7e0d8;
  margin-bottom: 40px;
  position: relative;
  font-weight: 300;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--brown-deep);
  position: relative;
}

.cta-banner .btn-primary:hover {
  background: var(--cream);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }

.contact-info-text {
  font-size: 16px;
  color: var(--text-body-light-bg);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(194,146,105,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--brown-dark);
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--label-light-bg);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--charcoal-mid);
}

.contact-detail-value.is-pending {
  color: var(--text-body-light-bg);
  font-style: italic;
}

.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--charcoal-dark);
}

.form-subtitle {
  font-size: 15px;
  color: var(--text-body-light-bg);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* WhatsApp CTA: brand green, deliberately distinct from the site's own
   brown/charcoal buttons so it reads instantly as "this opens WhatsApp." */
.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px;
  background: #25D366;
  color: var(--white);
  border-radius: 4px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.whatsapp-cta svg { width: 26px; height: 26px; flex-shrink: 0; }

.whatsapp-cta:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}

.form-privacy {
  font-size: 13px;
  color: var(--text-body-light-bg);
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal-dark);
  padding: 64px 0 32px;
  border-top: 3px solid var(--brown-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-body-dark-bg);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--label-dark-bg);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-body-dark-bg);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-body-dark-bg);
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--brown-light);
  font-style: italic;
}

/* ── SERVICE AREA BADGE ── */
.service-area {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194,146,105,0.1);
  border: 1px solid rgba(194,146,105,0.3);
  color: var(--brown-light);
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-top: 32px;
}

/* ── VALUE / TRUST BADGES ROW (verifiable claims only, no invented stats) ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 64px;
}

.stat-item {
  padding: 36px 28px;
  text-align: center;
  background: var(--charcoal-dark);
}

.stat-icon {
  width: 30px;
  height: 30px;
  color: var(--brown-light);
  margin: 0 auto 14px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--brown-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-body-dark-bg);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* ── MOBILE STICKY CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--charcoal-dark);
  border-top: 1px solid rgba(194,146,105,0.3);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.mobile-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--white);
}

.mobile-cta-btn svg { width: 17px; height: 17px; }

.mobile-cta-btn.call {
  background: var(--charcoal-mid);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.mobile-cta-btn.quote {
  background: var(--brown-dark);
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--charcoal-dark);
  border-top: 1px solid rgba(194,146,105,0.2);
  padding: 20px 24px 28px;
  gap: 16px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 15px;
  color: var(--gray-light);
  letter-spacing: 0.3px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 8px;
  padding: 14px;
  border-radius: 3px;
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 12px; bottom: -20px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 58px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 120px 0 80px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 24px; }
  .about-badge { width: 110px; height: 110px; right: 8px; }
  .about-badge-num { font-size: 28px; }
}
