/* ============================================
   NORTHBOUND v3 - Conversion-focused redesign
   Aesthetic: Maine craftsman trade, warm + grounded
   ============================================ */

:root {
  /* Brand palette */
  --bone: #F8F4EA;
  --paper: #EFE9DA;
  --paper-deep: #E3DCC9;
  --forest: #1A2D22;
  --forest-deep: #0F1B15;
  --forest-mid: #243B2E;
  --bronze: #B79B6C;
  --bronze-hot: #C9AB7A;
  --bronze-deep: #8B7245;
  --charcoal: #2A2D2A;
  --muted: #6B6557;
  --line: rgba(42, 45, 42, 0.12);
  --line-bronze: rgba(183, 155, 108, 0.36);
  --sage: #8FA875;
  --white: #ffffff;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(15, 27, 21, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 27, 21, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 27, 21, 0.18);
  --shadow-card: 0 10px 30px rgba(15, 27, 21, 0.08);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bone);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* TYPE */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  color: var(--forest);
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
.section-lead, .hero-sub { color: var(--muted); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  color: var(--bronze-deep);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--bronze-hot); }

/* LAYOUT */
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }

/* SKIP LINK */
.skip-link {
  position: absolute; left: -9999px;
  background: var(--forest); color: var(--bone);
  padding: 12px 18px; z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ANNOUNCEMENT BAR */
.announce-bar {
  background: var(--forest-deep);
  color: var(--bone);
  font-size: 0.86rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(183, 155, 108, 0.18);
}
.announce-grid {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; gap: 16px;
}
.announce-grid p { color: rgba(248, 244, 234, 0.86); }
.announce-grid p span { color: var(--bronze); margin-right: 6px; letter-spacing: 0.05em; }
.announce-phone {
  color: var(--bronze-hot); font-weight: 700; text-decoration: none;
  white-space: nowrap;
}
.announce-phone:hover { color: var(--bone); }

/* HEADER (dark theme to host the logo) */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--forest-deep);
  border-bottom: 1px solid rgba(183, 155, 108, 0.22);
}
.nav {
  min-height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.desktop-nav { display: flex; gap: 28px; align-items: center; }
.desktop-nav a {
  color: rgba(248, 244, 234, 0.86);
  font-size: 0.92rem; font-weight: 600;
  text-decoration: none; padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.desktop-nav a:hover { color: var(--bone); border-color: var(--bronze); }

.header-cta {
  background: linear-gradient(180deg, var(--bronze-hot), var(--bronze));
  color: var(--forest-deep);
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 0.9rem; font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}
.header-cta:hover { background: linear-gradient(180deg, var(--bronze), var(--bronze-deep)); transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
  color: var(--bone);
  isolation: isolate;
}
.hero-image {
  position: absolute; inset: 0; z-index: -2;
  background: url("hero-northbound-rig.jpg") center 30% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(135deg, rgba(15, 27, 21, 0.92) 0%, rgba(15, 27, 21, 0.74) 45%, rgba(15, 27, 21, 0.55) 100%),
    linear-gradient(180deg, rgba(15, 27, 21, 0.30) 0%, rgba(15, 27, 21, 0.0) 30%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-content h1 { color: var(--bone); margin-bottom: 18px; }
.hero-content h1 .accent {
  color: var(--bronze-hot);
  font-style: italic;
  font-weight: 700;
}
.hero-sub { color: rgba(248, 244, 234, 0.84); max-width: 540px; margin-bottom: 24px; }
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.hero-chips li {
  font-size: 0.84rem; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(248, 244, 234, 0.10);
  border: 1px solid rgba(183, 155, 108, 0.36);
  color: rgba(248, 244, 234, 0.92);
  white-space: nowrap;
}
.hero-chips li span { color: var(--bronze-hot); margin-right: 4px; }

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.hero-meta { color: rgba(248, 244, 234, 0.66); font-size: 0.86rem; }

/* HERO FORM CARD */
.hero-form-wrap { width: 100%; }
.quote-form {
  background: var(--bone);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 4px solid var(--bronze);
}
.form-header { grid-column: 1 / -1; margin-bottom: 4px; }
.form-header h2 {
  color: var(--forest);
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.form-header p { color: var(--muted); font-size: 0.92rem; }

.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field-label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--charcoal); letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: baseline;
}
.field-label em {
  font-style: normal; color: var(--bronze-deep);
  font-size: 0.66rem; letter-spacing: 0.08em; font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line-bronze);
  background: var(--white);
  border-radius: 8px;
  font: inherit;
  font-size: 0.96rem;
  color: var(--charcoal);
  transition: border-color 0.16s, box-shadow 0.16s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 45, 34, 0.14);
}
.field textarea { resize: vertical; min-height: 80px; }

.form-note {
  grid-column: 1 / -1;
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}
.form-note a { color: var(--forest); font-weight: 700; }
.form-note a:hover { color: var(--bronze-deep); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.96rem; font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-large { padding: 16px 26px; font-size: 1rem; }
.btn-primary {
  background: var(--forest);
  color: var(--bone);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--forest-mid); box-shadow: var(--shadow-lg); }

.btn-bronze {
  background: linear-gradient(180deg, var(--bronze-hot), var(--bronze));
  color: var(--forest-deep);
  box-shadow: 0 8px 24px rgba(183, 155, 108, 0.35);
}
.btn-bronze:hover { background: linear-gradient(180deg, var(--bronze), var(--bronze-deep)); }

.btn-ghost {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--bone); }

