:root {
  --top-strip-height: 0px;
  --header-surface: rgba(22, 50, 79, 0.75);
  --navy: #16324f;
  --navy-rgb: 22, 50, 79;
  --brick: #c94f3d;
  --cream: #f7f4ee;
  --cream-2: #fffdf8;
  --text: #22313f;
  --muted: #4a545c;
  --line: rgba(22, 50, 79, 0.08);
  --shadow: 0 20px 40px rgba(22, 50, 79, 0.08);
  --content: 1328px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-18: 72px;
  --space-20: 80px;
  --section-space: 120px;
}

* { box-sizing: border-box; }

/* Skip-to-content link (a11y) */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 9999;
  padding: var(--space-2) var(--space-4);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--brick);
  outline-offset: 2px;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Form step indicator */
.form-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding-bottom: var(--space-6);
}
.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(22, 50, 79, 0.15);
  transition: background 0.25s ease, transform 0.25s ease;
}
.step-dot-active {
  background: var(--brick);
  transform: scale(1.25);
}
.step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-right: var(--space-3);
  transition: color 0.25s ease;
}
.step-label-active {
  color: var(--brick);
  font-weight: 700;
}

/* Submit loading state */
.button-loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(201, 79, 61, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, #fffdf8 100%);
}
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:not(.button):hover { color: var(--brick); }
button, input, textarea { font: inherit; }
img, svg, video, canvas, iframe { max-width: 100%; }
img, svg, video, canvas { height: auto; }
iframe { display: block; }
.nowrap { white-space: nowrap; }

.site-shell { min-height: 100vh; overflow-x: clip; }

.home-page .floating-nav {
  position: sticky;
  top: var(--top-strip-height);
  left: auto;
  margin: 0 auto;
  margin-bottom: -94px;
  transform: none;
}

.floating-nav {
  position: sticky;
  top: var(--top-strip-height);
  z-index: 1200;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-5) var(--space-6);
  background: var(--header-surface);
  border: 2px solid rgba(223, 122, 87, 0.78);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.floating-nav::before,
.floating-nav::after {
  display: none;
}

.contact-subbar {
  position: absolute;
  right: var(--space-6);
  top: calc(100% + 1px);
  z-index: -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: max-content;
  max-width: calc(100% - 48px);
  padding: 0 12px;
  border: 2px solid rgba(201, 79, 61, 0.72);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(22, 50, 79, 0.12);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
}

.contact-subbar a { color: inherit; }
.mobile-contact-bar { display: none; }

.brand {
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.12;
  color: #fff;
  white-space: normal;
  max-width: 140px;
}
.brand .brand-accent {
  display: inline-block;
  color: var(--brick);
}
.brand:hover,
.brand:focus-visible {
  color: #fff;
}
.brand:hover .brand-accent,
.brand:focus-visible .brand-accent {
  color: var(--brick);
}

.main-nav, .nav-actions, .hero-actions, .footer-bottom,
.cta-content, .inline-header, .quote-form-footer {
  display: flex;
  align-items: center;
}

.main-nav, .nav-actions, .hero-actions, .footer-bottom, .inline-header {
  gap: var(--space-4);
}

.floating-nav .nav-actions,
.floating-nav .nav-toggle { justify-self: end; }
.main-nav a { font-size: 1rem; font-weight: 600; color: rgba(255, 255, 255, 0.75); }
.main-nav a:hover, .main-nav a.is-current, .main-nav a.active { color: #fff; }
.nav-phone { font-size: 1.25rem; font-weight: 800; color: #fff; white-space: nowrap; }
.floating-nav .brand { padding-left: var(--space-4); text-align: left; font-size: 1.25rem; }
.main-nav a:hover, .text-link:hover { color: var(--brick); }
.main-nav a.active {
  background-image: linear-gradient(144deg, #c94f3d 0%, #df7a57 50%, #f3a277 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(201, 79, 61, 0.2);
}
.main-nav a.active:hover { color: #fff; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease-out, opacity 0.2s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
}
.button:active { transform: scale(0.97); }
.button-primary {
  align-items: center;
  background-image: linear-gradient(144deg, #c94f3d 0%, #df7a57 50%, #f3a277 100%);
  border: 0;
  border-radius: 999px;
  box-shadow: rgba(201, 79, 61, 0.24) 0 15px 30px -5px;
  color: #ffffff;
  display: inline-flex;
  font-size: 15px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 164px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease-out, opacity 0.2s ease-out;
}
.button-primary:active,
.button-primary:hover {
  outline: 0;
}
.button-primary > span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  padding: 14px 24px;
  border-radius: 999px;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transition: background 180ms ease-out;
}
.button-primary:hover > span {
  background: rgba(255, 255, 255, 0.12);
}
.button-primary:active {
  transform: scale(0.97);
}
.button-secondary { background: rgba(22, 50, 79, 0.06); color: var(--navy); }
.button:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 3px;
}
a:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 2px;
  border-radius: 4px;
}

.section { width: min(var(--content), calc(100% - 112px)); margin: 0 auto; }
.hero, .split-section, .visual-band, .cta-content, .footer-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.proof-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: 0 0 var(--section-space);
  position: relative;
}
.proof-section::after {
  content: '';
  position: absolute;
  inset: -10% -4% 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 72%, transparent 0 140px, rgba(22, 50, 79, 0.05) 141px 142px, transparent 143px),
    radial-gradient(circle at 12% 72%, transparent 0 220px, rgba(22, 50, 79, 0.035) 221px 222px, transparent 223px),
    radial-gradient(circle at 88% 18%, transparent 0 130px, rgba(223, 122, 87, 0.06) 131px 132px, transparent 133px),
    radial-gradient(circle at 88% 18%, transparent 0 210px, rgba(223, 122, 87, 0.035) 211px 212px, transparent 213px);
  z-index: 0;
  opacity: 0.9;
}
.proof-section > * { position: relative; z-index: 1; }

.proof-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  width: min(720px, 100%);
  text-align: left;
  align-items: flex-start;
}

.proof-copy h2 {
  margin: 0;
  position: relative;
}

.proof-copy p {
  margin: 0;
  width: 100%;
  max-width: none;
  color: var(--muted);
  line-height: 1.65;
}

.proof-showcase {
  width: min(720px, 100%);
}

.proof-cta {
  align-self: center;
  margin-top: var(--space-2);
}

.hero {
  padding: var(--space-20) 0 var(--space-12);
  align-items: center;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.hero-copy {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-copy::before,
.services-hero::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 79, 61, 0.18) 0%, rgba(201, 79, 61, 0.05) 42%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}

.hero-copy::before {
  right: -42px;
  top: -28px;
}

.services-hero { position: relative; }
.services-hero::before {
  right: -28px;
  top: 48px;
}

.hero-zone {
  position: relative;
  background-color: #0d1722;
  min-height: 100vh;
  min-height: 100svh;
}

.home-page .hero-zone::after {
  display: none;
}

.home-page .hero-zone {
  z-index: 0;
}

.hero-zone::before {
  display: none;
}

.hero-with-bg {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px 0 80px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home-page .hero-with-bg {
  padding-top: 208px;
}

.hero-with-bg .hero-copy {
  width: fit-content;
  max-width: min(760px, calc(100% - 112px));
  margin: 0 auto;
  padding: 36px 40px;
  border: 2px solid rgba(201, 79, 61, 0.7);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(8px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-with-bg .hero-copy h1,
.hero-with-bg .lead {
  color: var(--navy);
  text-shadow: 0 10px 26px rgba(8, 18, 30, 0.28);
}

.hero-with-bg .hero-copy h1 {
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  line-height: 1.02;
  max-width: 11ch;
}

.hero-with-bg .lead {
  color: #24384c;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.7;
  max-width: 56ch;
}

.hero-with-bg .button-secondary {
  background: #fff7ef;
  border-color: rgba(201, 79, 61, 0.55);
  color: var(--navy);
}

.hero-with-bg .button-secondary:hover {
  background: #fff2e5;
}

.hero-copy h1, .section-intro h2, .dark-panel h2, .services-hero h1, .quote-intro h2,
.side-note h2, .cta-content h2, .proof-copy h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  color: var(--navy);
}

.hero-copy h1, .services-hero h1 {
  font-size: clamp(3.5rem, 5vw, 5rem);
  line-height: 0.98;
}

.proof-copy h2,
.section-intro h2,
.dark-panel h2,
.quote-intro h2,
.side-note h2,
.cta-content h2 {
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.eyebrow {
  margin: 0 0 var(--space-3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brick);
}

.hero-copy h1 .nowrap,
.quote-intro h2 em,
.side-note h2 em,
.cta-content h2 em {
  color: var(--brick);
  font-style: normal;
}

.lead, .hero-copy p, .quote-intro p, .section-intro p, .dark-panel p, .side-note p, .cta-content p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy .lead {
  color: #22313f;
  font-size: 1.08rem;
  line-height: 1.8;
}

.quote-panel {
  position: relative;
  z-index: 1;
  min-height: 400px;
  margin-top: -160px;
  padding: 0 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
  overflow: visible;
}

.quote-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-6);
  padding: var(--space-8);
  padding-bottom: calc(var(--space-8) + 40px);
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--cream-2);
  box-shadow: var(--shadow);
  align-items: center;
}

.home-page .quote-card {
  margin-top: -12px;
  border-top-color: transparent;
}

.quote-card.compact { grid-template-columns: 360px 1fr; }
.quote-card.dark { background: var(--navy); border-color: transparent; }
.quote-card.dark .quote-intro h2,
.quote-card.dark .quote-intro p,
.quote-card.dark .eyebrow,
.quote-card.dark label span { color: var(--cream); }
.quote-card.dark .eyebrow { color: #e7b6ae; }

.quote-form, .quote-intro, .field-grid, .faq-list, .section-intro, .steps-section, .services-hero,
.quote-panel, .services-top-form, .services-bottom-form {
  display: flex;
  flex-direction: column;
}

.quote-intro { gap: var(--space-3); }
.quote-intro h2 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.form-proof-bar {
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: max-content;
  max-width: calc(100% - 64px);
  transform: translateX(-50%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 34px rgba(22, 50, 79, 0.18);
  z-index: 3;
}

.form-proof-bar p {
  margin: 0;
  color: #fff;
  line-height: 1.5;
  white-space: nowrap;
}

.form-proof-bar strong {
  color: #fff;
}

.proof-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.proof-avatars .avatar {
  width: 32px;
  height: 32px;
  display: block;
  margin-left: -8px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 14px rgba(22, 50, 79, 0.12);
}

.proof-avatars .avatar:first-child {
  margin-left: 0;
}

.form-proof-bar-dark {
  background: var(--navy);
  border: 3px solid var(--brick);
}

.quote-form { gap: var(--space-4); }
.quote-card .quote-form {
  justify-content: center;
}
.form-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.form-step[hidden] { display: none; }
.field-grid { gap: var(--space-4); }
.field-grid-two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }

label { display: flex; flex-direction: column; gap: var(--space-2); }
label span { font-size: 0.78rem; font-weight: 800; color: var(--navy); }
label span strong { color: var(--brick); }
.quote-form label { position: relative; }
input,
textarea {
  height: 46px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid rgba(22, 50, 79, 0.12);
  background: #f8f6f1;
}

.quote-form input,
.quote-form textarea {
  font-family: "Archivo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(22, 50, 79, 0.55);
  font-weight: 600;
}

.quote-form select {
  width: 100%;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(22, 50, 79, 0.12);
  background-color: #f8f6f1;
  padding: 0 38px 0 12px;
  /* Keep line-height fluid so page-level padding overrides don't clip glyphs on Chromium. */
  line-height: 1.2;
  font-family: "Archivo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brick) 50%),
    linear-gradient(135deg, var(--brick) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 13px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.quote-form select:required:invalid {
  color: rgba(22, 50, 79, 0.55);
  font-weight: 600;
}

.quote-form select option {
  color: var(--text);
}

.quote-form select:focus {
  outline: 2px solid rgba(201, 79, 61, 0.7);
  border-color: rgba(201, 79, 61, 0.5);
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 35;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 14px;
  border: 1px solid rgba(22, 50, 79, 0.16);
  background: #fff;
  box-shadow: 0 16px 38px rgba(12, 25, 40, 0.16);
  max-height: 240px;
  overflow-y: auto;
}

.address-suggestion-item + .address-suggestion-item {
  margin-top: 4px;
}

.address-suggestion-button {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 9px 11px;
  cursor: pointer;
}

.address-suggestion-button:hover,
.address-suggestion-button.is-active {
  background: rgba(22, 50, 79, 0.08);
}

.dark-fields .address-suggestions {
  border-color: rgba(247, 244, 238, 0.24);
  background: #152a40;
  box-shadow: 0 16px 38px rgba(4, 10, 18, 0.45);
}

.dark-fields .address-suggestion-button {
  color: #f7f4ee;
}

.dark-fields .address-suggestion-button:hover,
.dark-fields .address-suggestion-button.is-active {
  background: rgba(247, 244, 238, 0.12);
}

input[type="date"] {
  color: var(--text);
  font-family: "Archivo", sans-serif;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.75;
  filter: sepia(1) saturate(1.8) hue-rotate(-12deg);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(201, 79, 61, 0.7);
  border-color: rgba(201, 79, 61, 0.5);
}

textarea {
  min-height: 104px;
  height: auto;
  padding: var(--space-2) var(--space-3);
  resize: vertical;
}

.field-error {
  display: none;
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  color: #b42318;
}

.field-error.is-visible {
  display: block;
}

.field-helper {
  display: none;
  margin-top: 2px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(22, 50, 79, 0.78);
}

.field-helper.is-visible {
  display: block;
}

.dark-fields .field-helper {
  color: rgba(247, 244, 238, 0.82);
}

.field-invalid input,
.field-invalid textarea,
.field-invalid select {
  border-color: rgba(180, 35, 24, 0.42);
  outline: 2px solid rgba(180, 35, 24, 0.12);
}

.dark-fields input,
.dark-fields textarea,
.dark-fields select {
  color: var(--cream);
  border-color: rgba(247, 244, 238, 0.18);
  background: rgba(247, 244, 238, 0.08);
}

.dark-fields input::placeholder,
.dark-fields textarea::placeholder {
  color: rgba(247, 244, 238, 0.7);
  font-weight: 600;
}

.dark-fields select {
  background-image:
    linear-gradient(45deg, transparent 50%, #f7f4ee 50%),
    linear-gradient(135deg, #f7f4ee 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 22px,
    calc(100% - 13px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.dark-fields select:required:invalid {
  color: rgba(247, 244, 238, 0.7);
}

.quote-form-footer { justify-content: space-between; gap: var(--space-5); align-items: flex-end; }
.step-footer { justify-content: flex-end; align-items: center; }
.quote-card .quote-form-footer:not(.step-footer) {
  flex-direction: row;
}
.home-page .quote-card .quote-form-footer:not(.step-footer) {
  justify-content: flex-end;
  gap: 10px;
}
.home-page .quote-card .quote-form-footer:not(.step-footer) .form-actions {
  margin-left: auto;
  justify-content: flex-end;
}
.home-page .quote-card .quote-form-footer:not(.step-footer) .form-note {
  margin-right: auto;
  text-align: left;
}
.home-page .quote-card .home-wide-step-footer {
  justify-content: space-between !important;
  align-items: center !important;
  flex-direction: row-reverse !important;
}
.home-page .quote-card .home-wide-step-footer .button {
  width: auto !important;
}
.home-page .quote-card .home-wide-submit-footer {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end !important;
  column-gap: 12px;
  row-gap: 10px;
  justify-content: normal !important;
}
.home-page .quote-card .home-wide-submit-footer .form-note {
  margin: 0 !important;
  min-width: 0;
  max-width: 100% !important;
  text-align: left !important;
}
.home-page .quote-card .home-wide-submit-actions {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
  align-items: center !important;
  margin-left: 0 !important;
  width: auto !important;
  flex-wrap: nowrap;
}
.home-page .quote-card .home-wide-submit-actions .button {
  width: auto !important;
}
.field-full { width: 100%; }
.form-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.elevator-checkbox-grid {
  align-items: stretch;
}

.elevator-checkbox-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(22, 50, 79, 0.16);
  background: rgba(22, 50, 79, 0.04);
}

.elevator-checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  accent-color: var(--brick);
  background: transparent;
}

.elevator-checkbox-field span {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
}

.dark-fields .elevator-checkbox-field {
  border-color: rgba(247, 244, 238, 0.22);
  background: rgba(247, 244, 238, 0.08);
}

.dark-fields .elevator-checkbox-field span {
  color: var(--cream);
}
.form-note {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
  text-align: right;
}

.privacy-consent-note {
  max-width: 100%;
  font-size: 0.84rem;
}

.privacy-consent-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.zone-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 28px rgba(22, 50, 79, 0.05);
}

.areas-section {
  padding: 0 0 calc(var(--section-space) - 32px);
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: var(--space-6);
  align-items: stretch;
}

.areas-map-card,
.areas-copy {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(22, 50, 79, 0.05);
  overflow: hidden;
}

.areas-map-card {
  min-height: 420px;
}

.areas-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.areas-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8);
  background:
    radial-gradient(circle at top right, rgba(201, 79, 61, 0.2), transparent 26%),
    linear-gradient(145deg, var(--navy) 0%, var(--navy) 100%);
  border: 0;
  box-shadow: 0 18px 36px rgba(22, 50, 79, 0.18);
}

.areas-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.areas-panel-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 244, 238, 0.9) !important;
}

