/* ============================================================
   MINT MOVERS — Design System v2 "White Glove"
   Premium, editorial, photo-led. Built to convert affluent
   Gold Coast / Brisbane clients.
   Canvas:  Paper #ffffff · Stone #f5f3ef · Ink #101418
   Accent:  Mint #5BBCD8 (fine accents) · Deep Mint #1f7a96
   Type:    Fraunces (display serif) · Instrument Sans (body)
   Signature: the route line (From → To), refined.
   ============================================================ */

:root {
  --paper: #ffffff;
  --stone: #f5f3ef;
  --stone-deep: #ebe7e0;
  --ink: #101418;
  --ink-soft: #23292f;
  --slate: #5c6670;
  --line: #e6e3dd;
  --mint: #5bbcd8;
  --mint-deep: #1f7a96;
  --mint-tint: #ecf7fb;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 18px 50px rgba(16, 20, 24, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: clip; /* clip (not hidden): blocks sideways scroll WITHOUT breaking position:fixed on mobile */
  max-width: 100%;
}
/* Images can never stretch: height follows width, ratios locked per component */
img { max-width: 100%; height: auto; display: block; }
a, button { -webkit-tap-highlight-color: transparent; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 18px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--mint-deep); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Route line (signature, refined) ---------- */
.route { display: flex; align-items: center; margin: 30px 0 0; max-width: 380px; }
.route-pin { width: 10px; height: 10px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }
.route-pin.end { background: transparent; border: 2px solid var(--mint-deep); }
.route-track { flex: 1; height: 1px; position: relative; overflow: hidden; }
.route-track::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(90deg, var(--slate) 0 6px, transparent 6px 14px);
  background-size: 14px 1px; background-repeat: repeat-x;
  animation: routeFlow 2s linear infinite;
}
@keyframes routeFlow { from { background-position-x: 0; } to { background-position-x: 14px; } }
.route-label {
  font-family: var(--font-display); font-style: italic; font-size: 14px;
  color: var(--slate); margin: 0 12px;
}

/* ---------- Nav ---------- */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--mint-deep); }
.nav-cta {
  background: var(--ink) !important; color: #fff !important;
  padding: 11px 22px; border-radius: 100px; font-weight: 600 !important; transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--mint-deep) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--paper); z-index: 150;
  flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 30px; font-weight: 500; color: var(--ink); text-decoration: none; }
.mobile-menu a:hover, .mobile-menu .mob-cta { color: var(--mint-deep); font-style: italic; }
.mobile-close { position: absolute; top: 22px; right: 5%; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--ink); }

/* ---------- Hero (split, photo-led, lead capture) ---------- */
.hero { padding: 150px 5% 84px; background: var(--paper); }
.hero-grid {
  max-width: 1220px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--stone); color: var(--ink-soft);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
  animation: fadeUp 0.5s ease both;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; }
.hero h1 {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(42px, 5.6vw, 74px); line-height: 1.02; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 24px; animation: fadeUp 0.5s 0.08s ease both;
}
.hero h1 em { font-style: italic; color: var(--mint-deep); }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 18.5px); color: var(--slate); max-width: 480px;
  margin-bottom: 34px; line-height: 1.7; animation: fadeUp 0.5s 0.16s ease both;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; animation: fadeUp 0.5s 0.24s ease both; }
.hero .route { animation: fadeUp 0.5s 0.32s ease both; }

.hero-photo { position: relative; animation: fadeUp 0.6s 0.2s ease both; }
.hero-photo img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
}
.hero-photo-chip {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 100px;
  font-size: 12.5px; font-weight: 600; color: var(--ink);
  padding: 9px 16px; display: inline-flex; align-items: center; gap: 8px;
}
.hero-photo-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }

/* Quote teaser — the hero lead capture */
.quote-teaser {
  margin-top: 40px; padding: 22px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); animation: fadeUp 0.5s 0.4s ease both;
}
.quote-teaser-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mint-deep); margin-bottom: 12px;
}
.quote-teaser-row { display: grid; grid-template-columns: 1fr auto 1fr auto; gap: 10px; align-items: center; }
.quote-teaser input {
  font-family: var(--font-body); font-size: 16px; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink);
  outline: none; width: 100%; transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-teaser input:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(91,188,216,0.14); }