.btn-ghost-light {
  background: rgba(248, 244, 234, 0.06);
  color: var(--bone);
  border: 1.5px solid rgba(248, 244, 234, 0.42);
}
.btn-ghost-light:hover { background: rgba(248, 244, 234, 0.14); border-color: var(--bone); }

.btn-phone {
  background: var(--bone);
  color: var(--forest);
  font-size: 1.06rem;
  padding: 14px 22px;
  box-shadow: var(--shadow-md);
}
.btn-phone:hover { background: var(--white); }

/* TRUST BAR */
.trust-bar {
  background: var(--forest);
  color: var(--bone);
  padding: 26px 0;
  border-top: 1px solid rgba(183, 155, 108, 0.18);
  border-bottom: 1px solid rgba(183, 155, 108, 0.18);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  border-right: 1px solid rgba(183, 155, 108, 0.18);
  padding: 4px 12px 4px 0;
}
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--bronze-hot); font-size: 1.05rem; letter-spacing: 0.06em; }
.trust-svg {
  width: 30px; height: 30px;
  fill: none; stroke: var(--bronze-hot);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.trust-item p {
  font-size: 0.84rem; line-height: 1.3;
  color: rgba(248, 244, 234, 0.78);
}
.trust-item p strong {
  display: block; color: var(--bone);
  font-size: 0.92rem; font-weight: 700;
  margin-bottom: 2px;
}

/* PROCESS */
.process { background: var(--bone); }
.step-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}
.step {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 800;
  color: var(--bronze-deep); letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.98rem; }
.step-arrow {
  align-self: center;
  color: var(--bronze);
  font-size: 1.8rem; font-weight: 200;
}

/* SERVICES */
.services { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--bone);
  border-radius: 12px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-feature {
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 100%);
  border: 1px solid var(--bronze);
  box-shadow: 0 14px 36px rgba(183, 155, 108, 0.22);
}
.service-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--forest); color: var(--bone);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(26, 45, 34, 0.08);
  margin-bottom: 18px;
}
.service-icon svg {
  width: 30px; height: 30px;
  fill: none; stroke: var(--forest);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p {
  color: var(--muted); font-size: 0.96rem;
  margin-bottom: 18px; flex-grow: 1;
}
.service-cta {
  color: var(--forest); font-weight: 700; font-size: 0.92rem;
  text-decoration: none; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1.5px solid var(--bronze);
  padding-bottom: 3px; align-self: flex-start;
  transition: color 0.18s, border-color 0.18s;
}
.service-cta:hover { color: var(--bronze-deep); border-color: var(--bronze-deep); }

/* WHY */
.why { background: var(--bone); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  padding: 8px 0;
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--forest);
  margin-bottom: 18px;
}
.pillar-icon svg {
  width: 28px; height: 28px;
  fill: none; stroke: var(--bronze-hot);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.pillar h3 { margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 0.96rem; }

/* ESTATE SPOTLIGHT */
.estate-spotlight {
  background:
    radial-gradient(circle at 80% 20%, rgba(183, 155, 108, 0.14), transparent 26rem),
    linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: var(--bone);
  position: relative;
}
.estate-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.estate-copy h2 { color: var(--bone); margin-bottom: 18px; }
.estate-copy > p {
  color: rgba(248, 244, 234, 0.82);
  font-size: 1.08rem;
  margin-bottom: 24px;
  max-width: 580px;
}
.check-list { display: grid; gap: 10px; margin-bottom: 28px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(248, 244, 234, 0.92);
  font-size: 1rem;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--bronze-hot);
  border-bottom: 2px solid var(--bronze-hot);
  transform: rotate(-45deg);
}
.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.estate-quote {
  background: rgba(248, 244, 234, 0.06);
  border-left: 4px solid var(--bronze);
  border-radius: 6px;
  padding: 32px 30px;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; line-height: 0.4;
  color: var(--bronze);
  position: absolute; top: 28px; left: 24px;
  opacity: 0.4;
}
.estate-quote p {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.16rem; font-style: italic;
  color: rgba(248, 244, 234, 0.94);
  line-height: 1.5;
  margin-top: 18px;
}
.quote-attrib {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 0.84rem !important;
  color: var(--bronze-hot) !important;
  font-weight: 600 !important;
  margin-top: 16px !important;
  letter-spacing: 0.04em;
}