.areas-cities {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff !important;
}

.areas-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.areas-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.areas-points li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #df7a57, #f3a277);
  box-shadow: 0 0 0 4px rgba(223, 122, 87, 0.16);
}

.areas-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-2);
}

.areas-actions .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.areas-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.section-intro { padding: var(--section-space) 0 var(--space-6); }
.section-intro.narrow, .services-hero { width: min(720px, 100%); }
.section-intro h2,
.services-hero h1,
.quote-intro h2,
.dark-panel h2,
.side-note h2,
.cta-content h2 {
  position: relative;
}

.section-intro h2::after,
.services-hero h1::after,
.quote-intro h2::after,
.proof-copy h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brick) 0%, rgba(201, 79, 61, 0.12) 100%);
}

.cards-three, .steps-grid, .testimonials-grid, .zone-grid, .services-page-grid {
  display: grid;
  gap: var(--space-4);
}

.cards-three, .steps-grid, .testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.services-page-grid, .zone-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-three {
  margin-bottom: var(--space-6);
}

.services-more-link {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: var(--space-14);
}

.mini-card, .step-card, .testimonial-card, .service-card, .advantage-card {
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(22, 50, 79, 0.05);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease-out;
}

.mini-card,
.service-card,
.testimonial-card,
.advantage-card {
  position: relative;
  overflow: hidden;
}

.mini-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.mini-card-link:hover {
  color: inherit;
}

.service-card::before,
.testimonial-card::before,
.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(201, 79, 61, 0.28) 0%, rgba(201, 79, 61, 0) 100%);
}

.mini-card h3, .step-card h3, .testimonial-card strong, .service-card h2, .advantage-card h3 {
  color: var(--navy);
}

.mini-card-img {
  margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-6)) var(--space-4);
  height: 160px;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}
.mini-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(201, 79, 61, 0.14), rgba(22, 50, 79, 0.05));
  color: var(--navy);
  font-size: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.06);
}

.service-card { display: flex; flex-direction: column; gap: 16px; }
.services-page-grid { padding: 24px 0 88px; }

.split-section { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; padding: var(--section-space) 56px; align-items: stretch; background-color: var(--navy); background-image: url('../images/illustrations/premium-mover-illustration.svg'); background-repeat: no-repeat; background-position: calc(100% + 40px) 70%; background-size: 650px auto; }
.split-section .comparison-intro h2 { color: var(--brick); }
.split-section .comparison-intro p,
.split-section .comparison-intro .eyebrow { color: var(--cream); }

.comparison-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  width: 100%;
  align-items: center;
  grid-column: 1 / -1;
}

.comparison-intro {
  padding: 0;
  width: min(720px, 100%);
  text-align: left;
}

.comparison-mobile-note {
  display: none;
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(22, 50, 79, 0.05);
  outline: 2px solid rgba(201, 79, 61, 0.45);
  outline-offset: 0;
  width: min(720px, 100%);
}

.comparison-head,
.comparison-cell {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--line);
}

.comparison-head {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-head-muted {
  background: linear-gradient(135deg, rgba(190, 89, 76, 0.14), rgba(190, 89, 76, 0.06));
  color: #7c6d6a;
  border-right: 1px solid var(--line);
}

.comparison-head-strong {
  background: linear-gradient(135deg, rgba(106, 150, 112, 0.22), rgba(106, 150, 112, 0.1));
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
}

.comparison-cell {
  min-height: 100px;
}

.comparison-cell-muted {
  background: rgba(190, 89, 76, 0.06);
  border-right: 1px solid var(--line);
}

.comparison-cell-strong {
  background: rgba(106, 150, 112, 0.11);
}

.comparison-cell-muted h3 {
  color: #7a615c;
}

.comparison-cell-strong h3 {
  color: #285d3b;
}

.comparison-cell-muted p {
  color: #867673;
}

.comparison-cell-strong p {
  color: #496554;
}

.comparison-cell h3 {
  margin: 0 0 var(--space-2);
  font-size: 1.08rem;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.comparison-cell p {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.comparison-table > :nth-last-child(-n + 2) {
  border-bottom: 0;
}

.comparison-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(190px, 0.72fr);
  gap: var(--space-4);
  width: min(720px, 100%);
}

.showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(22, 50, 79, 0.06);
}

.showcase-card-image {
  height: 192px;
  min-height: 192px;
  background: rgba(22, 50, 79, 0.08);
}

.showcase-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.showcase-card-large {
  grid-row: span 2;
  height: 392px;
  min-height: 392px;
}

.showcase-card-wide {
  grid-column: 2 / 3;
  height: 192px;
  min-height: 192px;
}

.showcase-card-stat {
  height: 192px;
  min-height: 192px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.showcase-card-accent {
  background: linear-gradient(145deg, #df7a57 0%, #c94f3d 100%);
  color: #fff;
}

.showcase-card-neutral {
  background: rgba(255, 255, 255, 0.84);
}

.showcase-card-stat strong {
  font-size: clamp(2.4rem, 3vw, 3.1rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.showcase-card-stat p {
  margin: 0;
  max-width: 16ch;
  font-size: 0.9rem;
  line-height: 1.45;
}

.showcase-card-accent p {
  color: rgba(255, 255, 255, 0.9);
}

.showcase-card-neutral strong {
  color: var(--navy);
}

.showcase-card-neutral p {
  color: var(--muted);
}

.showcase-card-info {
  grid-column: 1 / 2;
  min-height: 188px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.84);
}

.showcase-card-info span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brick);
}

.showcase-card-info h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.showcase-card-info p {
  margin: 0;
  max-width: 30ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.showcase-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-4);
  background: linear-gradient(180deg, rgba(8, 18, 30, 0) 0%, rgba(8, 18, 30, 0.84) 78%);
  color: #fff;
}

.showcase-overlay span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-overlay p {
  margin: 0;
  max-width: 27ch;
  font-size: 0.86rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.dark-panel {
  padding: var(--space-8);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(201, 79, 61, 0.16), transparent 24%),
    var(--navy);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-brand {
  max-width: none;
  white-space: nowrap;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}
.dark-panel h2, .dark-panel p, .dark-panel .eyebrow, .site-footer, .site-footer a, .site-footer span, .site-footer p, .footer-brand {
  color: var(--cream);
}
.dark-panel .eyebrow { color: #e7b6ae; }
.dark-panel.compact { justify-content: center; }

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  align-content: center;
}

.advantage-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.advantage-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
}

.advantage-card p, .service-card p, .mini-card p, .step-card p, .testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.visual-band { padding: 0 0 var(--section-space); }
.side-note { padding: var(--space-10); }

.section.steps-section {
  position: relative;
  padding: var(--space-14) 0;
}
.section.steps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: var(--navy);
  z-index: 0;
}
.section.steps-section > * {
  position: relative;
  z-index: 1;
}
.steps-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.steps-hero .section-intro.narrow {
  width: 100%;
  padding: 0;
}

.steps-hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-hero-art img {
  width: min(100%, 560px);
  height: auto;
  display: block;
  margin: 0 auto;
  transform: none;
}
.steps-section .section-intro h2,
.steps-section .section-intro p,
.steps-section .section-intro .eyebrow { color: var(--cream); }
.steps-section .section-intro .eyebrow { color: #e7b6ae; }
.steps-section .step-card h3,
.steps-section .step-card p { color: var(--cream); }

.step-card {
  border-top: 4px solid rgba(242, 162, 119, 0.5);
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(8, 18, 30, 0.18);
  min-height: 100%;
}

.steps-grid-refined .step-card::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -16px;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 50, 79, 0.18), transparent);
}

.steps-grid-refined .step-card:last-child::after {
  display: none;
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(201, 79, 61, 0.14), rgba(22, 50, 79, 0.06));
  color: var(--brick);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.06);
}

.step-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3c2b6 !important;
}

.steps-section .step-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.steps-section .step-card > p:not(.step-kicker) {
  margin: 0 0 18px;
  color: rgba(247, 244, 238, 0.84);
}

.step-points {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.step-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(247, 244, 238, 0.9);
  font-size: 0.96rem;
  line-height: 1.45;
}

.step-points li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #df7a57, #f3a277);
  box-shadow: 0 0 0 4px rgba(223, 122, 87, 0.14);
}

.testimonials-section, .cta-band, .faq-section, .services-bottom-form { padding-bottom: var(--section-space); }
.quote-panel + .testimonials-section { margin-top: -96px; }
.inline-header { justify-content: space-between; }
.inline-header > div { text-align: left; }

.google-reviews-section {
  position: relative;
  padding: var(--space-14) 0 var(--section-space);
}

.google-reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background:
    radial-gradient(circle at 12% 16%, rgba(223, 122, 87, 0.18), transparent 18%),
    radial-gradient(circle at 88% 24%, rgba(243, 162, 119, 0.12), transparent 16%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy) 100%);
  z-index: 0;
}

.google-reviews-section > * {
  position: relative;
  z-index: 1;
}

.google-reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: var(--space-6);
  align-items: end;
  margin-bottom: var(--space-6);
}

.google-reviews-intro {
  width: 100%;
  padding: 0;
}

.google-reviews-intro h2,
.google-reviews-intro p,
.google-reviews-intro .eyebrow {
  color: var(--cream);
}

.google-reviews-intro .eyebrow {
  color: #e7b6ae;
}

.google-rating-panel {
  padding: var(--space-6);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(8, 18, 30, 0.16);
}

.google-rating-badge {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.google-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff7ef 0%, #f6efe6 100%);
  color: var(--navy);
  font-size: 1.65rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(223, 122, 87, 0.22);
}

.google-rating-badge strong,
.google-review-card strong {
  color: #fff;
}

.google-rating-badge p,
.google-rating-panel p {
  margin: 0;
  color: rgba(247, 244, 238, 0.84);
  line-height: 1.6;
}

.google-rating-badge p span {
  color: #fff;
  font-weight: 800;
}

.google-stars {
  margin: 12px 0 10px;
  color: #f2a33b;
  letter-spacing: 0.16em;
  font-size: 0.94rem;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.google-review-card {
  padding: var(--space-6);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(8, 18, 30, 0.16);
}

.google-review-top,
.google-review-person {
  display: flex;
  align-items: center;
}

.google-review-top {
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.google-review-person {
  gap: var(--space-3);
}

.google-review-person span {
  display: block;
  margin-top: 2px;
  color: rgba(247, 244, 238, 0.62);
  font-size: 0.84rem;
  line-height: 1.35;
}

.google-review-card p {
  margin: 0;
  color: rgba(247, 244, 238, 0.88);
  line-height: 1.72;
}

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: center;
  gap: var(--space-8);
}

.faq-hero .section-intro.narrow {
  width: min(720px, 100%);
}

.faq-hero-art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.faq-hero-art img {
  width: min(100%, 480px);
  height: auto;
  display: block;
  transform: translateX(-48px);
}

.testimonial-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-card::after {
  content: "★★★★★";
  color: #f2a33b;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
}
.testimonial-card span { color: var(--muted); }
.testimonial-person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-sep {
  color: var(--muted);
  opacity: 0.35;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 400;
}

.cta-content {
  padding: var(--space-8);
  align-items: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at right center, rgba(201, 79, 61, 0.22), transparent 22%),
    linear-gradient(135deg, rgba(var(--navy-rgb), 0.96), rgba(var(--navy-rgb), 0.96));
}
.cta-content h2, .cta-content p, .cta-content .eyebrow { color: var(--cream); }