.quote-teaser .arrow { color: var(--slate); font-family: var(--font-display); font-style: italic; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--ink); color: #fff; font-weight: 600; font-size: 15.5px;
  padding: 16px 30px; border-radius: 100px; text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font-body); transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--mint-deep); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 9px; background: transparent; color: var(--ink);
  font-weight: 500; font-size: 15.5px; padding: 15px 28px; border-radius: 100px;
  border: 1px solid var(--ink); text-decoration: none; transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--mint-deep); color: var(--mint-deep); }
.btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: var(--ink); font-weight: 600; font-size: 15.5px;
  padding: 15px 28px; border-radius: 100px; text-decoration: none; transition: all 0.25s; width: auto;
}
.btn-white:hover { background: var(--stone); transform: translateY(-1px); }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--stone); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 5%; display: flex; align-items: center; justify-content: center; gap: 42px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.trust-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--mint-deep); }

/* ---------- Sections ---------- */
section { padding: 108px 5%; }
.container { max-width: 1220px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint-deep); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(32px, 3.8vw, 52px); line-height: 1.06; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--mint-deep); }
.section-body { font-size: 17px; color: var(--slate); max-width: 560px; line-height: 1.75; }
.bg-fog, .bg-stone { background: var(--stone); }
.bg-ink { background: var(--stone); } /* legacy class → light */

/* ---------- Service cards (photo-led) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin-top: 56px; }
.service-card {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform 0.3s, box-shadow 0.3s;
  display: block; text-decoration: none; color: inherit; position: relative;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.service-card .card-img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.service-card .card-body { padding: 26px 26px 30px; }
.service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 560; margin-bottom: 9px; color: var(--ink); }
.service-card p { font-size: 14.5px; color: var(--slate); line-height: 1.65; }
.service-card.dark { background: var(--ink); border-color: var(--ink); }
.service-card.dark .card-body { padding: 30px 26px; }
.service-card.dark h3 { color: #fff; }
.service-card.dark p { color: rgba(255,255,255,0.6); }
.service-icon { display: none; }
.service-price {
  display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600;
  color: var(--mint-deep); background: var(--mint-tint); padding: 5px 13px; border-radius: 100px;
}
.service-card.dark .service-price { background: rgba(91,188,216,0.16); color: var(--mint); }
.service-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--mint); padding-bottom: 2px;
}

/* ---------- Pricing (light, refined) ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin-top: 56px; }
.pricing-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 42px 36px; position: relative; transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pricing-card.featured { border: 1.5px solid var(--ink); }
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 600;
  padding: 5px 16px; border-radius: 100px; white-space: nowrap; letter-spacing: 0.08em;
}
.pricing-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 560; color: var(--ink); margin-bottom: 4px; }
.pricing-price { font-family: var(--font-display); font-size: 58px; font-weight: 560; color: var(--ink); line-height: 1; margin: 20px 0 6px; letter-spacing: -0.02em; }
.pricing-price span { font-size: 19px; color: var(--slate); font-weight: 400; font-family: var(--font-body); }
.pricing-desc { font-size: 13.5px; color: var(--slate); margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.pricing-features li::before {
  content: ''; width: 17px; height: 17px; min-width: 17px; margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231f7a96'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pricing-disclaimer {
  margin-top: 40px; padding: 20px 24px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 13px; color: var(--slate); line-height: 1.65; max-width: 760px;
}
.pricing-disclaimer a { color: var(--mint-deep); text-decoration: none; font-weight: 600; }
.pricing-disclaimer strong { color: var(--ink); }

/* ---------- Route steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; margin-top: 60px; }
.step { padding: 0 26px 0 0; }
.step-marker { display: flex; align-items: center; margin-bottom: 22px; }
.step-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }
.step:last-child .step-dot { background: transparent; border: 2px solid var(--mint-deep); }
.step-line { flex: 1; height: 1px; margin-left: 10px;
  background-image: linear-gradient(90deg, var(--slate) 0 6px, transparent 6px 14px); background-size: 14px 1px; }
.step:last-child .step-line { display: none; }
.step h4 { font-family: var(--font-display); font-size: 19px; font-weight: 560; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--slate); line-height: 1.65; }

/* ---------- Photo band ---------- */
.photo-band { padding: 0 5%; }
.photo-band .container { position: relative; }
.photo-band img { border-radius: var(--radius-lg); width: 100%; max-height: 520px; object-fit: cover; box-shadow: var(--shadow-soft); }
.photo-band-caption {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 20px; max-width: 380px;
}
.photo-band-caption p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.photo-band-caption strong { font-family: var(--font-display); font-weight: 560; }

