@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #2d2d2d;
  --ink-2: #1e1e1e;
  --orange: #e8572a;
  --orange-dark: #b6401f;
  --cream: #f5f5f3;
  --paper: #ffffff;
  --teal: #1bbdb6;
  --teal-dark: #0e7772;
  --teal-soft: #e4f7f6;
  --teal-action: #0f817c;
  --teal-action-hover: #0a6965;
  --beige: #c4b9a5;
  --line: #d9d6cf;
  --muted: #666d70;
  --white: #ffffff;
  --success: #187a56;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --shadow: 0 18px 55px rgba(45, 45, 45, 0.14);
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 800;
  transition: top .2s ease;
}

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

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.utility-bar {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p { margin: 0; }
.utility-inner a { color: var(--white); text-decoration: none; }
.utility-inner a:hover { color: var(--teal); }
.utility-status { display: inline-flex; align-items: center; gap: 9px; }
.utility-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(240,90,40,.2); }
.utility-links { display: flex; align-items: center; gap: 18px; }
.utility-links a { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.22); }

.nav-wrap {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
  line-height: .85;
}

.brand-logo {
  width: 154px;
  height: 70px;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.site-footer .brand-logo {
  width: 220px;
  height: 100px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link,
.nav-drop-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-current='page'],
.nav-drop:hover .nav-drop-button { color: var(--orange); }

.nav-link[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
}

.nav-drop { position: relative; }
.nav-drop-button::after { content: '↓'; margin-left: 7px; color: var(--orange); }

.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% - 2px);
  width: 260px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.nav-drop:hover .nav-dropdown,
.nav-drop:focus-within .nav-dropdown,
.nav-drop.is-open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-dropdown a::after { content: '→'; color: var(--orange); }
.nav-dropdown a:hover { background: var(--cream); }