.faq-list { gap: var(--space-4); }
.faq-list details {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease-out, background 0.2s ease-out;
}
.faq-list summary {
  display: block;
  list-style: none;
  cursor: pointer;
  padding: var(--space-6);
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-answer {
  animation: faq-reveal 0.28s var(--ease-out) both;
}
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-list h3 {
  margin: 0;
  color: var(--navy);
}
.faq-answer {
  padding: 4px var(--space-6) var(--space-6);
  margin-left: var(--space-6);
}
.faq-answer p {
  margin: 0;
  color: #4f5b65;
  line-height: 1.78;
}
.faq-answer p + p {
  margin-top: 14px;
}
.faq-answer strong {
  font-weight: 800;
  color: var(--brick);
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: var(--space-10) 56px 48px;
  border-radius: 0;
  background: var(--navy);
}

.footer-shell {
  width: 100%;
  grid-template-columns: minmax(320px, 1.5fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(247, 244, 238, 0.16);
}

.footer-shell > div, .footer-bottom > div {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-shell > div:first-child p {
  max-width: 38ch;
  color: rgba(247, 244, 238, 0.76);
}

.footer-bottom { justify-content: space-between; padding-top: var(--space-6); width: 100%; }
.footer-bottom > div { flex-direction: row; gap: var(--space-4); }
.text-link { font-weight: 800; color: var(--brick); }

.faq-list details[open] { background: rgba(255, 255, 255, 0.98); border-color: rgba(201, 79, 61, 0.2); }
.testimonial-card strong { color: var(--brick); font-size: 1.05rem; }
.site-footer { border-top: 4px solid rgba(201, 79, 61, 0.34); }

.services-hero { padding: var(--space-20) 0 var(--space-6); }
.services-top-form { padding-bottom: var(--section-space); }
.services-advantages { padding-top: 0; }

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .mini-card:hover,
  .service-card:hover,
  .advantage-card:hover,
  .testimonial-card:hover,
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(22, 50, 79, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .floating-nav, .section { width: min(var(--content), calc(100% - 32px)); }
  .site-footer { width: 100%; padding-left: 32px; padding-right: 32px; }
  .home-page .testimonials-section .section-intro,
  .home-page .testimonials-section .testimonials-grid { width: min(var(--content), calc(100% - 32px)); }
  .hero, .split-section, .visual-band, .footer-shell, .cta-content, .quote-card, .quote-card.compact { grid-template-columns: 1fr; }
  .split-section { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; padding-left: 16px; padding-right: 16px; }
  .cards-three, .steps-grid, .testimonials-grid, .services-page-grid, .zone-grid, .field-grid-two { grid-template-columns: 1fr 1fr; }
  .areas-layout { grid-template-columns: 1fr; }
  .comparison-table { grid-template-columns: 1fr; }
  .comparison-head-muted,
  .comparison-cell-muted { border-right: 0; }
  .comparison-showcase { grid-template-columns: 1fr 1fr; }
  .showcase-card-large { grid-row: auto; min-height: 320px; }
  .showcase-card-wide { grid-column: auto; min-height: 220px; }
  .contact-subbar { display: none; }
  .main-nav, .nav-actions { display: none; }
}

@media (max-width: 720px) {
  :root { --section-space: 64px; }
  .hero, .services-hero { padding-top: 48px; }
  .hero-with-bg {
    padding: 124px 0 36px;
  }
  .floating-nav {
    top: 0;
    margin-top: 0;
    width: calc(100% - 20px);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 0 0 20px 20px;
    background: rgba(22, 50, 79, 0.8);
    border: 1px solid rgba(223, 122, 87, 0.78);
    box-shadow: 0 18px 32px rgba(22, 50, 79, 0.12);
    backdrop-filter: blur(14px);
    overflow: visible;
  }
  .home-page .floating-nav {
    top: 0;
    margin-bottom: -114px;
  }
  .floating-nav .brand {
    grid-column: 2;
    padding-left: 0;
    max-width: none;
    font-size: 1.08rem;
    line-height: 1.04;
    text-align: center;
    justify-self: center;
  }
  .floating-nav .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }
  .section { width: calc(100% - 20px); }
  .section.section-intro.narrow {
    width: calc(100% - 20px);
  }
  .areas-section {
    padding-left: 4px;
    padding-right: 4px;
  }
  .site-footer { width: 100%; padding: 104px 20px 40px; }
  .footer-brand {
    display: inline-block;
    max-width: 12ch;
    white-space: normal;
    line-height: 1.02;
  }
  .split-section {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
    background-image: none;
  }
  .cards-three, .steps-grid, .testimonials-grid, .services-page-grid, .zone-grid, .field-grid-two, .advantage-grid {
    grid-template-columns: 1fr;
  }
  .comparison-table {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    position: relative;
    padding: 10px 0 8px;
  }
  .comparison-mobile-note {
    display: block;
    width: 100%;
    margin: -8px 0 10px;
    padding-left: 18px;
  }
  .comparison-mobile-note-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(201, 79, 61, 0.16);
    color: #ffd8cf;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .comparison-mobile-note p {
    margin: 0;
    color: rgba(247, 244, 238, 0.9);
    font-size: 0.92rem;
    line-height: 1.55;
    font-weight: 700;
  }
  .comparison-table::before {
    display: none;
  }
  .comparison-head {
    display: none;
  }
  .comparison-cell {
    position: relative;
    min-height: 0;
    width: calc(100% - 64px);
    padding: 34px 16px 14px 16px;
    border: 3px solid #df7a57;
    border-bottom: 3px solid #df7a57;
    border-radius: 18px;
    box-shadow: 0 14px 26px rgba(8, 18, 30, 0.12);
  }
  .comparison-table > :nth-last-child(-n + 2) {
    border-bottom: 3px solid #df7a57;
  }
  .comparison-cell::before {
    display: none;
  }
  .comparison-cell::after {
    display: block;
    position: absolute;
    top: 10px;
    left: 16px;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.3;
    font-weight: 400;
  }
  .comparison-cell-muted {
    align-self: flex-start;
    margin-right: auto;
    background: linear-gradient(180deg, #fbf7f6, #f8f0ed);
  }
  .comparison-cell-muted::before {
    content: "";
    display: block;
    position: absolute;
    right: 28px;
    bottom: -39px;
    width: 0;
    height: 39px;
    border-right: 4px solid #df7a57;
  }
  .comparison-cell-strong {
    align-self: flex-end;
    margin-left: auto;
    background: linear-gradient(180deg, #f6faf5, #edf5ee);
  }
  .comparison-cell-strong::before {
    display: none;
  }
  .comparison-cell-muted::after {
    content: "Autres compagnies";
    color: #7b7f85;
  }
  .comparison-cell-strong::after {
    content: "Déménagement Confort";
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 700;
  }
  .comparison-cell h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
  }
  .comparison-cell p {
    margin: 0;
    max-width: none;
    padding-left: 36px;
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .comparison-showcase { grid-template-columns: 1fr; }
  .showcase-card-large,
  .showcase-card-wide,
  .showcase-card-stat,
  .showcase-card-image { min-height: 220px; }
  .hero-zone::before {
    background-position: 58% top;
  }
  .home-page .hero-zone::after {
    background:
      radial-gradient(circle at 8% 30%, transparent 0 108px, rgba(22, 50, 79, 0.06) 109px 110px, transparent 111px),
      radial-gradient(circle at 8% 30%, transparent 0 156px, rgba(22, 50, 79, 0.04) 157px 158px, transparent 159px),
      radial-gradient(circle at 90% 20%, transparent 0 92px, rgba(223, 122, 87, 0.07) 93px 94px, transparent 95px),
      radial-gradient(circle at 90% 20%, transparent 0 138px, rgba(223, 122, 87, 0.045) 139px 140px, transparent 141px);
    opacity: 0.72;
  }
  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 247, 239, 0.42);
    border: 2px solid var(--brick);
    box-shadow: inset 0 0 0 1px rgba(201, 79, 61, 0.14);
  }
  .mobile-contact-bar {
    position: fixed;
    top: 66px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: max-content;
    max-width: calc(100% - 20px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
    padding: 3px;
    border: 0;
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background-image: linear-gradient(144deg, #c94f3d 0%, #df7a57 50%, #f3a277 100%);
    box-shadow: 0 10px 18px rgba(22, 50, 79, 0.1);
  }
  .mobile-contact-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 0 0 13px 13px;
    background: var(--navy);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
    white-space: nowrap;
  }
  body.mobile-nav-open .mobile-contact-bar {
    opacity: 0;
    pointer-events: none;
  }
  .mobile-nav {
    inset: 84px 0 0 0;
    z-index: 11;
  }
  .mobile-nav-panel {
    width: min(320px, calc(100% - 20px));
    padding-top: calc(var(--space-8) + 8px);
    border-top-left-radius: 24px;
  }
  .hero-with-bg .hero-copy {
    width: calc(100% - 12px);
    max-width: 100%;
    padding: 20px 18px;
    border-radius: 24px;
    border-color: rgba(201, 79, 61, 0.46);
    background: rgba(255, 253, 248, 0.32);
    backdrop-filter: blur(7px);
  }
  .hero-with-bg .hero-copy h1 {
    font-size: clamp(2.2rem, 10.6vw, 3.05rem);
    max-width: 9.5ch;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }
  .hero-with-bg .lead {
    font-size: 0.98rem;
    line-height: 1.58;
    max-width: 31ch;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 48px;
  }
  .quote-panel {
    min-height: auto;
    margin-top: -128px;
    padding-bottom: 48px;
  }
  .quote-card, .cta-content, .dark-panel, .service-card, .mini-card, .step-card, .testimonial-card, .site-footer {
    padding: 22px;
  }
  .steps-hero {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
  }
  .google-reviews-header,
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }
  .google-reviews-header {
    gap: 18px;
  }
  .google-rating-panel,
  .google-review-card {
    padding: 20px 18px;
    border-radius: 22px;
  }
  .google-review-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-hero {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .steps-hero-art {
    justify-content: center;
  }
  .faq-hero-art {
    justify-content: center;
    margin: -4px 0 20px;
  }
  .steps-hero-art img {
    width: min(100%, 320px);
    margin: 0 auto;
    transform: none;
  }
  .faq-hero-art img {
    width: min(100%, 300px);
    margin: 0 auto;
    transform: none;
  }
  .quote-card {
    gap: 18px;
    padding: 20px 18px 84px;
  }
  .form-proof-bar {
    display: none;
  }
  .proof-stars {
    display: inline-flex;
    flex-shrink: 0;
    gap: 2px;
  }
  .proof-avatars {
    display: none;
  }
  .proof-avatars .avatar {
    width: 28px;
    height: 28px;
  }
  .quote-intro h2 {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }
  .quote-intro h2::after,
  .section-intro h2::after,
  .proof-copy h2::after {
    width: 56px;
    margin-top: 10px;
  }
  .quote-form-footer,
  .step-footer,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .quote-form-footer {
    gap: 14px;
  }
  .form-note {
    max-width: none;
    text-align: left;
  }
  .form-actions .button,
  .quote-form-footer .button {
    width: 100%;
  }
  .section-intro {
    padding: 56px 0 20px;
  }
  .section-intro.inline-header {
    align-items: flex-start;
    gap: 12px;
  }
  .section-intro.inline-header p {
    max-width: none;
  }
  .testimonial-card p,
  .comparison-cell p,
  .proof-copy p,
  .section-intro p {
    line-height: 1.6;
  }
  .mini-card-img {
    height: 184px;
  }
  .services-more-link {
    margin-bottom: 48px;
  }
  .quote-panel + .testimonials-section {
    margin-top: 8px;
  }
  .testimonials-section,
  .google-reviews-section,
  .proof-section,
  .cta-band,
  .faq-section,
  .services-bottom-form,
  .visual-band,
  .services-top-form {
    padding-bottom: 56px;
  }
  .steps-grid-refined .step-card::after {
    display: none;
  }
  .faq-list details::before {
    top: 16px;
    right: 16px;
  }
}

/* ===== Nav Dropdown ===== */
.nav-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-wrap > a::after {
  content: "▾";
  margin-left: 3px;
  font-size: 0.68em;
  opacity: 0.55;
  vertical-align: middle;
}
.nav-dropdown-wrap > a.active::after { opacity: 0.8; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 216px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(22, 50, 79, 0.13);
  padding: var(--space-2);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 20;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(22, 50, 79, 0.06); color: var(--brick); }
.nav-dropdown a.active {
  background: linear-gradient(135deg, rgba(224,115,61,0.12), rgba(242,160,96,0.08));
  color: #e0733d;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
}
.nav-dropdown-divider { height: 1px; background: var(--line); margin: var(--space-1) var(--space-2); }

/* ===== Mobile Nav Submenu ===== */
.mobile-nav-disclosure-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 1px solid var(--line);
}
.mobile-nav-disclosure-row > a {
  flex: 1;
  border-bottom: 0 !important;
}
.mobile-nav-disclosure-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}
.mobile-nav-disclosure-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  transition: transform 0.2s ease;
}
.mobile-nav-disclosure-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.mobile-nav-submenu {
  display: flex;
  flex-direction: column;
  padding-left: var(--space-4);
  border-left: 2px solid var(--line);
  margin-left: var(--space-2);
  margin-bottom: var(--space-1);
  margin-top: var(--space-2);
}
.mobile-nav-submenu[hidden] { display: none; }
.mobile-nav-submenu a {
  font-size: 0.9rem !important;
  color: var(--muted) !important;
  border-bottom: none !important;
  padding: 6px 0 !important;
}

/* ===== Mobile Navigation ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 8;
  background: rgba(8, 18, 30, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 88%);
  background: var(--cream-2);
  padding: var(--space-20) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  box-shadow: -24px 0 60px rgba(22, 50, 79, 0.18);
  overflow-y: auto;
}
.mobile-nav-panel a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
  display: block;
}
.mobile-nav-panel .button-primary {
  display: inline-flex;
  width: 100%;
  margin-top: var(--space-4);
  padding: 3px;
  border-bottom: 0;
  color: #fff;
}
.mobile-nav-panel .button-primary > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  color: inherit;
}
body.mobile-nav-open { overflow: hidden; }

@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
}

/* ===== Initials Avatars ===== */
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 14px rgba(22, 50, 79, 0.12);
}
.avatar:first-child { margin-left: 0; }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(22, 50, 79, 0.12);
}

/* ===== Star Ratings ===== */
.proof-stars { display: flex; gap: 1px; flex-shrink: 0; align-items: center; }
.proof-stars svg { width: 13px; height: 13px; }

/* ===== Showcase SVG fill ===== */
.showcase-svg-fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(22, 50, 79, 0.07), rgba(201, 79, 61, 0.05));
  color: rgba(22, 50, 79, 0.3);
}
.showcase-svg-fill svg { width: 52px; height: 52px; }

/* ===== Visual Band Illustration ===== */
.visual-band-illustration {
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(22, 50, 79, 0.04), rgba(201, 79, 61, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.visual-band-illustration svg { width: 88%; max-width: 400px; height: auto; }

/* ===== Service Card Icons ===== */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(201, 79, 61, 0.1), rgba(22, 50, 79, 0.04));
  box-shadow: inset 0 0 0 1px rgba(22, 50, 79, 0.07);
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--navy); }
.service-card-top { display: flex; flex-direction: column; gap: var(--space-3); }

/* ===== Comparison icon SVG ===== */
.comparison-cell h3 { display: flex; align-items: center; gap: 8px; }
.cmp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cmp-icon svg { width: 14px; height: 14px; }
.cmp-bad  { background: rgba(190, 89, 76, 0.14); }
.cmp-bad  svg { stroke: #9a5147; }
.cmp-good { background: rgba(106, 150, 112, 0.2); }
.cmp-good svg { stroke: #285d3b; }

/* ===== Zone Grid pin ===== */
.zone-grid span { display: inline-flex; align-items: center; gap: 7px; }
.zone-grid span svg { width: 15px; height: 15px; stroke: var(--brick); flex-shrink: 0; }

/* ===== Blog Page ===== */
.blog-hero { padding: 100px 0 var(--space-10); max-width: 700px; }
.blog-hero h1 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.blog-hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brick), rgba(201, 79, 61, 0.12));
}
.blog-hero .lead { margin-top: var(--space-5); color: var(--muted); line-height: 1.75; max-width: 52ch; }

.blog-featured { padding-bottom: var(--space-12); }
.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}
.blog-featured-image {
  min-height: 400px;
  background: linear-gradient(135deg, rgba(22, 50, 79, 0.07), rgba(201, 79, 61, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-featured-image::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  bottom: -50px; left: -50px;
  background: radial-gradient(circle, rgba(201, 79, 61, 0.16), transparent 70%);
}
.blog-featured-image svg { width: 220px; height: auto; position: relative; z-index: 1; }
.blog-featured-content {
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}
.blog-featured-content h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.blog-featured-content p { margin: 0; color: var(--muted); line-height: 1.75; }

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.blog-meta { font-size: 0.78rem; color: var(--muted); display: flex; gap: 6px; align-items: center; }
.blog-meta-sep { opacity: 0.4; }

.blog-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}
.blog-section-header h2 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: -0.02em;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  padding-bottom: var(--section-space);
}
.blog-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(22, 50, 79, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease-out;
  position: relative;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, rgba(201, 79, 61, 0.28), rgba(201, 79, 61, 0));
}
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(22, 50, 79, 0.1); }
}
.blog-card-image { height: 148px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
.blog-featured-image img,
.blog-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.blog-card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.blog-card-body h3 { margin: 0; font-size: 1rem; line-height: 1.3; letter-spacing: -0.01em; color: var(--navy); font-weight: 800; }
.blog-card-body p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.65; flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-3); border-top: 1px solid var(--line); margin-top: var(--space-2); }
.blog-date { font-size: 0.74rem; color: var(--muted); }

/* Conseils page cards should keep images perfectly fitted in their frames. */
.conseils-page .blog-featured-image,
.conseils-page .blog-card-image {
  overflow: hidden;
  padding: 0 !important;
  background: transparent !important;
}

.conseils-page .blog-card-image {
  height: clamp(156px, 18vw, 188px);
}

@media (max-width: 1100px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-image { min-height: 240px; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
.blog-grid { grid-template-columns: 1fr; }
.blog-hero { padding-top: 60px; }
}

.blog-card-link,
.blog-featured-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.blog-card-link {
  height: 100%;
}

.blog-card-link:focus-visible,
.blog-featured-link:focus-visible {
  outline: 3px solid rgba(201, 79, 61, 0.35);
  outline-offset: 4px;
  border-radius: 24px;
}

.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brick);
}

.blog-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: var(--space-5);
}

.article-page .blog-hero {
  max-width: 760px;
}

.article-page .blog-hero + .section {
  padding-top: var(--site-section-space-tight);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.article-main {
  padding: 34px 36px;
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(22, 50, 79, 0.08);
  box-shadow: 0 20px 48px rgba(22, 50, 79, 0.08);
}

.article-main-title {
  margin: 0 0 22px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.article-intro {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.article-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.article-body {
  display: grid;
  gap: 26px;
}

.article-section h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.article-section p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
}

.article-section ul,
.article-section ol {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.article-section li + li {
  margin-top: 8px;
}

.article-highlight-box,
.article-side-card,
.article-cta-card {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(22, 50, 79, 0.08);
  box-shadow: 0 18px 38px rgba(22, 50, 79, 0.06);
}

.article-highlight-box {
  background:
    radial-gradient(circle at top right, rgba(201, 79, 61, 0.08), transparent 28%),
    rgba(255, 253, 248, 0.96);
}

.article-highlight-box h2,
.article-side-card h2,
.article-cta-card h2 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.2;
  color: var(--navy);
}

.article-highlight-box p,
.article-side-card p,
.article-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.article-side-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.article-side-card li + li {
  margin-top: 8px;
}

.article-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 108px;
}

.article-related-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.article-related-link {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(22, 50, 79, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease-out, border-color 180ms ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .article-related-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(22, 50, 79, 0.08);
    border-color: rgba(201, 79, 61, 0.18);
  }
}

.article-related-link strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.article-related-link span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.article-page .services-bottom-form {
  padding-top: 2.5rem;
}

@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .article-main,
  .article-highlight-box,
  .article-side-card,
  .article-cta-card {
    padding: 22px 20px;
    border-radius: 22px;
  }
}