/* ---------- Why / features ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 56px; }
.why-features { display: flex; flex-direction: column; gap: 30px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; min-width: 44px; background: var(--stone);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.why-feature h4 { font-family: var(--font-display); font-size: 19px; font-weight: 560; margin-bottom: 6px; color: var(--ink); }
.why-feature p { font-size: 14.5px; color: var(--slate); line-height: 1.7; }
.why-panel { position: relative; }
.why-panel img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* Full-width content images (service pages) — ratio locked, never stretched */
.content-img {
  width: 100%; aspect-ratio: 5 / 2.6; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); margin-bottom: 28px;
}
.why-stat { display: none; }

/* ---------- Areas ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 56px; }
.area-list { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.area-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 15px 20px; background: var(--paper);
  border-radius: var(--radius); font-size: 14.5px; border: 1px solid var(--line); transition: border-color 0.2s;
  line-height: 1.55; color: var(--ink-soft);
}
.area-item:hover { border-color: var(--mint); }
.area-item strong { color: var(--ink); }
.cta-box {
  background: var(--ink); border-radius: var(--radius-lg); padding: 44px 40px; position: sticky; top: 96px;
}
.cta-box h3 { font-family: var(--font-display); font-size: 32px; font-weight: 560; color: #fff; margin-bottom: 12px; }
.cta-box h3 em { font-style: italic; color: var(--mint); }
.cta-box p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 28px; line-height: 1.65; }
.cta-phone {
  display: block; font-family: var(--font-display); font-size: 34px; font-weight: 560;
  color: #fff; text-decoration: none; margin-bottom: 8px; transition: color 0.2s; letter-spacing: 0.01em;
}
.cta-phone:hover { color: var(--mint); }
.cta-email { display: block; font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 28px; }
.cta-box .btn-white { width: 100%; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-top: 50px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); background: transparent; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 8px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 560; font-size: 19px; gap: 16px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-body); font-size: 24px; font-weight: 300; color: var(--mint-deep); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 8px 26px; font-size: 15px; color: var(--slate); line-height: 1.75; max-width: 680px; }
.faq-item .faq-body a { color: var(--mint-deep); font-weight: 600; text-decoration: none; }

/* ---------- Quote form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; margin-top: 56px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px;
  background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--line); transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--mint); }
.contact-icon { width: 44px; height: 44px; min-width: 44px; background: var(--stone); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-bottom: 5px; }
.contact-value { font-family: var(--font-display); font-size: 20px; font-weight: 560; color: var(--ink); text-decoration: none; }
a.contact-value:hover { color: var(--mint-deep); }
.contact-note { font-size: 12.5px; color: var(--slate); margin-top: 3px; }

.quote-form { background: var(--paper); border-radius: var(--radius-lg); padding: 42px 38px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.quote-form h3 { font-family: var(--font-display); font-size: 28px; font-weight: 560; margin-bottom: 6px; color: var(--ink); }
.quote-form .form-intro { font-size: 14.5px; color: var(--slate); margin-bottom: 28px; }
.form-route { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: end; margin-bottom: 14px; }
.form-route-arrow { padding-bottom: 14px; color: var(--mint-deep); font-family: var(--font-display); font-style: italic; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 15px; }
label { font-size: 13.5px; font-weight: 500; color: var(--ink); }
input, select, textarea {
  font-family: var(--font-body); font-size: 16px; padding: 13px 16px; /* 16px stops iOS zoom-on-focus */
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink);
  outline: none; width: 100%; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(91,188,216,0.14); }