.nav-actions { display: flex; align-items: center; gap: 14px; padding-left: 22px; border-left: 1px solid var(--line); }
.nav-phone { display: flex; flex-direction: column; gap: 2px; text-decoration: none; white-space: nowrap; line-height: 1; }
.nav-phone span { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-phone strong { font-family: var(--font-display); font-size: 18px; font-weight: 900; }
.nav-phone:hover strong { color: var(--orange); }
.nav-mobile-actions { display: none; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 2px solid var(--teal-action);
  background: var(--teal-action);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.button:hover { background: var(--teal-action-hover); border-color: var(--teal-action-hover); transform: translateY(-2px); }
.button-dark { background: var(--ink); border-color: var(--ink); }
.button-dark:hover { background: var(--ink-2); border-color: var(--ink-2); }
.button-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-light:hover { background: var(--teal); border-color: var(--teal); color: var(--ink); }
.button-small { min-height: 42px; padding-inline: 17px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before { content: ''; width: 31px; height: 3px; background: var(--orange); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: .98; text-transform: uppercase; }
h1 { margin-bottom: 24px; font-size: clamp(52px, 7.2vw, 100px); font-weight: 900; letter-spacing: -.035em; }
h2 { margin-bottom: 23px; font-size: clamp(38px, 5vw, 64px); font-weight: 900; letter-spacing: -.02em; }
h3 { margin-bottom: 12px; font-size: 27px; font-weight: 800; letter-spacing: -.01em; }
h4 { margin-bottom: 10px; font-size: 18px; font-weight: 800; letter-spacing: .01em; }

.display-accent { color: var(--orange); }
.lede { max-width: 730px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.copy { max-width: 720px; color: var(--muted); }
.copy strong, .lede strong { color: var(--ink); }

.hero {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  background: var(--beige);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: 'TORONTO / GTA / BEYOND';
  position: absolute;
  left: -6px;
  bottom: -24px;
  color: rgba(45,45,45,.045);
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 205px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.hero-grid {
  min-height: 690px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, .75fr);
  align-items: center;
  gap: 70px;
  padding-block: 72px 84px;
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lede { max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-note { margin: 17px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; }

.hero-photo-card {
  position: relative;
  max-width: 500px;
  margin: 0;
  padding: 10px;
  background: var(--white);
  box-shadow: 22px 22px 0 var(--teal);
  transform: rotate(1deg);
}

.hero-photo-card::before {
  content: 'OPEN / 416';
  position: absolute;
  right: -9px;
  top: 24px;
  z-index: 2;
  padding: 7px 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.hero-photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.hero-photo-card figcaption { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 16px 9px 7px; }
.hero-photo-card figcaption span { color: var(--teal-dark); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-photo-card figcaption strong { max-width: 220px; font-family: var(--font-display); font-size: 22px; line-height: .95; text-align: right; text-transform: uppercase; }
.photo-route-line { position: absolute; left: -26px; top: 38%; z-index: 2; padding: 8px 12px 8px 28px; background: var(--ink); color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.photo-route-line::before { content: ''; position: absolute; left: 10px; top: 50%; width: 8px; height: 8px; border: 2px solid var(--teal); border-radius: 50%; transform: translateY(-50%); }

.trust-strip { background: var(--ink); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 91px; display: flex; align-items: center; gap: 13px; padding: 20px; border-left: 1px solid rgba(255,255,255,.14); }
.trust-item:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.trust-num { flex: 0 0 auto; color: var(--teal); font-family: var(--font-display); font-size: 27px; font-weight: 900; }
.trust-item p { margin: 0; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }

.section { padding-block: 100px; }
.section-sm { padding-block: 70px; }
.section-cream { background: var(--cream); }
.section-blue { background: var(--teal); }
.section-ink { background: var(--ink); color: var(--white); }
.section-ink h2, .section-ink h3, .section-ink h4 { color: var(--white); }
.section-ink .lede, .section-ink .copy { color: rgba(255,255,255,.68); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading p { max-width: 480px; margin-bottom: 5px; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 315px; position: relative; display: flex; flex-direction: column; padding: 28px; overflow: hidden; background: var(--white); border: 1px solid var(--line); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { border-color: var(--orange); box-shadow: 10px 10px 0 var(--teal); transform: translate(-3px, -3px); }
.service-card:nth-child(2) { background: var(--ink); }
.service-card:nth-child(2) h3, .service-card:nth-child(2) .card-index { color: var(--white); }
.service-card:nth-child(2) p { color: rgba(255,255,255,.67); }
.service-card:nth-child(5) { background: var(--teal); border-color: var(--teal); }
.service-card:nth-child(5) h3, .service-card:nth-child(5) p, .service-card:nth-child(5) .card-index, .service-card:nth-child(5) .text-link { color: var(--ink); }
.card-index { display: flex; align-items: center; justify-content: space-between; margin-bottom: 54px; font-family: var(--font-display); font-size: 17px; font-weight: 800; }
.card-index::after { content: ''; width: 42px; height: 3px; background: var(--orange); }
.service-card:nth-child(5) .card-index::after { background: var(--ink); }
.service-card p { color: var(--muted); font-size: 14px; }
.text-link { margin-top: auto; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.move-gallery-section { background: var(--paper); }
.photo-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(2, 240px); gap: 14px; }
.photo-tile { position: relative; min-height: 0; margin: 0; overflow: hidden; background: var(--ink); }
.photo-tile:first-child { grid-column: 1 / 8; grid-row: 1 / 3; }
.photo-tile:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.photo-tile:nth-child(3) { grid-column: 8 / 13; grid-row: 2; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.photo-tile:hover img { transform: scale(1.025); }
.photo-tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: linear-gradient(transparent, rgba(30,30,30,.9)); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.photo-tile figcaption span { color: var(--teal); font-family: var(--font-display); font-size: 20px; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.split-even { grid-template-columns: 1fr 1fr; }
.sticky-intro { position: sticky; top: 135px; }
.feature-list { border-top: 1px solid var(--line); }
.feature-row { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.feature-number { color: var(--orange); font-family: var(--font-display); font-size: 22px; font-weight: 900; }
.feature-row h3 { margin-bottom: 7px; font-size: 24px; }
.feature-row p { margin: 0; color: var(--muted); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: steps; }
.step { min-height: 280px; position: relative; padding: 30px; background: var(--white); border-top: 5px solid var(--orange); counter-increment: steps; }
.step::before { content: '0' counter(steps); display: block; margin-bottom: 57px; color: var(--teal); font-family: var(--font-display); font-size: 55px; font-weight: 900; line-height: .8; }
.step p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.cta-band { overflow: hidden; background: var(--ink); color: var(--white); }
.cta-inner { min-height: 240px; position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-block: 52px; }
.cta-inner::after { content: '→'; position: absolute; right: 260px; top: -100px; color: rgba(255,255,255,.13); font-family: var(--font-display); font-size: 300px; font-weight: 900; }
.cta-band h2 { position: relative; z-index: 1; max-width: 720px; margin: 0; color: var(--white); }
.cta-band .button { position: relative; z-index: 1; flex: 0 0 auto; }

.page-hero { position: relative; overflow: hidden; padding-block: 88px 80px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero.has-photo::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 38%; background-image: linear-gradient(90deg, rgba(245,245,243,.08), rgba(245,245,243,0)), var(--page-photo); background-size: cover; background-position: center; box-shadow: inset 9px 0 0 var(--teal); }
.page-hero.has-photo .shell { padding-right: 39%; }
.page-hero.has-photo h1 { max-width: 740px; }
.page-hero::before { content: attr(data-route); position: absolute; right: -20px; top: 12px; color: rgba(45,45,45,.05); font-family: var(--font-display); font-size: clamp(140px, 26vw, 360px); font-weight: 900; line-height: 1; }
.page-hero .shell { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 40px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.page-hero h1 { max-width: 980px; }
.page-hero .lede { margin-bottom: 0; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.inclusion-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.check-card { min-height: 104px; position: relative; padding: 22px 22px 22px 58px; background: var(--white); border: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.check-card::before { content: '✓'; position: absolute; left: 21px; top: 19px; display: grid; place-items: center; width: 25px; height: 25px; background: var(--orange); color: var(--white); font-weight: 900; }
.check-card strong { display: block; margin-bottom: 2px; color: var(--ink); }

.callout { position: relative; padding: 34px; background: var(--teal-soft); border-left: 5px solid var(--orange); }
.callout h3 { font-size: 25px; }
.callout p:last-child { margin-bottom: 0; }
.legal-note { color: var(--muted); font-size: 12px; }
.legal-note a { font-weight: 700; }

.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.route-card { min-height: 185px; padding: 24px; background: var(--white); border: 1px solid var(--line); }
.route-card .route-meta { margin-bottom: 29px; color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.route-card h3 { margin-bottom: 9px; }
.route-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 8px 12px; background: var(--white); border: 1px solid var(--line); color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }

.timeline { border-left: 3px solid var(--orange); margin-left: 11px; padding-left: 34px; }
.timeline-item { position: relative; padding: 0 0 35px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -43px; top: 1px; width: 15px; height: 15px; border: 4px solid var(--orange); background: var(--paper); border-radius: 50%; }
.timeline-item h3 { font-size: 24px; }
.timeline-item p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.18); }
.stat { min-height: 150px; display: grid; place-content: center; padding: 22px; text-align: center; border-right: 1px solid rgba(255,255,255,.18); }
.stat:last-child { border-right: 0; }
.stat strong { color: var(--orange); font-family: var(--font-display); font-size: 45px; font-weight: 900; line-height: 1; }
.stat span { margin-top: 8px; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.faq-toolbar { display: flex; gap: 10px; margin-bottom: 28px; }
.faq-search { width: 100%; min-height: 54px; padding: 0 17px; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 60px 25px 0; list-style: none; font-family: var(--font-display); font-size: 25px; font-weight: 800; line-height: 1.15; text-transform: uppercase; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 8px; top: 19px; color: var(--orange); font-family: var(--font-display); font-size: 34px; font-weight: 600; }
.faq-list details[open] summary::after { content: '–'; }
.faq-answer { max-width: 830px; padding: 0 50px 25px 0; color: var(--muted); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-empty { display: none; padding: 25px 0; color: var(--muted); }

.quote-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 65px; align-items: start; }
.contact-panel { position: sticky; top: 135px; }
.contact-block { margin-top: 28px; padding: 27px; background: var(--ink); color: var(--white); }
.contact-block h3 { color: var(--white); }
.contact-block a { color: var(--white); font-weight: 800; text-decoration: none; }
.contact-block a:hover { color: var(--teal); }
.contact-block p { margin-bottom: 12px; color: rgba(255,255,255,.68); font-size: 13px; }
.contact-block p:last-child { margin-bottom: 0; }

.quote-form { padding: 34px; background: var(--white); border: 1px solid var(--line); box-shadow: 14px 14px 0 var(--teal-soft); }
.form-section { margin: 0 0 32px; padding: 0 0 28px; border: 0; border-bottom: 1px solid var(--line); }
.form-section:last-of-type { border-bottom: 0; padding-bottom: 0; }
.form-section legend { width: 100%; margin-bottom: 17px; font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label, .field > span { color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 11px 13px; border: 1px solid #bcb8af; border-radius: 0; background: var(--paper); color: var(--ink); outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,90,40,.12); }
.field-help { color: var(--muted); font-size: 11px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.choice { display: flex; align-items: center; gap: 9px; min-height: 45px; padding: 9px 11px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); font-size: 12px; font-weight: 700; cursor: pointer; }
.choice input { width: 16px; height: 16px; accent-color: var(--orange); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0 16px; color: var(--muted); font-size: 12px; }
.consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--orange); }
.form-status { min-height: 22px; margin: 12px 0 0; color: var(--success); font-size: 12px; font-weight: 800; }
.form-microcopy { margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.review-gate { display: grid; grid-template-columns: .8fr 1.2fr; border: 1px solid var(--line); }
.review-side { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; background: var(--ink); color: var(--white); }
.review-side h2, .review-side h3 { color: var(--white); }
.review-side .stars { color: var(--orange); font-size: 24px; letter-spacing: .12em; }
.review-empty { display: grid; place-items: center; min-height: 360px; padding: 44px; background: var(--cream); text-align: center; }
.review-empty p { max-width: 570px; color: var(--muted); }

.site-footer { background: var(--ink-2); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 50px; padding-block: 70px; }
.footer-brand p { max-width: 330px; margin: 22px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-title { margin-bottom: 18px; color: var(--teal); font-family: var(--font-body); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.68); font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.42); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: inline-flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 17px; background: #1b8f59; color: var(--white); box-shadow: 0 10px 28px rgba(45,45,45,.22); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.whatsapp-float:hover { background: #137346; }

[data-reveal] { opacity: 1; transform: none; }

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

.hero [data-reveal],
.page-hero .shell { animation: rise-in .55s ease both; }

@media (max-width: 1080px) {
  .nav-phone span { display: none; }
  .nav-actions { gap: 10px; padding-left: 16px; }
  .main-nav { gap: 0; }
  .nav-link, .nav-drop-button { padding-inline: 8px; }
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 35px; }
  .split { gap: 45px; }
}

@media (max-width: 960px) {
  .utility-status { display: none; }
  .utility-inner { justify-content: center; }
  .nav-wrap { min-height: 72px; display: flex; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-actions { display: none; }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; z-index: 20; height: calc(100dvh - 104px); display: none; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; overflow-y: auto; padding: 24px; background: var(--paper); border-top: 1px solid var(--line); }
  .menu-open .main-nav { display: flex; }
  .nav-link, .nav-drop-button { width: 100%; min-height: 53px; justify-content: space-between; padding-inline: 6px; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav-link[aria-current='page']::after { left: 0; right: auto; bottom: 10px; width: 28px; }
  .nav-drop-button::after { content: '+'; font-size: 20px; }
  .nav-drop.is-open .nav-drop-button::after { content: '−'; }
  .nav-dropdown { display: none; position: static; width: 100%; padding: 7px 0 11px 12px; border: 0; box-shadow: none; opacity: 1; transform: none; pointer-events: auto; background: transparent; }
  .nav-drop.is-open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 8px 5px; color: var(--muted); }
  .nav-mobile-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
  .menu-open .menu-toggle span { opacity: 0; }
  .menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 70px 95px; }
  .hero-visual { padding: 0 22px 20px 0; }
  .hero-photo-card { max-width: 520px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.14); }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split-even, .quote-layout, .review-gate { grid-template-columns: 1fr; }
  .sticky-intro, .contact-panel { position: static; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 210px; }
  .step::before { margin-bottom: 35px; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .utility-bar { display: none; }
  .main-nav { height: calc(100dvh - 72px); }
  .brand-logo { width: 137px; height: 62px; }
  .site-footer .brand-logo { width: 190px; height: 86px; }
  h1 { font-size: clamp(48px, 16vw, 68px); }
  h2 { font-size: clamp(37px, 12vw, 50px); }
  .hero-grid { padding-block: 55px 80px; }
  .hero-actions, .page-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button, .page-actions .button { width: 100%; }
  .route-place { font-size: 34px; }
  .trust-grid, .card-grid, .inclusion-grid, .route-grid, .stat-row, .form-grid, .choice-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 74px; border-right: 1px solid rgba(255,255,255,.14); border-top: 1px solid rgba(255,255,255,.14); }
  .section { padding-block: 73px; }
  .section-sm { padding-block: 55px; }
  .section-heading { display: block; margin-bottom: 31px; }
  .section-heading p { margin-top: 20px; }
  .service-card { min-height: 275px; }
  .card-index { margin-bottom: 35px; }
  .feature-row { grid-template-columns: 38px 1fr; gap: 12px; }
  .cta-inner { min-height: 300px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .cta-inner::after { right: -30px; }
  .page-hero { padding-block: 60px; }
  .breadcrumbs { margin-bottom: 28px; }
  .quote-form { padding: 22px 18px; box-shadow: 7px 7px 0 var(--teal-soft); }
  .field-wide { grid-column: auto; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .stat:last-child { border-bottom: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding-block: 55px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 48px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}

@media (max-width: 960px) {
  .page-hero.has-photo { padding-bottom: 330px; }
  .page-hero.has-photo .shell { padding-right: 0; }
  .page-hero.has-photo::after { top: auto; left: 0; width: 100%; height: 260px; box-shadow: inset 0 8px 0 var(--teal); }
}

@media (max-width: 620px) {
  .hero-photo-card { box-shadow: 12px 12px 0 var(--teal); }
  .hero-photo-card figcaption { align-items: start; flex-direction: column; gap: 6px; }
  .hero-photo-card figcaption strong { text-align: left; }
  .photo-route-line { left: -8px; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 260px); }
  .photo-tile:first-child, .photo-tile:nth-child(2), .photo-tile:nth-child(3) { grid-column: 1; grid-row: auto; }
  .page-hero.has-photo { padding-bottom: 290px; }
  .page-hero.has-photo::after { height: 225px; }
}

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