/* ===== Service Sub-Pages ===== */
.service-page main { padding-top: 24px; }
.service-page.service-hero-page main { padding-top: 0; }
.service-page .interior-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 132px;
  padding-bottom: var(--section-space);
  overflow: hidden;
}
.service-page .interior-top-copy {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: 0 40px 0 0;
  max-width: 600px;
}
.service-page .interior-top-copy .eyebrow {
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.service-page .interior-top-copy .lead {
  max-width: 54ch;
  margin: 0 0 28px;
  font-size: 1.1rem;
  line-height: 1.75;
}
.service-page .interior-top-copy h1 {
  max-width: 600px;
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.service-page .interior-top-copy .service-title-accent {
  display: inline-block;
  padding: 0 0.14em;
  color: var(--brick);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0 60%, rgba(201, 79, 61, 0.16) 60% 100%);
  border-radius: 0.18em;
}
.service-page .interior-top-copy .service-title-lockup {
  display: inline-block;
  white-space: nowrap;
}
.service-page .interior-top-form {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
}
.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.service-hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.service-hero-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}
.service-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.service-hero-stats li {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.service-hero-stats strong {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.service-hero-stats span {
  margin-top: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.service-page.service-hero-page .interior-top {
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -118px;
  align-items: start;
  padding-left: max(56px, calc((100vw - var(--content)) / 2));
  padding-right: max(56px, calc((100vw - var(--content)) / 2));
  padding-top: 250px;
  padding-bottom: calc(var(--section-space) + 12px);
  background:
    radial-gradient(circle at 14% 24%, rgba(223, 122, 87, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(250, 244, 236, 0.92) 0%, rgba(250, 244, 236, 0.4) 44%, rgba(250, 244, 236, 0) 72%);
}
.service-page.service-hero-page .hero-distance-atmosphere {
  position: absolute;
  inset: 0 44% 30px -2%;
  z-index: 0;
  pointer-events: none;
}
.service-page.service-hero-page .hero-distance-beam,
.service-page.service-hero-page .hero-distance-orbit,
.service-page.service-hero-page .hero-distance-dot {
  position: absolute;
  display: block;
  border-radius: 999px;
}
.service-page.service-hero-page .hero-distance-beam {
  filter: blur(0.5px);
  transform: rotate(-18deg);
  transform-origin: center;
}
.service-page.service-hero-page .hero-distance-beam-a {
  top: 38px;
  left: -6%;
  width: 180px;
  height: 420px;
  background: linear-gradient(180deg, rgba(223, 122, 87, 0.08), rgba(223, 122, 87, 0));
}
.service-page.service-hero-page .hero-distance-beam-b {
  top: 4px;
  left: 28%;
  width: 108px;
  height: 300px;
  background: linear-gradient(180deg, rgba(22, 50, 79, 0.08), rgba(22, 50, 79, 0));
}
.service-page.service-hero-page .hero-distance-orbit {
  border: 1px solid rgba(22, 50, 79, 0.08);
}
.service-page.service-hero-page .hero-distance-orbit-a {
  top: 90px;
  left: 14%;
  width: 280px;
  height: 280px;
}
.service-page.service-hero-page .hero-distance-orbit-b {
  top: 140px;
  left: 36%;
  width: 110px;
  height: 110px;
}
.service-page.service-hero-page .hero-distance-dot {
  background: rgba(223, 122, 87, 0.74);
  box-shadow: 0 0 0 10px rgba(223, 122, 87, 0.08);
}
.service-page.service-hero-page .hero-distance-dot-a {
  top: 146px;
  left: 66%;
  width: 10px;
  height: 10px;
}
.service-page.service-hero-page .hero-distance-dot-b {
  bottom: 38px;
  left: 12%;
  width: 12px;
  height: 12px;
}
.service-page.hero-variant-services .interior-top {
  background:
    radial-gradient(circle at 13% 22%, rgba(223, 122, 87, 0.13), transparent 24%),
    linear-gradient(90deg, rgba(251, 246, 239, 0.95) 0%, rgba(251, 246, 239, 0.5) 42%, rgba(251, 246, 239, 0) 72%);
}
.service-page.hero-variant-services .hero-distance-orbit-a {
  top: 72px;
  left: 10%;
  width: 320px;
  height: 320px;
}
.service-page.hero-variant-services .hero-distance-beam-b {
  left: 34%;
}
.service-page.hero-variant-local .interior-top {
  background:
    radial-gradient(circle at 12% 18%, rgba(223, 122, 87, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(252, 247, 241, 0.96) 0%, rgba(252, 247, 241, 0.48) 42%, rgba(252, 247, 241, 0) 72%);
}
.service-page.hero-variant-local .hero-distance-beam-a {
  left: -3%;
  width: 150px;
}
.service-page.hero-variant-local .hero-distance-orbit-a {
  top: 112px;
  left: 6%;
  width: 240px;
  height: 240px;
}
.service-page.hero-variant-local .hero-distance-dot-b {
  left: 22%;
  bottom: 52px;
}
.service-page.hero-variant-distance .hero-distance-orbit-a {
  top: 90px;
  left: 14%;
  width: 280px;
  height: 280px;
}
.service-page.hero-variant-distance .hero-distance-dot-a {
  left: 66%;
  top: 146px;
}
.service-page.hero-variant-residential .interior-top {
  background:
    radial-gradient(circle at 15% 24%, rgba(223, 122, 87, 0.11), transparent 23%),
    linear-gradient(90deg, rgba(252, 248, 242, 0.96) 0%, rgba(252, 248, 242, 0.5) 44%, rgba(252, 248, 242, 0) 74%);
}
.service-page.hero-variant-residential .hero-distance-beam-a {
  top: 54px;
  left: 4%;
  width: 94px;
  height: 280px;
  transform: rotate(-10deg);
}
.service-page.hero-variant-residential .hero-distance-beam-b {
  top: 20px;
  left: 22%;
  width: 92px;
  height: 220px;
}
.service-page.hero-variant-residential .hero-distance-orbit-a {
  top: 126px;
  left: 9%;
  width: 220px;
  height: 220px;
}
.service-page.hero-variant-residential .hero-distance-dot-a {
  left: 56%;
  top: 116px;
}
.service-page.hero-variant-commercial .interior-top {
  background:
    radial-gradient(circle at 20% 20%, rgba(67, 112, 151, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(247, 244, 238, 0.96) 0%, rgba(247, 244, 238, 0.46) 40%, rgba(247, 244, 238, 0) 72%);
}
.service-page.hero-variant-commercial .hero-distance-beam-a {
  left: 2%;
  width: 80px;
  height: 360px;
  background: linear-gradient(180deg, rgba(22, 50, 79, 0.1), rgba(22, 50, 79, 0));
  transform: rotate(0deg);
}
.service-page.hero-variant-commercial .hero-distance-beam-b {
  left: 18%;
  width: 54px;
  height: 320px;
  background: linear-gradient(180deg, rgba(223, 122, 87, 0.08), rgba(223, 122, 87, 0));
  transform: rotate(0deg);
}
.service-page.hero-variant-commercial .hero-distance-orbit-a {
  top: 96px;
  left: 24%;
  width: 220px;
  height: 220px;
  border-radius: 34px;
}
.service-page.hero-variant-commercial .hero-distance-orbit-b {
  top: 86px;
  left: 6%;
  width: 88px;
  height: 88px;
  border-radius: 24px;
}
.service-page.hero-variant-commercial .hero-distance-dot-a {
  left: 52%;
  top: 82px;
}
.service-page.hero-variant-piano .interior-top {
  background:
    radial-gradient(circle at 16% 22%, rgba(223, 122, 87, 0.1), transparent 22%),
    linear-gradient(90deg, rgba(249, 244, 238, 0.96) 0%, rgba(249, 244, 238, 0.48) 44%, rgba(249, 244, 238, 0) 74%);
}
.service-page.hero-variant-piano .hero-distance-beam-a {
  left: -4%;
  width: 210px;
  height: 430px;
}
.service-page.hero-variant-piano .hero-distance-orbit-a {
  top: 84px;
  left: 4%;
  width: 300px;
  height: 300px;
}
.service-page.hero-variant-piano .hero-distance-orbit-b {
  top: 118px;
  left: 30%;
  width: 140px;
  height: 140px;
}
.service-page.hero-variant-billiard .interior-top {
  background:
    radial-gradient(circle at 15% 20%, rgba(67, 112, 151, 0.1), transparent 22%),
    linear-gradient(90deg, rgba(248, 245, 239, 0.96) 0%, rgba(248, 245, 239, 0.48) 44%, rgba(248, 245, 239, 0) 74%);
}
.service-page.hero-variant-billiard .hero-distance-beam-a {
  left: 4%;
  width: 64px;
  height: 320px;
  transform: rotate(-3deg);
}
.service-page.hero-variant-billiard .hero-distance-beam-b {
  left: 23%;
  width: 64px;
  height: 280px;
  transform: rotate(8deg);
}
.service-page.hero-variant-billiard .hero-distance-orbit-a {
  top: 126px;
  left: 12%;
  width: 170px;
  height: 170px;
}
.service-page.hero-variant-billiard .hero-distance-orbit-b {
  top: 88px;
  left: 32%;
  width: 126px;
  height: 126px;
}
.service-page.hero-variant-billiard .hero-distance-dot-a {
  left: 46%;
  top: 154px;
}
.service-page.hero-variant-storage .interior-top {
  background:
    radial-gradient(circle at 14% 22%, rgba(223, 122, 87, 0.11), transparent 22%),
    linear-gradient(90deg, rgba(249, 245, 239, 0.96) 0%, rgba(249, 245, 239, 0.5) 44%, rgba(249, 245, 239, 0) 74%);
}
.service-page.hero-variant-storage .hero-distance-beam-a {
  left: 0;
  width: 120px;
  height: 340px;
  transform: rotate(-8deg);
}
.service-page.hero-variant-storage .hero-distance-beam-b {
  left: 17%;
  width: 92px;
  height: 250px;
  transform: rotate(-6deg);
}
.service-page.hero-variant-storage .hero-distance-orbit-a {
  top: 118px;
  left: 9%;
  width: 210px;
  height: 210px;
  border-radius: 26px;
}
.service-page.hero-variant-storage .hero-distance-orbit-b {
  top: 90px;
  left: 33%;
  width: 92px;
  height: 92px;
  border-radius: 20px;
}
.service-page.hero-variant-storage .hero-distance-dot-b {
  left: 26%;
}
.service-page.hero-variant-pricing .interior-top {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 14%, rgba(223, 122, 87, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(250, 245, 238, 0.96) 0%, rgba(250, 245, 238, 0.56) 46%, rgba(250, 245, 238, 0.18) 100%);
}
.service-page.hero-variant-pricing .hero-distance-atmosphere {
  inset: 0 0 42px 0;
}
.service-page.hero-variant-pricing .interior-top-copy {
  padding-right: 0;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}
.service-page.hero-variant-pricing .interior-top-copy h1 {
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
}
.service-page.hero-variant-pricing .hero-pricing-title-main,
.service-page.hero-variant-pricing .hero-pricing-title-sub {
  display: block;
}
.service-page.hero-variant-pricing .hero-pricing-title-main {
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--text);
  font-weight: 900;
}
.service-page.hero-variant-pricing .hero-pricing-title-sub {
  margin-top: 0.42em;
  font-size: 0.43em;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text);
  font-weight: 800;
}
.service-page.hero-variant-pricing .interior-top-copy .lead {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}
.service-page.hero-variant-pricing .hero-pricing-disclaimer {
  max-width: 52rem;
  margin: 10px auto 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--muted);
}
.service-page.hero-variant-pricing .hero-pricing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.service-page.hero-variant-pricing .interior-top-form {
  display: none;
}
.service-page.hero-variant-pricing .hero-distance-dot {
  display: none;
}
.service-page.hero-variant-pricing .hero-pricing-cta {
  margin-top: 22px;
}
.service-page.hero-variant-pricing .hero-distance-beam-a {
  top: 24px;
  left: 16%;
  width: 120px;
  height: 360px;
  transform: rotate(-12deg);
}
.service-page.hero-variant-pricing .hero-distance-beam-b {
  top: 12px;
  left: auto;
  right: 18%;
  width: 120px;
  height: 320px;
  transform: rotate(12deg);
}
.service-page.hero-variant-pricing .hero-distance-orbit-a {
  top: 90px;
  left: 12%;
  width: 240px;
  height: 240px;
}
.service-page.hero-variant-pricing .hero-distance-orbit-b {
  top: 76px;
  left: auto;
  right: 14%;
  width: 180px;
  height: 180px;
}
.service-page.hero-variant-pricing .hero-distance-dot-a {
  top: 126px;
  left: 50%;
  transform: translateX(-50%);
}
.service-page.hero-variant-pricing .hero-distance-dot-b {
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
}
.route-planner-section {
  padding-bottom: 72px;
}
.route-selector-shell {
  position: relative;
  z-index: 30;
  margin-bottom: 28px;
}
.route-calculator-panel {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 244, 238, 0.72)),
    var(--cream-2);
  box-shadow: 0 24px 60px rgba(var(--navy-rgb), 0.09), 0 4px 12px rgba(var(--navy-rgb), 0.04);
}
.route-calculator-intro {
  display: grid;
  gap: 6px;
  justify-items: start;
  text-align: left;
  padding: 6px 28px 0;
}
.route-calculator-intro h2 {
  margin: 0;
  max-width: none;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.18vw, 2.24rem);
  line-height: 0.95;
  white-space: nowrap;
}
.route-calculator-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(360px, 0.98fr);
  gap: 18px;
  align-items: start;
}
.route-selector-placeholder {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}
.route-selector-placeholder h2 {
  margin: 6px 0 0;
  max-width: 18ch;
}
.route-selector-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  gap: 14px;
  align-items: end;
  width: min(100%, 760px);
  min-width: 0;
  padding: 20px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(var(--navy-rgb), 0.1);
  box-shadow: 0 16px 34px rgba(var(--navy-rgb), 0.08);
}
.route-selector-form.route-selector-form-wide {
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  align-self: start;
  width: 100%;
  min-width: 0;
  padding: 26px 28px;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(247, 244, 238, 0.42));
  border-color: rgba(var(--navy-rgb), 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 6px 20px rgba(var(--navy-rgb), 0.04);
}
.route-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.route-selector-form .route-field {
  display: grid;
  gap: 8px;
}
.route-combobox {
  position: relative;
}
.route-combobox-value {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.route-selector-form .route-field span {
  min-height: 1.35em;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(var(--navy-rgb), 0.78);
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.route-combobox-input,
.route-selector-form select,
.route-home-type-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(var(--navy-rgb), 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 238, 0.96)),
    var(--cream-2);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(var(--navy-rgb), 0.05);
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brick) 50%),
    linear-gradient(135deg, var(--brick) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 238, 0.96));
  background-position:
    calc(100% - 23px) 26px,
    calc(100% - 16px) 26px,
    0 0;
  background-size:
    7px 7px,
    7px 7px,
    100% 100%;
  background-repeat: no-repeat;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.route-combobox-input::placeholder {
  color: rgba(var(--navy-rgb), 0.55);
}
.route-combobox-input {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 238, 0.96));
  background-position: 0 0;
  background-size: 100% 100%;
}
.route-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.8;
  filter: sepia(1) saturate(2) hue-rotate(-10deg);
}
.route-calc-submit {
  justify-self: start;
  width: auto;
  margin-top: 6px;
}
.route-calc-submit > span {
  min-width: 240px;
}
.route-selector-form select option,
.route-home-type-field select option {
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
}
.route-combobox-input:focus,
.route-selector-form select:focus,
.route-home-type-field select:focus {
  border-color: rgba(223, 122, 87, 0.52);
}
.route-combobox-input:focus {
  outline: none;
}
.route-combobox-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brick);
  cursor: pointer;
  transform: translateY(-50%);
}
.route-combobox-toggle svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.route-combobox-panel {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  z-index: 20;
  padding: 12px 0 0;
  border-radius: 0 0 18px 18px;
  border: 1px solid rgba(var(--navy-rgb), 0.12);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 238, 0.96)),
    var(--cream-2);
  box-shadow: 0 18px 40px rgba(var(--navy-rgb), 0.14);
}
.route-combobox-list {
  display: grid;
  gap: 0;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--navy-rgb), 0.28) transparent;
}
.route-combobox-list::-webkit-scrollbar {
  width: 10px;
}
.route-combobox-list::-webkit-scrollbar-track {
  margin: 8px 0 0;
  background: transparent;
}
.route-combobox-list::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(var(--navy-rgb), 0.28);
  background-clip: content-box;
}
.route-combobox-option,
.route-combobox-empty {
  width: 100%;
  padding: 12px 18px;
  border-radius: 0;
  font-family: "Archivo", sans-serif;
  font-size: 0.98rem;
  line-height: 1.2;
}
.route-combobox-option {
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}
.route-combobox-option-meta {
  padding-left: 16px;
  color: rgba(var(--navy-rgb), 0.58);
  font-size: 0.78rem;
  font-weight: 700;
}
.route-combobox-option:hover,
.route-combobox-option:focus-visible,
.route-combobox-option.is-active {
  background: rgba(223, 122, 87, 0.12);
  color: var(--navy);
  outline: none;
}
.route-combobox-option.is-active {
  box-shadow: inset 0 0 0 1px rgba(223, 122, 87, 0.28);
}
.route-combobox-empty {
  color: var(--muted);
  font-weight: 600;
}
.route-combobox.is-open .route-combobox-input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: rgba(223, 122, 87, 0.52);
  box-shadow: 0 14px 28px rgba(var(--navy-rgb), 0.08);
}
.route-combobox.is-open .route-combobox-panel {
  border-color: rgba(223, 122, 87, 0.52);
  box-shadow: 0 18px 40px rgba(var(--navy-rgb), 0.14);
}
.route-combobox.is-open .route-combobox-toggle {
  transform: translateY(-50%) rotate(180deg);
}
.route-direction-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  color: var(--brick);
  transform: translateY(-13px);
}
.route-direction-mark svg {
  display: block;
  width: 30px;
  height: 30px;
  overflow: visible;
}
.route-selector-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}
.route-planner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.route-planner-grid.route-planner-grid-map-only {
  grid-template-columns: 1fr;
}
.route-placeholder-card {
  min-height: 396px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(var(--navy-rgb), 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    var(--cream-2);
  box-shadow: 0 20px 50px rgba(var(--navy-rgb), 0.07), 0 2px 8px rgba(var(--navy-rgb), 0.04);
}
.route-map-placeholder {
  padding: 0;
  overflow: hidden;
}
.route-map-placeholder.route-map-placeholder-wide {
  width: 100%;
}
.route-insight-card {
  min-height: 0;
  padding: 32px;
}
.route-insight-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.route-insight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 50, 79, 0.04), rgba(22, 50, 79, 0.08));
}
.route-insight-image {
  width: min(260px, 100%);
  height: auto;
  display: block;
}
.route-insight-copy {
  display: grid;
  gap: 14px;
}
.route-insight-copy h3 {
  margin: 0;
}
.route-insight-copy p {
  margin: 0;
}
.route-insight-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.route-insight-points li {
  position: relative;
  padding-left: 18px;
  color: var(--navy);
}
.route-insight-points li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brick);
  box-shadow: 0 0 0 4px rgba(201, 79, 61, 0.12);
}
.route-map-frame {
  position: relative;
  z-index: 1;
  min-height: 396px;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 24%, rgba(201, 79, 61, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(247, 244, 238, 0.9), rgba(247, 244, 238, 0.7)),
    var(--cream-2);
}
.route-map-canvas {
  width: 100%;
  min-height: 396px;
  height: 100%;
}
.route-map-canvas .leaflet-container {
  width: 100%;
  height: 100%;
  background: rgba(247, 244, 238, 0.72);
}
.route-map-pin-wrap {
  background: transparent;
  border: 0;
}
.route-map-pin {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--navy);
  border: 2px solid rgba(247, 244, 238, 0.95);
  box-shadow: 0 8px 18px rgba(var(--navy-rgb), 0.24);
  transform: rotate(-45deg);
}
.route-map-pin-to {
  background: var(--brick);
}
.route-map-pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.92);
}
.route-map-tooltip {
  padding: 8px 10px;
  border: 1px solid rgba(var(--navy-rgb), 0.12);
  border-radius: 12px;
  background: var(--cream-2);
  box-shadow: 0 10px 22px rgba(var(--navy-rgb), 0.14);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
}
.route-map-tooltip::before {
  display: none;
}
.leaflet-tooltip-top.route-map-tooltip::before {
  border-top-color: var(--cream-2);
}
.route-map-canvas .leaflet-control-zoom {
  border: 0;
  box-shadow: 0 10px 22px rgba(var(--navy-rgb), 0.14);
}
.route-map-canvas .leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  border: 0;
  color: var(--navy);
  background: rgba(247, 244, 238, 0.94);
}
.route-map-canvas .leaflet-control-zoom a:hover {
  background: rgba(247, 244, 238, 1);
  color: var(--brick);
}
.route-map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(22, 50, 79, 0.04), rgba(22, 50, 79, 0.12)),
    radial-gradient(circle at 20% 24%, rgba(201, 79, 61, 0.12), transparent 18%);
}
.route-map-fallback.is-hidden {
  display: none;
}
.route-placeholder-label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brick);
}
.route-placeholder-card h3 {
  margin: 0 0 10px;
}
.route-placeholder-card p:last-child {
  margin-bottom: 0;
}
.route-map-placeholder {
  display: block;
}
.route-info-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.route-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(var(--navy-rgb), 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 244, 238, 0.52));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 8px 24px rgba(var(--navy-rgb), 0.05);
}
.route-info-copy {
  margin: 0 0 18px;
  max-width: 54ch;
}
.route-info-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}
.route-info-stats div {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(var(--navy-rgb), 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(var(--navy-rgb), 0.03);
}
.route-info-stats dt {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brick);
}
.route-info-stats dd {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.route-price-header {
  margin: 0 0 10px;
}
.route-price-eyebrow {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brick);
}
.route-price-note {
  margin: 0;
  color: var(--muted);
}
.route-price-controls {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  margin-bottom: 14px;
  border: 1px solid rgba(var(--navy-rgb), 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(var(--navy-rgb), 0.06);
}
.route-price-controls.route-price-controls-static {
  grid-template-columns: 1fr;
  margin-bottom: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.route-home-type-field {
  margin-bottom: 0;
  max-width: none;
  padding: 14px 16px;
}
.route-home-type-field select {
  min-height: 58px;
}
.route-price-display {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-left: 1px solid rgba(var(--navy-rgb), 0.08);
  text-align: center;
}
.route-price-controls.route-price-controls-static .route-price-display {
  justify-items: start;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(var(--navy-rgb), 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(247, 244, 238, 0.6));
  text-align: left;
  box-shadow: 0 4px 14px rgba(var(--navy-rgb), 0.05);
}
.route-price-display span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brick);
}
.route-price-result {
  display: grid;
  gap: 12px;
}
.route-price-range {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--brick);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.route-price-copy {
  margin: 0;
  color: var(--navy);
  line-height: 1.55;
}
.route-copy-highlight {
  font-weight: 800;
  color: var(--brick);
}
.route-copy-subline {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}
.route-price-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}
.route-price-cta {
  justify-self: stretch;
}
.route-price-cta-secondary {
  min-height: 52px;
}
.route-price-actions .button {
  width: 100%;
}
.service-page .mini-quote-card {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-bottom: 44px;
  padding: 22px 20px 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, var(--navy) 0%, var(--navy) 100%);
  border: 2px solid rgba(223, 122, 87, 0.78);
  box-shadow: 0 24px 46px rgba(22, 50, 79, 0.22);
  color: #f7f4ee;
}
.service-page .mini-quote-card .eyebrow {
  margin-bottom: 8px;
  color: rgba(247, 244, 238, 0.74);
}
.service-page .mini-quote-card h2 {
  margin: 0 0 8px;
  font-size: 1.28rem;
  line-height: 1.08;
  color: #fff;
}
.service-page .mini-quote-card p {
  margin: 0 0 14px;
  color: rgba(247, 244, 238, 0.82);
  line-height: 1.55;
}
.service-page .mini-quote-card .quote-form {
  gap: 12px;
}
.service-page .mini-quote-card .quote-form-footer {
  align-items: flex-start;
  gap: 10px;
}
.service-page .mini-quote-card .form-note {
  max-width: none;
  text-align: left;
  font-size: 0.92rem;
}
.service-page .mini-quote-card .button {
  min-height: 46px;
}
.service-page .mini-quote-card .field-grid-two {
  grid-template-columns: 1fr 1fr;
}
.service-page .mini-quote-card label span {
  font-size: 0.92rem;
  color: rgba(247, 244, 238, 0.9);
}
.service-page .mini-quote-card input,
.service-page .mini-quote-card textarea,
.service-page .mini-quote-card select {
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(243, 162, 119, 0.24);
  color: var(--navy);
}
.service-page .mini-quote-card textarea {
  min-height: 108px;
}
.service-page .mini-quote-card input::placeholder,
.service-page .mini-quote-card textarea::placeholder {
  color: rgba(22, 50, 79, 0.52);
}