/* FIRST REVIEW CTA */
.reviews { background: var(--paper); }
.first-review-card {
  background: var(--bone);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.first-review-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--bronze-hot), var(--bronze), var(--bronze-deep));
}
.first-review-copy h2 { margin-bottom: 14px; }
.first-review-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 580px;
}
.first-review-copy .btn span { color: inherit; }
.first-review-aside {
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  color: var(--bone);
}
.review-stars-display {
  font-size: 2.4rem;
  letter-spacing: 0.14em;
  color: var(--bronze-hot);
  margin-bottom: 16px;
  line-height: 1;
}
.review-aside-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(248, 244, 234, 0.86);
}

/* AREA */
.area { background: var(--bone); }
.area-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.area-copy > p { color: var(--muted); margin-bottom: 14px; font-size: 1.04rem; }
.area-copy > p:last-of-type { margin-bottom: 24px; }
.area-list {
  background: var(--paper);
  border-radius: 12px;
  padding: 32px 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: grid; gap: 20px;
}
.area-block { }
.area-block h3 { color: var(--forest); margin-bottom: 6px; font-size: 1.06rem; }
.area-block p { color: var(--charcoal); font-size: 0.98rem; }

/* FAQ */
.faq { background: var(--paper); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-list details {
  background: var(--bone);
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.18s;
}
.faq-list details[open] { box-shadow: var(--shadow-card); }
.faq-list summary {
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 700;
  color: var(--forest);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.04rem;
  letter-spacing: -0.005em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem; font-weight: 400;
  color: var(--bronze-deep);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list details p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* FINAL CTA */
.final-cta {
  background:
    radial-gradient(circle at 20% 80%, rgba(183, 155, 108, 0.20), transparent 28rem),
    linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: var(--bone);
  padding: 96px 0;
  text-align: center;
}
.final-cta-inner { max-width: 720px; margin: 0 auto; }
.final-cta h2 { color: var(--bone); margin-bottom: 14px; }
.final-sub {
  color: rgba(248, 244, 234, 0.82);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.final-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* FOOTER */
.footer {
  background: var(--forest-deep);
  color: var(--bone);
  padding: 52px 0 36px;
  border-top: 1px solid rgba(183, 155, 108, 0.32);
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}
.footer-details { display: grid; gap: 8px; }
.footer-details p { color: rgba(248, 244, 234, 0.74); font-size: 0.94rem; }
.footer-details strong { color: var(--bone); }
.footer-details a { color: var(--bone); }
.footer-details a:hover { color: var(--bronze-hot); }
.footer-meta {
  margin-top: 12px !important;
  font-size: 0.82rem !important;
  color: rgba(248, 244, 234, 0.5) !important;
}

/* MOBILE STICKY BAR */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 100;
  display: none;
  background: var(--forest-deep);
  border-top: 1px solid rgba(183, 155, 108, 0.36);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
}
.mobile-bar-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 8px;
  color: var(--bone);
  font-size: 0.92rem; font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-right: 1px solid rgba(183, 155, 108, 0.20);
}
.mobile-bar-btn:last-child { border-right: none; }
.mobile-bar-call { background: var(--forest); }
.mobile-bar-text { background: var(--forest-mid); }
.mobile-bar-quote {
  background: linear-gradient(180deg, var(--bronze-hot), var(--bronze));
  color: var(--forest-deep);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { max-width: 640px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .trust-item:nth-child(3) { border-right: none; }
  .step-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
}

@media (max-width: 768px) {
  body { padding-bottom: 64px; } /* room for mobile bar */
  .mobile-bar { display: flex; }
  .section { padding: 64px 0; }
  .announce-grid { flex-direction: column; gap: 6px; padding: 8px 0; }
  .announce-grid p { font-size: 0.8rem; }
  .desktop-nav { display: none; }
  .header-cta { padding: 9px 14px; font-size: 0.84rem; }
  .nav { gap: 12px; min-height: 64px; }
  .brand-logo { height: 32px; }
  .hero { padding: 48px 0 64px; }
  .hero-content h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .quote-form { padding: 24px; grid-template-columns: 1fr; gap: 12px; }
  .form-header h2 { font-size: 1.4rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(183, 155, 108, 0.16); padding-bottom: 14px; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .service-grid, .review-grid { grid-template-columns: 1fr; }
  .first-review-card { grid-template-columns: 1fr; padding: 36px 26px; gap: 28px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .estate-grid, .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-row, .final-actions { flex-direction: column; align-items: stretch; }
  .cta-row .btn, .final-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-chips li { font-size: 0.78rem; padding: 5px 10px; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-phone { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