textarea { min-height: 100px; resize: vertical; }
.form-submit {
  width: 100%; padding: 17px; background: var(--ink); color: #fff;
  font-family: var(--font-body); font-size: 15.5px; font-weight: 600;
  border: none; border-radius: 100px; cursor: pointer; transition: background 0.25s, transform 0.2s; margin-top: 8px;
}
.form-submit:hover { background: var(--mint-deep); transform: translateY(-1px); }
.form-submit:disabled { background: var(--slate); cursor: wait; transform: none; }
.form-note { font-size: 12.5px; color: var(--slate); margin-top: 14px; line-height: 1.6; }
.form-status { display: none; margin-top: 14px; padding: 14px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 500; }
.form-status.ok { display: block; background: #eaf6ee; color: #1b6b34; border: 1px solid #c3e5cd; }
.form-status.err { display: block; background: #fdeeee; color: #a12622; border: 1px solid #f2c9c7; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Page hero (service pages — light editorial) ---------- */
.page-hero { padding: 168px 5% 76px; background: var(--stone); }
.page-hero .hero-bg { display: none; }
.page-hero .container { position: relative; }
.breadcrumb { font-size: 13px; color: var(--slate); margin-bottom: 24px; }
.breadcrumb a { color: var(--mint-deep); text-decoration: none; font-weight: 600; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(38px, 4.8vw, 64px); line-height: 1.03; letter-spacing: -0.012em;
  color: var(--ink); margin-bottom: 22px;
}
.page-hero h1 em { font-style: italic; color: var(--mint-deep); }
.page-hero p.lead { font-size: 17.5px; color: var(--slate); max-width: 580px; margin-bottom: 36px; line-height: 1.7; }

.content-block { max-width: 800px; }
.content-block h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 560; margin: 48px 0 16px; line-height: 1.12; }
.content-block p { font-size: 16.5px; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }
.content-block ul { margin: 0 0 16px 22px; color: var(--slate); line-height: 1.85; }
.content-block a { color: var(--mint-deep); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); padding: 84px 5%; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 46px); font-weight: 560; color: #fff; line-height: 1.08; }
.cta-band h2 em { font-style: italic; color: var(--mint); }
.cta-band p { color: rgba(255,255,255,0.6); margin-top: 10px; font-size: 15.5px; }
.cta-band .btn-white { padding: 17px 34px; font-size: 16px; }

/* ---------- Footer ---------- */
footer { background: var(--paper); border-top: 1px solid var(--line); padding: 72px 5% 110px; }
.footer-inner { max-width: 1220px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.footer-logo img { height: 28px; margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--slate); margin-bottom: 20px; }
.footer-contact a { display: block; font-size: 14.5px; text-decoration: none; margin-bottom: 6px; transition: color 0.2s; }
.footer-contact a.phone { color: var(--ink); font-weight: 600; font-size: 16px; }
.footer-contact a.email { color: var(--slate); }
.footer-contact a:hover { color: var(--mint-deep); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--slate); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--mint-deep); }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: var(--slate); }
.footer-bottom a { color: var(--mint-deep); text-decoration: none; }

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
}
.call-bar a { flex: 1; text-align: center; padding: 14px 10px; border-radius: 100px; font-weight: 600; font-size: 15px; text-decoration: none; }
.call-bar .cb-call { background: var(--ink); color: #fff; }
.call-bar .cb-quote { background: var(--stone); color: var(--ink); border: 1px solid var(--line); }

/* ---------- Scroll reveal (smooth, reduced-motion safe) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 128px; }
  .hero-photo img { aspect-ratio: 16 / 9; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-box { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .step-line { display: none; }
  .why-panel img { aspect-ratio: 16 / 10; }
}
@media (max-width: 820px) {
  .call-bar { display: flex; }
  footer { padding-bottom: 132px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  section { padding: 72px 5%; }
  .hero { padding: 112px 5% 56px; }
  .hero-photo img { aspect-ratio: 4 / 3; }
  .quote-teaser { padding: 18px; }
  .quote-teaser-row { grid-template-columns: 1fr; }
  .quote-teaser .arrow { display: none; }
  .quote-teaser .btn-primary { width: 100%; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { flex: 1 1 auto; justify-content: center; }
  .trust-bar { gap: 14px 24px; padding: 16px 6%; }
  .quote-form { padding: 30px 22px; }
  .pricing-card { padding: 34px 26px; }
  .form-route { grid-template-columns: 1fr; }
  .form-route-arrow { display: none; }
  .photo-band-caption { position: static; margin-top: 14px; max-width: 100%; }
  .content-img { aspect-ratio: 3 / 2; }
  .cta-band { padding: 64px 5%; }
  .cta-band .btn-white { width: 100%; justify-content: center; }
  .footer-top { gap: 36px; }
}