.service-page .mini-quote-card select:required:invalid {
  color: rgba(22, 50, 79, 0.52);
}
.service-page .mini-quote-card .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.service-page .mini-quote-card .form-proof-bar {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -28px;
  width: max-content;
  max-width: none;
  transform: translateX(-50%);
  gap: 16px;
  padding: 12px 16px;
  background: var(--navy);
  border: 2px solid var(--brick);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(22, 50, 79, 0.18);
}
.service-page .mini-quote-card .service-proof-bar {
  bottom: -34px;
  left: 72%;
  gap: 8px;
  padding: 10px 12px;
  max-width: calc(100% - 56px);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  background: var(--cream-2);
  border: 2px solid rgba(223, 122, 87, 0.78);
  box-shadow: 0 12px 24px rgba(22, 50, 79, 0.12);
  color: var(--navy);
  transform: translateX(-50%);
}
.service-page .mini-quote-card .service-proof-bar p,
.service-page .mini-quote-card .service-proof-bar strong {
  color: var(--navy);
}
.service-page .mini-quote-card .service-proof-bar p {
  font-size: 0.92rem;
  line-height: 1.1;
  text-align: center;
  display: block;
  margin: 0;
  white-space: nowrap;
}
.service-page .mini-quote-card .service-proof-bar strong {
  font-size: 1em;
  font-weight: 900;
}
.service-page .mini-quote-card .service-proof-bar .google-wordmark,
.service-page .mini-quote-card .service-proof-bar .google-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  font-size: 1em;
}
.service-page .mini-quote-card .service-proof-bar .google-wordmark {
  letter-spacing: -0.04em;
}
.service-page .mini-quote-card .service-proof-bar .google-lockup .google-text {
  color: var(--navy);
  font-weight: 700;
}
.service-page .mini-quote-card .service-proof-bar .google-g {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}
.service-page .mini-quote-card .service-proof-bar .g-blue { color: #4285f4; }
.service-page .mini-quote-card .service-proof-bar .g-red { color: #ea4335; }
.service-page .mini-quote-card .service-proof-bar .g-yellow { color: #fbbc05; }
.service-page .mini-quote-card .service-proof-bar .g-green { color: #34a853; }
.service-page .mini-quote-card .service-proof-bar .proof-avatars .avatar {
  width: 24px;
  height: 24px;
  margin-left: -5px;
  border: 2px solid #fff;
}
.service-page .mini-quote-card .service-proof-bar .proof-stars {
  gap: 0;
}
.service-page .mini-quote-card .service-proof-bar .proof-stars svg {
  width: 10px;
  height: 10px;
}
.service-page .mini-quote-card .form-proof-bar-dark.service-proof-bar {
  background: var(--cream-2);
  border: 2px solid rgba(223, 122, 87, 0.78);
}
.service-page .section-intro.service-links-intro {
  padding-top: 96px;
  padding-bottom: var(--space-6);
}
.service-page .service-link-grid {
  padding-bottom: 72px;
}
.service-page .service-link-grid .mini-card {
  opacity: 1 !important;
  visibility: visible;
  transform: none !important;
}
.service-page .service-promise-band {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 72px 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(223, 122, 87, 0.2), transparent 18%),
    linear-gradient(145deg, var(--navy) 0%, var(--navy) 100%);
}
.service-page .service-promise-shell {
  width: min(var(--content), calc(100% - 112px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: var(--space-6);
  padding: 0;
  align-items: center;
}
.service-page .service-promise-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-page .service-promise-copy .section-intro {
  width: 100%;
  padding: 0;
}
.service-page .service-promise-copy h2,
.service-page .service-promise-copy p,
.service-page .service-promise-copy .eyebrow,
.service-page .service-promise-points li {
  color: var(--cream);
}
.service-page .service-promise-copy .eyebrow {
  color: #e7b6ae;
  margin-bottom: 18px;
}
.service-page .service-promise-copy > p {
  margin: 0;
  max-width: 52ch;
  line-height: 1.72;
}
.service-page .service-promise-copy .section-intro p {
  margin: 1em 0 0;
  max-width: 64ch;
  line-height: 1.72;
}
.service-page .service-promise-copy .section-intro h2 {
  max-width: 18ch;
}
.service-page .service-promise-highlight {
  color: #f3a277;
  font-weight: 800;
}
.service-page .service-promise-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: center;
}
.service-page .service-promise-points li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.service-page .service-promise-points li::before {
  content: "";
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #df7a57, #f3a277);
  box-shadow: 0 0 0 4px rgba(223, 122, 87, 0.16);
}
.service-page .service-promise-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-page .service-promise-image {
  width: min(100%, 660px);
  aspect-ratio: 1 / 1;
  border-radius: 0;
  padding: 0;
  display: block;
  object-fit: contain;
  transform: translateX(28px);
  background: transparent;
  border: 0;
  box-shadow: none;
}
.service-page .areas-section + .services-bottom-form,
.service-page .service-link-grid + .section-intro.narrow {
  padding-top: 84px;
}
.service-page .service-promise-band + .section-intro.narrow {
  padding-top: var(--section-space);
}
.service-page .service-promise-band.service-promise-band-inline {
  padding: 48px 0;
}
.service-page .service-promise-band.service-promise-band-inline .service-promise-shell {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}
.service-page .service-promise-band.service-promise-band-inline .service-promise-visual {
  order: 0;
  justify-content: flex-start;
}
.service-page .service-promise-band.service-promise-band-inline .service-promise-image {
  transform: translateX(-112px);
}
.service-page .service-promise-band.service-promise-band-inline .service-promise-copy {
  order: 1;
}
.service-page .service-promise-band[hidden] {
  display: none;
}
.service-page .service-link-grid .mini-card h3 {
  margin-top: 0;
}
.service-page .areas-section,
.service-page .services-bottom-form,
.service-page .faq-section {
  padding-bottom: var(--section-space);
}
@media (max-width: 960px) {
  .service-page .interior-top {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .service-page.service-hero-page .interior-top {
    width: calc(100vw + 2px);
    margin-left: calc(50% - 50vw - 1px);
    margin-right: calc(50% - 50vw - 1px);
    margin-top: -92px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 156px;
    padding-bottom: 76px;
  }
  .service-page .interior-top-copy {
    padding-right: 0;
    text-align: center;
  }
  .service-page.service-hero-page .interior-top-copy {
    margin-top: 0;
  }
  .service-page .interior-top-copy .eyebrow {
    margin-bottom: 10px;
  }
  .service-page .interior-top-copy h1 {
    max-width: none;
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-wrap: pretty;
  }
  .service-page .interior-top-copy .service-title-lockup {
    white-space: normal;
  }
  .service-page .interior-top-copy .lead {
    font-size: 1.02rem;
    line-height: 1.58;
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
  }
  .service-hero-actions {
    margin-top: 20px;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .service-hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    text-align: center;
    justify-content: center;
  }
  .service-hero-actions .button-primary > span {
    padding-inline: 14px;
    white-space: nowrap;
    font-size: 0.88rem;
  }
  .service-hero-actions .button-secondary {
    padding-inline: 14px;
    white-space: nowrap;
    font-size: 0.88rem;
  }
  .service-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    justify-content: stretch;
    margin-top: 18px;
    gap: 8px;
  }
  .service-hero-stats li {
    min-width: 0;
    padding: 10px 8px;
    align-items: center;
    text-align: center;
  }
  .service-hero-stats strong {
    font-size: 1.3rem;
  }
  .service-hero-stats span {
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    text-transform: none;
  }
  .service-page.service-hero-page .hero-distance-atmosphere {
    inset: 34px 6% 150px 0;
  }
  .service-page.service-hero-page .hero-distance-beam-a {
    left: -12%;
    width: 120px;
    height: 260px;
  }
  .service-page.service-hero-page .hero-distance-beam-b {
    top: 30px;
    left: 46%;
    width: 72px;
    height: 170px;
  }
  .service-page.service-hero-page .hero-distance-orbit-a {
    top: 88px;
    left: 4%;
    width: 180px;
    height: 180px;
  }
  .service-page.service-hero-page .hero-distance-orbit-b {
    top: 118px;
    left: 48%;
    width: 74px;
    height: 74px;
  }
  .service-page.service-hero-page .hero-distance-dot-a {
    top: 116px;
    left: 72%;
  }
  .service-page.service-hero-page .hero-distance-dot-b {
    bottom: 22px;
    left: 10%;
  }
  .service-page.hero-variant-pricing .interior-top-copy {
    width: min(640px, 100%);
  }
  .service-page.hero-variant-pricing .hero-pricing-cta {
    width: 100%;
    max-width: 360px;
    margin-top: 18px;
  }
  .service-page.hero-variant-pricing .hero-pricing-actions {
    width: 100%;
    max-width: 360px;
    margin: 18px auto 0;
    gap: 12px;
  }
  .service-page.hero-variant-pricing .hero-pricing-cta-secondary {
    width: 100%;
  }
  .service-page.hero-variant-pricing .hero-distance-atmosphere {
    inset: 18px 0 34px 0;
  }
  .service-page.hero-variant-pricing .hero-distance-beam-a {
    left: 4%;
    width: 82px;
    height: 220px;
  }
  .service-page.hero-variant-pricing .hero-distance-beam-b {
    right: 4%;
    width: 82px;
    height: 220px;
  }
  .service-page.hero-variant-pricing .hero-distance-orbit-a {
    top: 98px;
    left: -4%;
    width: 150px;
    height: 150px;
  }
  .service-page.hero-variant-pricing .hero-distance-orbit-b {
    top: 92px;
    right: -2%;
    width: 120px;
    height: 120px;
  }
  .route-selector-placeholder {
    justify-items: stretch;
  }
  .route-calculator-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .route-selector-form {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
    padding: 18px 16px;
  }
  .route-selector-form.route-selector-form-wide {
    padding: 18px 16px;
  }
  .route-selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .route-calc-submit {
    width: 100%;
  }
  .route-price-actions {
    grid-template-columns: 1fr;
  }
  .route-direction-mark {
    min-width: 0;
    justify-content: center;
    padding-left: 0;
  }
  .route-direction-mark span {
    width: 48px;
  }
  .route-planner-grid {
    grid-template-columns: 1fr;
  }
  .route-placeholder-card {
    min-height: 240px;
    padding: 22px;
  }
  .route-insight-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .route-insight-card {
    padding: 24px 22px;
  }
  .route-map-frame,
  .route-map-canvas {
    min-height: 260px;
  }
  .service-page .mini-quote-card {
    max-width: none;
    margin-left: 0;
    margin-bottom: 42px;
    padding: 16px 14px 14px;
    border-radius: 22px;
  }
  .service-page .mini-quote-card .form-proof-bar {
    display: none;
  }
  .service-page .service-proof-bar {
    max-width: calc(100% - 24px);
    padding: 8px 10px;
  }
  .service-page .service-proof-bar p {
    font-size: 0.78rem;
  }
  .service-page .mini-quote-card .eyebrow {
    margin-bottom: 6px;
  }
  .service-page .mini-quote-card h2 {
    font-size: 1.12rem;
  }
  .service-page .mini-quote-card p {
    margin-bottom: 12px;
    font-size: 0.96rem;
  }
  .service-page .mini-quote-card .field-grid-two {
    grid-template-columns: 1fr;
  }
  .service-page .mini-quote-card .quote-form {
    gap: 10px;
  }
  .service-page .mini-quote-card .quote-form-footer,
  .service-page .mini-quote-card .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .service-page .mini-quote-card .button,
  .service-page .mini-quote-card .button-primary,
  .service-page .mini-quote-card .button-secondary {
    width: 100%;
  }
  .service-page .mini-quote-card .button-primary {
    min-width: 0;
  }
  .service-page .service-promise-band {
    padding: 36px 0;
  }
  .service-page .service-promise-band.service-promise-band-inline {
    padding: 28px 0;
  }
  .service-page .service-promise-shell {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }
  .service-page .service-promise-visual {
    justify-content: center;
  }
  .service-page .service-promise-band.service-promise-band-inline .service-promise-shell {
    grid-template-columns: 1fr;
  }
  .service-page .service-promise-band.service-promise-band-inline .service-promise-visual,
  .service-page .service-promise-band.service-promise-band-inline .service-promise-copy {
    order: initial;
  }
  .service-page .service-promise-band.service-promise-band-inline .service-promise-image {
    transform: translateX(0);
  }
  .service-page .service-promise-image {
    width: min(100%, 420px);
    margin: 0 auto;
    transform: none;
  }
}
@media (max-width: 720px) {
  .route-selector-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ADDITIONS: Icons, Advantage Section, Hero Deco, Animations
   ============================================================ */

/* Staggered reveal-up delay support */
.reveal-up {
  transition-delay: var(--delay, 0ms);
}

/* Hero decorative elements */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-deco-ring {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.7;
  animation: hero-ring-spin 32s linear infinite;
}
.hero-deco-dots {
  position: absolute;
  left: 2%;
  bottom: 18%;
  width: 100px;
  height: 100px;
  opacity: 0.8;
  animation: hero-dots-float 8s ease-in-out infinite alternate;
}
@keyframes hero-ring-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes hero-dots-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}
.hero-copy { position: relative; z-index: 1; }

/* Mini-card icon overlay */
.mini-card-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: rgba(255, 253, 248, 0.92);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(22, 50, 79, 0.12);
  border: 1px solid rgba(22, 50, 79, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.mini-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brick);
}
@media (hover: hover) and (pointer: fine) {
  .mini-card:hover .mini-card-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 6px 18px rgba(22, 50, 79, 0.16);
  }
}
.mini-card-img {
  position: relative;
}

/* Step icon SVG styles */
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brick) 0%, #f3a277 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(223, 122, 87, 0.28);
  flex-shrink: 0;
}
.step-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

/* Advantage section */
.advantage-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.advantage-card {
  background: var(--cream-2);
  border-radius: 20px;
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border: 1px solid rgba(22, 50, 79, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(22, 50, 79, 0.1);
}
.advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(223, 122, 87, 0.14) 0%, rgba(243, 162, 119, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.advantage-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brick);
}
.advantage-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.advantage-card p {
  margin: 0;
  font-size: 0.93rem;
  color: #4f5b65;
  line-height: 1.65;
}
@media (max-width: 1100px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }
}

/* Areas list point icons */
.areas-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(223, 122, 87, 0.12);
  flex-shrink: 0;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.areas-point-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--brick);
}
.areas-points li {
  display: flex;
  align-items: center;
}

/* Comparison head logo icon */
.comparison-head-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.comparison-head-logo svg {
  width: 18px;
  height: 18px;
  stroke: var(--brick);
}

/* FAQ icon on summary */
.faq-list summary {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.faq-summary-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(223, 122, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.faq-summary-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--brick);
  transition: transform 0.25s var(--ease-out);
}
details[open] .faq-summary-icon {
  background: rgba(223, 122, 87, 0.18);
}
details[open] .faq-summary-icon svg {
  transform: rotate(45deg);
}

/* Google reviews section */
.google-review-card {
  background: var(--cream-2);
  border-radius: 18px;
  padding: var(--space-5);
  border: 1px solid rgba(22, 50, 79, 0.07);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .google-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(22, 50, 79, 0.09);
  }
}
.google-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.google-review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.google-review-person strong {
  display: block;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.95rem;
}
.google-review-person span {
  display: block;
  font-size: 0.8rem;
  color: #6b7a88;
}
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.google-reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: start;
}
.google-rating-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-end;
  text-align: right;
}
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.google-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4285f4;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.google-rating-badge strong {
  display: block;
  font-weight: 800;
  color: var(--navy);
}
.google-rating-badge p {
  margin: 0;
  font-size: 0.88rem;
  color: #4f5b65;
}
.google-stars {
  color: #f2a33b;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.google-rating-panel [data-google-rating-copy] {
  margin: 0;
  font-size: 0.88rem;
  color: #4f5b65;
  max-width: 28ch;
}
@media (max-width: 1100px) {
  .google-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .google-reviews-header {
    grid-template-columns: 1fr;
  }
  .google-rating-panel {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 720px) {
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ADDITIONAL POLISH: Stat card pop-in, service page enhancements
   ============================================================ */

/* Stat card pop-in when counted */
.showcase-card-stat strong {
  display: block;
  transition: transform 0.35s var(--ease-out);
}
.showcase-card-stat strong.stat-counted {
  animation: stat-pop 0.4s var(--ease-out) both;
}
@keyframes stat-pop {
  0%   { transform: scale(0.88); opacity: 0; }
  60%  { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Service page advantage section (reuse homepage styles) */
.service-page .advantage-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

/* Areas list — ensure icon + text alignment */
.areas-points li {
  gap: 0;
}

/* Floating nav brand icon */
.brand svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  width: 18px;
  height: 18px;
  stroke: var(--brick);
  flex-shrink: 0;
}

/* Step card visual alignment fix */
.step-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: var(--space-3);
}

/* Smooth FAQ open/close */
.faq-list details summary {
  list-style: none;
  user-select: none;
}
.faq-list details summary::-webkit-details-marker {
  display: none;
}
.faq-list details[open] {
  border-left-color: var(--brick);
}

/* Mini-card image container needs relative positioning for the icon overlay */
.mini-card-img {
  position: relative;
  overflow: hidden;
}

/* Google review card paragraph */
.google-review-card > p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #4f5b65;
  font-style: italic;
}

/* Hero deco hidden on mobile */
@media (max-width: 720px) {
  .hero-deco {
    display: none;
  }
}

/* Advantage grid responsive for service pages */
@media (max-width: 960px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   PRICING PAGE STYLES
   ============================================================ */

/* Hero variant for pricing page */
.interior-top.hero-variant-pricing {
  position: relative;
  overflow: hidden;
}
.hero-deco-pricing {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.pricing-deco-calc {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  opacity: 0.6;
  animation: pricing-calc-float 6s ease-in-out infinite alternate;
}
@keyframes pricing-calc-float {
  from { transform: translateY(-50%) rotateZ(-3deg); }
  to   { transform: translateY(-50%) rotateZ(3deg); }
}
.interior-top-copy {
  position: relative;
  z-index: 1;
}

/* Pricing Calculator Section */
.pricing-calculator-section {
  padding-top: clamp(10px, 2vw, 22px);
  padding-bottom: clamp(12px, 2vw, 28px);
}
.pricing-calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}

/* Calculator Form Panel */
.pricing-calc-form-panel {
  background: var(--cream-2);
  border-radius: 24px;
  padding: var(--space-6);
  border: 1px solid rgba(22, 50, 79, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-calc-header {
  margin-bottom: var(--space-5);
}
.pricing-calc-header h2 {
  margin: 0 0 var(--space-2) 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
}
.pricing-calc-header p {
  margin: 0;
  font-size: 0.95rem;
  color: #4f5b65;
  line-height: 1.6;
}

/* Form Fieldsets */
.pricing-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 var(--space-4) 0;
}
.pricing-legend {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7a88;
  margin-bottom: var(--space-2);
  display: block;
}

/* Form Fields */
.pricing-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.pricing-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.pricing-field-row-checkboxes {
  margin-top: var(--space-1);
}
.pricing-checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 50, 79, 0.15);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
}
.pricing-field.is-disabled,
.pricing-checkbox-field.is-disabled {
  opacity: 0.48;
}
.pricing-field.is-disabled select,
.pricing-checkbox-field.is-disabled {
  background: rgba(22, 50, 79, 0.05);
  border-color: rgba(22, 50, 79, 0.08);
}
.pricing-checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brick);
  flex: 0 0 auto;
}
.pricing-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.pricing-field input,
.pricing-field select {
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(22, 50, 79, 0.15);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--navy);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-field input:focus,
.pricing-field select:focus {
  outline: none;
  border-color: var(--brick);
  box-shadow: 0 0 0 3px rgba(223, 122, 87, 0.12);
}
.pricing-field input::placeholder {
  color: #9ca3af;
}

/* Submit Button */
.pricing-calc-btn {
  width: auto;
  min-width: 0;
}
.pricing-calc-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
.pricing-calc-btn-secondary {
  justify-content: center;
}

/* Results Panel */
.pricing-results-panel {
  background: linear-gradient(135deg, #fff 0%, var(--cream-2) 100%);
  border-radius: 24px;
  padding: var(--space-6);
  border: 1px solid rgba(22, 50, 79, 0.08);
  box-shadow: 0 12px 40px rgba(22, 50, 79, 0.08);
  position: sticky;
  top: 120px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-results-header {
  margin-bottom: var(--space-5);
}
.pricing-results-header h3 {
  margin: 0 0 var(--space-1) 0;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
}
.pricing-results-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7a88;
  font-weight: 500;
}

/* Route Summary */
.pricing-route-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(243, 162, 119, 0.08);
  border-radius: 16px;
  margin-bottom: var(--space-5);
}
.pricing-route-from,
.pricing-route-to {
  flex: 1;
  text-align: center;
}
.pricing-route-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7a88;
  margin-bottom: 4px;
}
.pricing-route-city {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.pricing-route-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brick);
  border-radius: 50%;
}
.pricing-route-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

/* Stats Grid */
.pricing-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.pricing-stat-card {
  background: #fff;
  border-radius: 14px;
  padding: var(--space-3);
  border: 1px solid rgba(22, 50, 79, 0.06);
  text-align: center;
}
.pricing-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-2) auto;
  background: rgba(223, 122, 87, 0.12);
  border-radius: 10px;
}
.pricing-stat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brick);
}
.pricing-stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #6b7a88;
  margin-bottom: 4px;
}
.pricing-stat-value {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
}

/* Price Display Box */
.pricing-price-box {
  background: linear-gradient(135deg, var(--brick) 0%, #f3a277 100%);
  border-radius: 18px;
  padding: var(--space-5);
  margin-bottom: var(--space-5);
  color: #fff;
  text-align: center;
}
.pricing-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  margin-bottom: var(--space-2);
}
.pricing-price-main {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  align-content: center;
  min-width: 0;
  padding-right: 18px;
}
.pricing-price-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  text-align: center;
}
.pricing-price-meta-item {
  display: grid;
  gap: 4px;
  justify-items: center;
}
.pricing-price-meta-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.95;
}
.pricing-price-meta-value {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}
.pricing-price-meta-value-large {
  font-size: 1.9rem;
}
.pricing-price-range {
  margin: 10px 0 0 0;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.pricing-price-side {
  min-width: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}
.pricing-price-note {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Prix Map Card */
.pricing-map-card {
  background: #fff;
  border-radius: 14px;
  padding: 0;
  border: 1px solid rgba(22, 50, 79, 0.06);
  margin-bottom: 0;
  overflow: hidden;
}
.pricing-map-shell {
  position: relative;
  overflow: hidden;
  min-height: 312px;
}
.pricing-map-canvas {
  width: 100%;
  height: 312px;
}
.pricing-map-fallback {
  display: block;
  width: 100%;
  height: 312px;
}
.pricing-map-fallback[hidden] {
  display: none;
}
.pricing-map-canvas .leaflet-container {
  width: 100%;
  height: 100%;
  background: rgba(247, 244, 238, 0.72);
}
.pricing-map-shell .leaflet-container + .pricing-map-fallback {
  display: none;
}
.pricing-map-shell .leaflet-control-attribution {
  font-size: 10px;
  background: rgba(255, 250, 243, 0.9);
}
.pricing-map-shell .leaflet-control-zoom {
  border: 0;
  box-shadow: 0 10px 22px rgba(var(--navy-rgb), 0.14);
}
.pricing-map-shell .leaflet-control-zoom a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border: 0;
  color: var(--navy);
  background: rgba(247, 244, 238, 0.94);
}
.pricing-map-shell .leaflet-control-zoom a:hover {
  background: rgba(247, 244, 238, 1);
  color: var(--brick);
}
.pricing-map-route {
  fill: none;
  stroke: var(--brick);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 8 8;
}
.pricing-map-point circle:first-child {
  fill: rgba(22, 50, 79, 0.14);
}
.pricing-map-point-from circle:first-child {
  fill: rgba(22, 50, 79, 0.16);
}
.pricing-map-point-to circle:first-child {
  fill: rgba(201, 79, 61, 0.22);
}
.pricing-map-point-from .pricing-map-core {
  fill: var(--navy);
}
.pricing-map-point-to .pricing-map-core {
  fill: var(--brick);
}
.pricing-map-label rect {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(22, 50, 79, 0.08);
}
.pricing-map-label text {
  fill: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.pricing-breakdown-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-breakdown-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  font-size: 0.9rem;
  color: #4f5b65;
  border-bottom: 1px solid rgba(22, 50, 79, 0.04);
}
.pricing-breakdown-list li:last-child {
  border-bottom: none;
}
.pricing-breakdown-icon {
  flex-shrink: 0;
  font-size: 1rem;
}
.pricing-breakdown-list strong {
  color: var(--navy);
  font-weight: 700;
}

/* Results CTA */
.pricing-results-cta {
  text-align: center;
}
.pricing-results-cta .button {
  width: 100%;
}
.pricing-cta-note {
  margin: var(--space-2) 0 0 0;
  font-size: 0.8rem;
  color: #6b7a88;
}

/* Pricing Factors Section */
.pricing-factors-section {
  padding-top: clamp(12px, 2vw, 28px);
  padding-bottom: var(--section-space);
}
.pricing-factors-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
}
.pricing-factors-head .section-intro {
  margin: 0;
}
.pricing-factors-illustration {
  width: clamp(220px, 28vw, 360px);
  color: var(--navy);
  justify-self: end;
}
.pricing-factors-illustration img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(22, 50, 79, 0.12));
}
.pricing-factors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.pricing-factor-card {
  background: var(--cream-2);
  border-radius: 18px;
  padding: var(--space-5);
  border: 1px solid rgba(22, 50, 79, 0.07);
  text-align: center;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .pricing-factor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(22, 50, 79, 0.12);
  }
}
.pricing-factor-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-3) auto;
  background: linear-gradient(135deg, rgba(223, 122, 87, 0.16) 0%, rgba(243, 162, 119, 0.1) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-factor-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brick);
}
.pricing-factor-card h3 {
  margin: 0 0 var(--space-2) 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.pricing-factor-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4f5b65;
  line-height: 1.65;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-calculator-wrapper {
    grid-template-columns: 1fr;
  }
  .pricing-results-panel {
    position: static;
    top: auto;
  }
  .pricing-factors-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  .pricing-factors-head {
      grid-template-columns: 1fr;
    }
  .pricing-factors-illustration {
      justify-self: start;
    }
  }

@media (max-width: 720px) {
  .pricing-calc-form-panel,
  .pricing-results-panel {
    padding: var(--space-4);
  }
  .pricing-calc-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .pricing-calc-btn,
  .pricing-calc-btn-secondary {
    width: 100%;
  }
  .pricing-field-row {
    grid-template-columns: 1fr;
  }
  .pricing-factors-grid {
      grid-template-columns: 1fr;
    }
  .pricing-factors-illustration {
      display: none;
    }
    .pricing-calc-header h2 {
      font-size: 1.2rem;
    }
  .pricing-price-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pricing-price-main {
    padding-right: 0;
  }
  .pricing-price-side {
    min-width: 0;
    padding-left: 0;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
  }
  .pricing-price-range {
    font-size: 1.6rem;
  }
  .pricing-route-summary {
    flex-direction: column;
    gap: var(--space-2);
  }
  .pricing-route-arrow {
    transform: rotate(90deg);
  }
  .pricing-deco-calc {
    width: 200px;
    height: 200px;
    right: 2%;
    opacity: 0.4;
  }
}

/* ============================================================
   HOMEPAGE HERO REDESIGN OVERRIDES
   Direction: calm split layout with a real photo, simpler hierarchy, less visual noise
   ============================================================ */
.hero-zone-home {
  position: relative;
  padding-bottom: clamp(2.2rem, 4vw, 3.5rem);
}
.hero-home-clean {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(201, 79, 61, 0.14);
  border-radius: 30px;
  background: linear-gradient(135deg, #fffaf4 0%, #f7efe5 100%);
  box-shadow: 0 24px 56px rgba(22, 50, 79, 0.1);
}
.hero-home-grid-clean {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: clamp(1.8rem, 3vw, 3.2rem);
}
.hero-home-clean .hero-copy-home-clean {
  width: 100%;
  max-width: 100%;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.hero-copy-home-clean .hero-eyebrow {
  display: inline-block;
  position: relative;
  left: -23px;
  width: max-content;
  margin: 0 0 16px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
}
.hero-home-clean .hero-copy-home-clean h1 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-size: clamp(2.75rem, 4.9vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.038em;
  text-align: left;
  color: var(--text);
}
.hero-home-clean .hero-copy-home-clean .lead {
  margin: 0 0 24px;
  max-width: 50ch;
  font-size: 1.02rem;
  line-height: 1.68;
  color: rgba(22, 50, 79, 0.82);
}
.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(22, 50, 79, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(22, 50, 79, 0.05);
  font-size: 0.91rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-actions-home {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-actions-home .button {
  width: auto;
  min-width: 220px;
  min-height: 54px;
}
.hero-support-note {
  margin: 16px 0 0;
  max-width: 46ch;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(22, 50, 79, 0.68);
}
.hero-visual-home-clean {
  position: relative;
  display: block;
  align-self: start;
  overflow: visible;
}
.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid rgba(223, 122, 87, 0.78);
  box-shadow: 0 26px 52px rgba(22, 50, 79, 0.16);
  min-height: 0;
  background: transparent;
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 50, 79, 0.06) 0%, rgba(22, 50, 79, 0.18) 100%);
  pointer-events: none;
}
.hero-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 11 / 12;
  object-fit: cover;
  object-position: center;
}
.hero-photo-caption {
  display: none !important;
}

.home-page .hero-copy-home-clean .service-title-accent {
  display: inline-block;
  padding: 0 0.14em;
  color: var(--brick);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0 60%, rgba(201, 79, 61, 0.16) 60% 100%);
  border-radius: 0.18em;
}

.home-page .hero-image-proof-bar {
  bottom: -26px;
  left: auto;
  right: 28px;
  gap: 7px;
  padding: 8px 10px;
  max-width: calc(100% - 40px);
  min-height: 38px;
  border: 2px solid rgba(223, 122, 87, 0.78);
  border-radius: 16px;
  background: var(--cream-2);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(22, 50, 79, 0.14);
  transform: none;
}

.home-page .hero-image-proof-bar p,
.home-page .hero-image-proof-bar strong {
  color: var(--navy);
}

.home-page .hero-image-proof-bar p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.1;
  white-space: nowrap;
}

.home-page .hero-image-proof-bar strong {
  font-weight: 900;
}

.home-page .hero-image-proof-bar .google-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.home-page .hero-image-proof-bar .g-blue { color: #4285f4; }
.home-page .hero-image-proof-bar .g-red { color: #ea4335; }
.home-page .hero-image-proof-bar .g-yellow { color: #fbbc05; }
.home-page .hero-image-proof-bar .g-green { color: #34a853; }
.home-page .quote-panel {
  margin-top: -92px;
}

@media (max-width: 1100px) {
  .hero-home-grid-clean {
    grid-template-columns: 1fr;
  }
  .hero-home-clean .hero-copy-home-clean h1 {
    max-width: 11.5ch;
  }
  .hero-visual-home-clean {
    max-width: 760px;
  }
  .home-page .hero-image-proof-bar {
    right: 20px;
  }
  .hero-photo-frame img {
    aspect-ratio: 11 / 12;
  }
}

@media (max-width: 720px) {
  .hero-home-clean {
    padding: 20px 16px 18px;
    border-radius: 24px;
    overflow-x: clip !important;
  }
  .hero-home-grid-clean {
    min-width: 0;
  }
  .hero-home-grid-clean > * {
    min-width: 0;
  }
  .hero-copy-home-clean .hero-eyebrow {
    left: 0;
    margin-bottom: 14px;
    font-size: 0.72rem;
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
  .hero-home-clean .hero-copy-home-clean h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 9.5vw, 3.5rem);
    overflow-wrap: normal;
    word-break: normal;
    text-align: center;
  }
  .hero-home-clean .hero-copy-home-clean .lead {
    font-size: 0.98rem;
    line-height: 1.62;
    max-width: 100%;
  }
  .hero-proof-strip {
    margin-bottom: 20px;
    justify-content: center;
  }
  .hero-proof-pill {
    min-height: 38px;
    font-size: 0.85rem;
  }
  .hero-actions-home {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions-home .button {
    width: 100%;
    min-width: 0;
  }
  .hero-support-note {
    margin-top: 14px;
    font-size: 0.9rem;
  }
  .hero-photo-frame {
    border-radius: 22px;
  }
  .hero-photo-frame img {
    aspect-ratio: 1 / 1;
  }
  .home-page .hero-image-proof-bar {
    right: 14px;
    bottom: -22px;
    max-width: calc(100% - 28px);
    padding: 9px 11px;
  }
  .home-page .hero-image-proof-bar p {
    font-size: 0.85rem;
  }
  .hero-photo-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 15px 15px 16px;
  }
  .home-page .quote-panel {
    margin-top: -44px;
  }
}

/* ============================================================
   HOMEPAGE HERO FLOW FIXES
   Direction: full-width section flow, no boxed hero shell, stronger keyword-led H1
   ============================================================ */
.hero-zone.hero-zone-home {
  min-height: auto;
  background:
    linear-gradient(90deg, rgba(243, 162, 119, 0.3) 0%, rgba(243, 162, 119, 0.2) 18%, rgba(243, 162, 119, 0.1) 40%, rgba(243, 162, 119, 0) 68%),
    linear-gradient(180deg, rgba(255, 250, 244, 0) 0%, rgba(249, 239, 227, 0.1) 34%, rgba(247, 239, 229, 0.4) 74%, rgba(246, 238, 228, 0.8) 100%),
    linear-gradient(180deg, #fffaf4 0%, #f7efe5 62%, #f6eee4 100%);
}

.home-page .hero-zone.hero-zone-home {
  padding-bottom: 0;
}

.hero.hero-with-bg.hero-home-clean {
  min-height: auto;
  padding: 148px 40px 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-home-grid.hero-home-grid-clean {
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
  align-items: center;
  gap: clamp(2.2rem, 3.5vw, 4.2rem);
}

.hero-home-clean .hero-copy-home-clean h1 {
  max-width: 10.8ch;
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  line-height: 0.96;
}

.hero-home-clean .hero-copy-home-clean h1 .nowrap {
  display: block;
  white-space: normal;
  color: var(--brick);
}

.home-page .quote-panel {
  margin-top: 0;
  padding-top: 0;
  background: transparent;
}

.home-page .quote-card {
  margin-top: 0;
}

.home-page #soumission .quote-card {
  border: 2px solid var(--brick);
}

@media (max-width: 720px) {
  .hero.hero-with-bg.hero-home-clean {
    padding: 124px 18px 28px;
  }

  .hero-home-clean .hero-copy-home-clean h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 9.5vw, 3.5rem);
    text-align: center;
  }

  .home-page .quote-panel {
    background: transparent;
  }
}

/* ============================================================
   HOMEPAGE SPACING NORMALIZATION
   Direction: consistent vertical rhythm from quote section to footer
   ============================================================ */
.home-page {
  --home-section-space: clamp(4.5rem, 7vw, 6.5rem);
  --home-section-space-tight: clamp(2rem, 3.4vw, 2.75rem);
}

.home-page .quote-panel.section,
.home-page .advantage-section,
.home-page .proof-section,
.home-page .section.steps-section,
.home-page .areas-section,
.home-page .google-reviews-section,
.home-page .faq-section {
  padding-bottom: var(--home-section-space);
}

.home-page .testimonials-section {
  width: 100%;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: calc(var(--home-section-space-tight) + 0.5rem);
  padding-bottom: var(--home-section-space);
  padding-left: clamp(24px, 3vw, 40px);
  padding-right: clamp(24px, 3vw, 40px);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, #16324f 0%, #10263c 100%);
  box-shadow: 0 22px 48px rgba(11, 26, 42, 0.2);
}

.home-page .advantage-section,
.home-page .proof-section,
.home-page .section.steps-section,
.home-page .google-reviews-section,
.home-page .faq-section {
  padding-top: var(--home-section-space);
}

.home-page .advantage-section {
  padding-top: var(--home-section-space-tight);
}

.home-page .quote-panel.section {
  padding-top: var(--home-section-space-tight);
  padding-bottom: calc(var(--home-section-space-tight) + 0.5rem);
}

.home-page .quote-panel + .testimonials-section {
  margin-top: 0;
}

.home-page .quote-card {
  padding-bottom: calc(var(--space-8) + 20px);
}

.home-page .form-proof-bar {
  bottom: -18px;
}

.home-page #soumission .form-proof-bar {
  border: 3px solid var(--brick);
}

.home-page .testimonials-section .section-intro,
.home-page .advantage-section .section-intro,
.home-page .proof-section .proof-copy,
.home-page .google-reviews-section .google-reviews-header,
.home-page .faq-section .faq-hero {
  margin-bottom: var(--home-section-space-tight);
}

.home-page .advantage-section .section-intro {
  padding-top: 0;
}

.home-page .testimonials-section .eyebrow,
.home-page .testimonials-section .section-intro p {
  color: rgba(247, 244, 238, 0.78);
}

.home-page .testimonials-section .section-intro,
.home-page .testimonials-section .testimonials-grid {
  width: min(var(--content), calc(100% - 112px));
  margin-left: auto;
  margin-right: auto;
}

.home-page .testimonials-section .section-intro h2 {
  color: #f7f4ee;
}

.home-page .testimonials-section .testimonial-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(247, 244, 238, 0.97);
  box-shadow: 0 16px 34px rgba(7, 18, 29, 0.18);
}

.home-page .section.section-intro {
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space-tight);
}

.home-page .section.section-intro + .cards-three,
.home-page .section.section-intro + .areas-section {
  padding-top: 0;
}

.home-page .cards-three {
  margin-bottom: var(--home-section-space-tight);
}

.home-page .services-more-link {
  margin-bottom: var(--home-section-space);
}

.home-page .split-section {
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
}

@media (max-width: 720px) {
  .home-page {
    --home-section-space: clamp(3.5rem, 10vw, 4.5rem);
    --home-section-space-tight: clamp(1.5rem, 6vw, 2rem);
  }

  .home-page .services-more-link {
    margin-bottom: var(--home-section-space);
  }
}

/* ===== Sitewide Section Rhythm Normalization ===== */
:root {
  --site-section-space: clamp(72px, 7vw, 104px);
  --site-section-space-tight: clamp(44px, 5vw, 72px);
}

/* Standard intro rhythm shared across page families */
.section-intro,
.service-links-intro,
.processus-page .service-links-intro {
  padding-top: var(--site-section-space) !important;
  padding-bottom: var(--space-6) !important;
}

/* Page-top heroes should hand off to the next section with a tighter gap */
.services-hero,
.interior-top,
.blog-hero {
  padding-bottom: var(--site-section-space-tight) !important;
}

/* Standalone blocks that do not rely on .section-intro need full section spacing */
.services-top-form,
.pricing-calculator-section,
.blog-featured,
.processus-page .process-avoid-band {
  padding-top: var(--site-section-space) !important;
  padding-bottom: var(--site-section-space) !important;
}

/* Major section families keep a shared bottom rhythm */
.visual-band,
.split-section,
.areas-section,
.testimonials-section,
.cta-band,
.faq-section,
.services-bottom-form,
.pricing-factors-section {
  padding-bottom: var(--site-section-space) !important;
}

.section.steps-section {
  padding-top: var(--site-section-space) !important;
  padding-bottom: var(--site-section-space) !important;
}

/* Grid/content endings should land on the same cadence */
.services-page-grid,
.blog-grid,
.services-more-link {
  margin-bottom: 0 !important;
  padding-bottom: var(--site-section-space) !important;
}

/* Tighter relationship where the first conversion block follows a hero */
.interior-top + .pricing-calculator-section,
.blog-hero + .blog-featured,
.processus-page .hero-zone + .quote-panel {
  padding-top: var(--site-section-space-tight) !important;
}

/* Process page has custom spacing rules; normalize them to the shared system */
.processus-page .quote-panel {
  margin-top: calc(-1 * var(--site-section-space-tight)) !important;
  padding-bottom: var(--site-section-space-tight) !important;
}

.processus-page .process-steps-summary {
  margin-top: var(--space-5) !important;
}

@media (max-width: 720px) {
  :root {
    --site-section-space: 56px;
    --site-section-space-tight: 40px;
  }

  .section-intro,
  .service-links-intro,
  .processus-page .service-links-intro {
    padding-top: var(--site-section-space) !important;
    padding-bottom: 20px !important;
  }

  .services-top-form,
  .pricing-calculator-section,
  .blog-featured,
  .processus-page .process-avoid-band,
  .visual-band,
  .split-section,
  .areas-section,
  .testimonials-section,
  .cta-band,
  .faq-section,
  .services-bottom-form,
  .pricing-factors-section,
  .section.steps-section {
    padding-bottom: var(--site-section-space) !important;
  }

.processus-page .quote-panel {
  margin-top: -88px !important;
  padding-bottom: 40px !important;
  }
}

/* Unified title typography */
.hero-copy h1,
.services-hero h1,
.blog-hero h1,
.service-page .interior-top-copy h1,
.hero-home-clean .hero-copy-home-clean h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.proof-copy h2,
.section-intro h2,
.dark-panel h2,
.quote-intro h2,
.side-note h2,
.cta-content h2,
.blog-featured-content h2,
.blog-section-header h2,
.article-section h2,
.article-highlight-box h2,
.article-side-card h2,
.article-cta-card h2,
.route-calculator-intro h2,
.service-page .mini-quote-card h2,
.service-page .service-promise-copy h2,
.service-page .service-promise-copy .section-intro h2,
.pricing-calc-header h2,
.service-card h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.mini-card h3,
.step-card h3,
.advantage-card h3,
.faq-list h3,
.blog-card-body h3,
.route-insight-copy h3,
.route-placeholder-card h3,
.pricing-results-header h3,
.pricing-factor-card h3,
.comparison-cell h3,
.showcase-card-info h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.site-footer h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.45);
  margin-bottom: 10px;
}

/* Homepage uses the same compact service-page headline treatment explicitly */
.home-page .hero-home-clean .hero-copy-home-clean h1 {
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.home-page .section-intro h2,
.home-page .proof-copy h2,
.home-page .quote-intro h2,
.home-page .faq-hero h2 {
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

/* ══════════════════════════════════════════════════════════
   GLOBAL DARK GRADIENT HERO TREATMENT
   Applied across service pages, home page, and blog pages
   ══════════════════════════════════════════════════════════ */

/* ── Service pages ── */
.service-page.service-hero-page .interior-top {
  background: linear-gradient(180deg, #142638 0%, var(--navy) 40%, #10263d 100%) !important;
  color: #fff;
  min-height: 100vh;
  margin-top: -94px !important;
  padding-top: 273px !important;
}

.service-page.service-hero-page .interior-top::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(145deg, rgba(201, 79, 61, 0.38) 0%, rgba(243, 162, 119, 0.26) 40%, rgba(22, 50, 79, 0.14) 70%, transparent 100%),
    radial-gradient(ellipse 60% 75% at 10% 60%, rgba(201, 79, 61, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 92% 25%, rgba(243, 162, 119, 0.22) 0%, transparent 50%);
  pointer-events: none;
}

.service-page.service-hero-page .interior-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, transparent 5%, rgba(243, 162, 119, 0.5) 30%, rgba(201, 79, 61, 0.6) 50%, rgba(243, 162, 119, 0.5) 70%, transparent 95%);
}

.service-page.service-hero-page .interior-top-copy {
  color: #fff;
  margin-top: -60px;
}

.service-page.service-hero-page .interior-top-copy .eyebrow {
  color: var(--brick);
  background: rgba(201, 79, 61, 0.12);
  border: 1px solid rgba(201, 79, 61, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  display: inline-block;
}

.service-page.service-hero-page .interior-top-copy h1 {
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.service-page.service-hero-page .interior-top-copy .service-title-accent {
  color: var(--brick);
  background: none;
  text-shadow: 0 0 40px rgba(201, 79, 61, 0.4);
}

.service-page.service-hero-page .interior-top-copy .lead {
  color: rgba(255, 255, 255, 0.88);
}

/* Hide decorative atmosphere elements on dark background */
.service-page.service-hero-page .hero-distance-atmosphere {
  display: none;
}

/* Frosted glass form card override */
.service-page.service-hero-page .mini-quote-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: none;
}

.service-page.service-hero-page .mini-quote-card .eyebrow {
  color: rgba(243, 162, 119, 0.8);
}

.service-page.service-hero-page .mini-quote-card label span {
  font-weight: 700;
  color: #fff;
}

.service-page.service-hero-page .mini-quote-card .form-proof-bar {
  background: var(--cream-2);
  border: 2px solid rgba(223, 122, 87, 0.7);
  box-shadow: 0 12px 28px rgba(22, 50, 79, 0.14);
}

/* Step indicator overrides for dark card */
.service-page.service-hero-page .mini-quote-card .step-dot {
  background: rgba(255, 255, 255, 0.3);
}
.service-page.service-hero-page .mini-quote-card .step-dot-active {
  background: var(--brick);
}
.service-page.service-hero-page .mini-quote-card .step-label {
  color: rgba(255, 255, 255, 0.5);
}
.service-page.service-hero-page .mini-quote-card .step-label-active {
  color: var(--brick);
  font-weight: 700;
}

/* ── Home page ── */
.home-page .hero-home-clean {
  border: none !important;
  border-radius: 0 !important;
  background: linear-gradient(180deg, #142638 0%, var(--navy) 40%, #10263d 100%) !important;
  box-shadow: none !important;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: calc(-1 * clamp(1.5rem, 3vw, 2.4rem));
  padding: clamp(1.5rem, 3vw, 2.4rem) !important;
  padding-top: 180px !important;
  min-height: calc(100vh + 94px) !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  overflow: visible !important;
}

.home-page .hero-zone-home {
  margin-top: -94px;
  padding-top: 0;
  padding-bottom: 0 !important;
  overflow: visible;
}

.home-page .hero-home-clean::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  background:
    linear-gradient(160deg, rgba(22, 50, 79, 0.08) 0%, rgba(243, 162, 119, 0.22) 45%, rgba(201, 79, 61, 0.28) 75%, transparent 100%),
    radial-gradient(ellipse 55% 65% at 25% 85%, rgba(201, 79, 61, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 70% 20%, rgba(243, 162, 119, 0.14) 0%, transparent 50%);
  pointer-events: none;
}

.home-page .hero-home-clean::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, transparent 5%, rgba(243, 162, 119, 0.5) 30%, rgba(201, 79, 61, 0.6) 50%, rgba(243, 162, 119, 0.5) 70%, transparent 95%);
}

.home-page .hero-copy-home-clean .hero-eyebrow {
  color: var(--brick);
  background: rgba(201, 79, 61, 0.12);
  border: 1px solid rgba(201, 79, 61, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  left: 0;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.home-page .hero-home-clean .hero-copy-home-clean h1 {
  color: #fff !important;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.home-page .hero-copy-home-clean .service-title-accent {
  background: none !important;
  text-shadow: 0 0 40px rgba(201, 79, 61, 0.4);
}

.home-page .hero-home-clean .hero-copy-home-clean .lead {
  color: rgba(255, 255, 255, 0.88);
}

.home-page .hero-support-note {
  color: rgba(255, 255, 255, 0.55);
}

.home-page .hero-proof-pill {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.home-page .hero-actions-home .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-page .hero-photo-frame {
  border-color: rgba(243, 162, 119, 0.5);
}

/* ── Blog pages ── */
.blog-hero {
  position: relative;
  z-index: 1;
  max-width: none !important;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -94px;
  padding-top: 220px !important;
  padding-left: max(24px, calc((100vw - 700px) / 2));
  padding-right: max(24px, calc((100vw - 700px) / 2));
  padding-bottom: 80px !important;
  background: linear-gradient(180deg, #142638 0%, var(--navy) 40%, #10263d 100%);
  color: #fff;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0;
  display: block !important;
  background:
    linear-gradient(100deg, rgba(201, 79, 61, 0.32) 0%, rgba(243, 162, 119, 0.30) 40%, rgba(201, 79, 61, 0.18) 70%, rgba(22, 50, 79, 0.12) 100%),
    radial-gradient(ellipse 90% 40% at 50% 55%, rgba(243, 162, 119, 0.24) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 30%, rgba(201, 79, 61, 0.20) 0%, transparent 50%) !important;
  pointer-events: none;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

.blog-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, transparent 5%, rgba(243, 162, 119, 0.5) 30%, rgba(201, 79, 61, 0.6) 50%, rgba(243, 162, 119, 0.5) 70%, transparent 95%);
}

.blog-hero h1 {
  color: #fff !important;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.blog-hero h1::after {
  background: var(--brick) !important;
}

.blog-hero .lead {
  color: rgba(255, 255, 255, 0.88) !important;
}

.blog-hero .eyebrow {
  color: var(--brick);
  background: rgba(201, 79, 61, 0.12);
  border: 1px solid rgba(201, 79, 61, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  display: inline-block;
}

.blog-hub-actions .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-page .blog-hero {
  padding-left: max(24px, calc((100vw - 1280px) / 2));
  padding-right: max(24px, calc((100vw - 1280px) / 2));
}

.article-page .blog-hero.article-hero {
  display: block;
}

.article-page .article-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(22px, 3.2vw, 48px);
  align-items: center;
}

.article-page .article-hero-copy {
  max-width: 760px;
}

.article-page .article-hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-page .article-hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.article-page .article-hero-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
}

.article-page .article-hero-visual {
  margin: 0;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 60px rgba(8, 16, 29, 0.38);
}

.article-page .article-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .article-page .article-hero-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-page .article-hero-copy {
    max-width: none;
  }

  .article-page .article-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .article-page .article-hero-visual {
    min-height: 220px;
  }

  .article-page .article-hero-visual img {
    min-height: 220px;
  }
}

.article-page .blog-hero::before {
  background:
    linear-gradient(130deg, rgba(22, 50, 79, 0.10) 0%, rgba(201, 79, 61, 0.34) 50%, rgba(243, 162, 119, 0.22) 80%, transparent 100%),
    radial-gradient(ellipse 50% 60% at 60% 40%, rgba(201, 79, 61, 0.26) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 10% 65%, rgba(243, 162, 119, 0.16) 0%, transparent 50%) !important;
}

/* ── Merci / generic pages ── */
.services-hero {
  position: relative;
  z-index: 1;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -94px;
  padding-top: 220px !important;
  padding-left: max(24px, calc((100vw - 700px) / 2));
  padding-right: max(24px, calc((100vw - 700px) / 2));
  padding-bottom: 80px !important;
  background: linear-gradient(180deg, #142638 0%, var(--navy) 40%, #10263d 100%);
  color: #fff;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0;
  display: block !important;
  background:
    linear-gradient(180deg, rgba(22, 50, 79, 0.08) 0%, rgba(201, 79, 61, 0.30) 50%, rgba(243, 162, 119, 0.24) 80%, transparent 100%),
    radial-gradient(ellipse 60% 55% at 75% 50%, rgba(201, 79, 61, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 30% 35%, rgba(243, 162, 119, 0.18) 0%, transparent 50%) !important;
  pointer-events: none;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

.services-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  background: linear-gradient(90deg, transparent 5%, rgba(243, 162, 119, 0.5) 30%, rgba(201, 79, 61, 0.6) 50%, rgba(243, 162, 119, 0.5) 70%, transparent 95%);
}

.services-hero h1 {
  color: #fff !important;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.services-hero .lead {
  color: rgba(255, 255, 255, 0.88) !important;
}

.services-hero .eyebrow {
  color: var(--brick);
}

.services-hero .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================================
   LEGAL PAGE LAYOUT (traditional legal reading flow with brand styling)
   ============================================================ */
.legal-main {
  padding-bottom: var(--section-space);
}

.legal-page .legal-hero {
  padding-top: clamp(88px, 11vw, 132px);
  padding-bottom: clamp(26px, 4vw, 40px);
}

.legal-page .legal-hero-inner {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 28px;
  border: 1px solid rgba(201, 79, 61, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 244, 238, 0.92)),
    var(--cream-2);
  box-shadow: 0 22px 48px rgba(22, 50, 79, 0.1);
}

.legal-page .legal-hero h1 {
  margin: 0;
  max-width: 20ch;
}

.legal-page .legal-lead {
  margin: var(--space-4) 0 0;
  max-width: 74ch;
  color: rgba(22, 50, 79, 0.82);
  line-height: 1.72;
}

.legal-page .legal-updated {
  margin: var(--space-4) 0 0;
  color: rgba(22, 50, 79, 0.72);
  font-size: 0.95rem;
}

.legal-page .legal-shell {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: clamp(20px, 3.2vw, 44px);
  align-items: start;
  padding-top: 0;
}

.legal-page .legal-toc {
  position: sticky;
  top: 110px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(22, 50, 79, 0.12);
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 50, 79, 0.08);
}

.legal-page .legal-toc h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--navy);
}

.legal-page .legal-toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.legal-page .legal-toc a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(22, 50, 79, 0.82);
}

.legal-page .legal-toc a:hover {
  color: var(--brick);
}

.legal-page .legal-article {
  padding: clamp(20px, 3.5vw, 34px);
  border-radius: 26px;
  border: 1px solid rgba(22, 50, 79, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(22, 50, 79, 0.09);
}

.legal-page .legal-section + .legal-section {
  margin-top: clamp(24px, 3.2vw, 34px);
  padding-top: clamp(20px, 2.4vw, 26px);
  border-top: 1px solid rgba(22, 50, 79, 0.1);
}

.legal-page .legal-section h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
}

.legal-page .legal-section p,
.legal-page .legal-section li {
  margin: 0;
  color: rgba(22, 50, 79, 0.86);
  line-height: 1.74;
}

.legal-page .legal-section p + p {
  margin-top: 10px;
}

.legal-page .legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal-page .legal-section strong {
  color: var(--navy);
}

.legal-page .legal-cta {
  padding-top: clamp(32px, 4vw, 48px);
}

.legal-page .legal-cta-card {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 24px;
  border: 1px solid rgba(201, 79, 61, 0.26);
  background:
    linear-gradient(135deg, rgba(22, 50, 79, 0.95), rgba(16, 38, 60, 0.97)),
    var(--navy);
  box-shadow: 0 22px 48px rgba(13, 30, 47, 0.28);
}

.legal-page .legal-cta-card h2,
.legal-page .legal-cta-card p {
  margin: 0;
  color: #f7f4ee;
}

.legal-page .legal-cta-card p {
  margin-top: 10px;
  color: rgba(247, 244, 238, 0.86);
}

.legal-page .legal-cta-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-page .legal-cta-actions .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* ============================================================
   MOBILE STABILIZATION (homepage + all pages)
   ============================================================ */
@media (max-width: 980px) {
  .services-hero,
  .blog-hero {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
    margin-top: -84px;
    padding-top: 170px !important;
    padding-right: 18px;
    padding-left: 18px;
    padding-bottom: 58px !important;
  }

  .article-page .blog-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-hero h1,
  .blog-hero h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  .services-hero,
  .blog-hero {
    margin-top: -72px;
    padding-top: 138px !important;
    padding-bottom: 44px !important;
  }

  .services-hero h1,
  .blog-hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.8rem);
    line-height: 1.04;
  }

  .services-hero .lead,
  .blog-hero .lead {
    font-size: 0.97rem;
    line-height: 1.58;
    max-width: 34ch;
  }

  .home-page .hero-zone.hero-zone-home {
    overflow-x: clip;
  }

  .home-page .hero.hero-with-bg.hero-home-clean {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-page .hero-home-grid.hero-home-grid-clean {
    width: 100%;
  }

  .home-page .hero-visual-home-clean,
  .home-page .hero-photo-frame {
    width: 100%;
    max-width: 100%;
  }

  .home-page .hero-photo-frame img {
    width: 100%;
  }

  .home-page .testimonials-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-page .testimonials-section .section-intro,
  .home-page .testimonials-section .testimonials-grid {
    width: 100%;
  }

  .legal-page .legal-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .legal-page .legal-toc {
    position: static;
  }

  .legal-page .legal-article {
    padding: 18px;
    border-radius: 20px;
  }

  .legal-page .legal-cta-actions .button {
    width: 100%;
  }
}

/* ============================================================
   MOBILE FORM HARDENING (prevent overflow in multi-step forms)
   ============================================================ */
.quote-form,
.quote-form .field-grid,
.quote-form .field-grid-two,
.quote-form label,
.quote-form .form-step,
.quote-form .quote-form-footer,
.quote-form .form-actions {
  min-width: 0;
}

.quote-form .field-grid-two > * {
  min-width: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 720px) {
  .home-page .quote-card .home-wide-step-footer,
  .home-page .quote-card .home-wide-submit-footer,
  .home-page .quote-card .home-wide-submit-actions {
    display: flex !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin-left: 0 !important;
  }

  .home-page .quote-card .home-wide-step-footer {
    flex-direction: column-reverse !important;
  }

  .home-page .quote-card .home-wide-submit-footer .form-note,
  .home-page .quote-card .home-wide-step-footer .form-note {
    margin-right: 0 !important;
    text-align: left !important;
    max-width: 100% !important;
  }

  .home-page .quote-card .home-wide-step-footer .button,
  .home-page .quote-card .home-wide-submit-actions .button,
  .home-page .quote-card .home-wide-submit-footer .button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom > div {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 12px;
  }
}

/* Compact/mobile form unification has moved to assets/css/forms-unified.css */
