:root {
  --ink: #171712;
  --ink-soft: #5f5f57;
  --paper: #ffffff;
  --canvas: #f7f7f3;
  --line: #e8e7df;
  --taxi: #f5b51b;
  --taxi-light: #ffd85c;
  --taxi-deep: #dd9000;
  --success: #148a4b;
  --shadow-sm: 0 12px 32px rgba(33, 31, 21, 0.08);
  --shadow-lg: 0 30px 70px rgba(33, 31, 21, 0.13);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  overflow: visible;
  fill: currentColor;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(245, 181, 27, 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 104px 0;
}

.section--soft {
  background: var(--canvas);
}

.section--compact {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #8a5a00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--taxi-deep), var(--taxi-light));
  content: '';
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.page-hero h1,
.neighborhood-hero h1,
.hero h1 {
  margin: 0;
  font-family: 'Radio Canada', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p {
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-heading--left p {
  margin-inline: 0;
}

.accent {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.accent::after {
  position: absolute;
  right: -0.05em;
  bottom: 0.06em;
  left: -0.05em;
  z-index: -1;
  height: 0.28em;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--taxi), var(--taxi-light));
  content: '';
  opacity: 0.7;
  transform: skewX(-9deg);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--taxi-light), var(--taxi) 56%, var(--taxi-deep));
  box-shadow: 0 15px 30px rgba(221, 144, 0, 0.24);
  color: #1b170d;
}

.btn--primary:hover {
  box-shadow: 0 18px 36px rgba(221, 144, 0, 0.32);
}

.btn--dark {
  background: var(--ink);
  box-shadow: 0 15px 30px rgba(23, 23, 18, 0.2);
  color: var(--paper);
}

.btn--outline {
  border-color: rgba(23, 23, 18, 0.15);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.btn--wide {
  min-width: 180px;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
}

.topbar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__item,
.topbar__items {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a:hover {
  color: var(--taxi-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(23, 23, 18, 0.07);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(23, 23, 18, 0.08);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-family: 'Radio Canada', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__mark {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 9px 22px rgba(23, 23, 18, .13);
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.nav__links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #3f3f38;
  font-size: 0.86rem;
  font-weight: 700;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--taxi);
  content: '';
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__links a:hover::after,
.nav__links a[aria-current='page']::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav__links a[aria-current='page'] {
  color: var(--ink);
}

.nav__cta {
  min-height: 48px;
  gap: 9px;
  padding: 5px 15px 5px 6px;
  border-color: #e4e1d8;
  border-radius: 15px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 22px rgba(23, 23, 18, .09);
  color: #29291f;
}

.nav__cta .icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--taxi-light), var(--taxi));
  box-shadow: 0 7px 16px rgba(221, 144, 0, .2);
  color: #171712;
  font-size: .95rem;
}

.nav__cta:hover {
  border-color: rgba(221, 144, 0, .42);
  background: #fffaf0;
  box-shadow: 0 12px 26px rgba(23, 23, 18, .12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.25rem;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
  content: '';
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__icon::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(610px, calc(100svh - 114px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f3f1e9;
  isolation: isolate;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 37%, rgba(255, 255, 255, 0.28) 68%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(0deg, rgba(245, 181, 27, 0.08), rgba(245, 181, 27, 0.08));
  content: '';
}

.hero__content {
  width: min(1040px, 82%);
  padding: 58px 0 64px;
}

.hero h1 {
  max-width: 1040px;
  font-size: 1rem;
  line-height: 1;
}

.hero-title__brand,
.hero-title__promise {
  display: block;
  width: fit-content;
}

.hero-title__brand {
  font-size: clamp(2.9rem, 4.2vw, 4.2rem);
  line-height: .98;
}

.hero-title__promise {
  margin-top: 12px;
  font-size: clamp(2.05rem, 2.8vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}

@media (min-width: 1180px) {
  .hero-title__brand,
  .hero-title__promise {
    white-space: nowrap;
  }
}

.hero p {
  max-width: 790px;
  margin: 22px 0 0;
  color: #24241f;
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  font-weight: 500;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__actions .btn {
  min-height: 54px;
  padding-inline: 26px;
}

.hero__actions .btn--primary {
  color: #10100d;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding-bottom: 104px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  overflow: hidden;
  margin-inline: auto;
  border: 1px solid rgba(23, 23, 18, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 24px 30px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item::before {
  width: 34px;
  height: 3px;
  margin-bottom: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--taxi-deep), var(--taxi-light));
  content: '';
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 2px;
  font-family: 'Radio Canada', sans-serif;
  font-size: 1rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  border-color: rgba(245, 181, 27, 0.55);
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.vehicle-card__image {
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
  background: #11110f;
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-card:hover img {
  transform: scale(1.04);
}

.vehicle-card__body,
.service-card__body {
  padding: 28px;
}

.vehicle-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.vehicle-card h3,
.service-card h3,
.review-card h3,
.price-card h3 {
  margin: 0;
  font-family: 'Radio Canada', sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.vehicle-card p,
.service-card p,
.review-card p,
.price-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 99px;
  background: #fff4c3;
  color: #805200;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.vehicle-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--canvas);
  color: #48483f;
  font-size: 0.75rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.split__media {
  position: relative;
}

.split__media::before {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 0;
  width: 46%;
  height: 46%;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--taxi-light), var(--taxi-deep));
  content: '';
  transform: rotate(4deg);
}

.split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.split__caption {
  position: relative;
  z-index: 2;
  width: calc(100% - 34px);
  margin: -26px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 18, .08);
  border-radius: 15px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 36px rgba(23, 23, 18, .12);
  color: #3b3b34;
  font-size: .88rem;
  line-height: 1.55;
}

.split__caption strong {
  color: var(--ink);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #383831;
  font-weight: 600;
}

.check-list .icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: #fff1ac;
  color: #855500;
  font-size: 0.72rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 100%;
}

.service-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7d4, #ffdc6a);
  color: #805200;
  font-size: 1.45rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #775000;
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link .icon {
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  counter-increment: step;
}

.step::before {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--taxi-light);
  content: '0' counter(step);
  font-family: 'Radio Canada', sans-serif;
  font-weight: 700;
}

.step h3 {
  margin: 0;
  font-family: 'Radio Canada', sans-serif;
  font-size: 1.2rem;
}

.step p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.local-story {
  background: linear-gradient(135deg, #fffdf6 0%, #f6f5f0 100%);
}

.local-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(38px, 6vw, 82px);
}

.local-story .section-heading {
  margin-bottom: 0;
}

.local-story__article {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.local-story__article p {
  margin: 0;
  color: #45453f;
  font-size: 1rem;
  line-height: 1.8;
}

.local-story__article p + p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.neighborhoods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.neighborhood-link {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.neighborhood-link span {
  margin: 0;
}

.neighborhood-link:hover {
  border-color: var(--taxi);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 30px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--taxi-deep);
  font-size: 0.85rem;
}

.review-card blockquote {
  margin: 0;
  color: #35352f;
  font-size: 0.95rem;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.review-card__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--taxi-light), var(--taxi));
  color: var(--ink);
  font-weight: 900;
}

.review-card footer strong,
.review-card footer span {
  display: block;
  line-height: 1.35;
}

.review-card footer span {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.faq-list {
  display: grid;
  max-width: 860px;
  gap: 12px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(245, 181, 27, 0.55);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-question .icon {
  color: #8a5a00;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 21px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.cta-panel {
  position: relative;
  display: flex;
  min-height: 240px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  overflow: hidden;
  padding: 48px clamp(30px, 6vw, 70px);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #ffe785 0%, var(--taxi) 55%, #e89a05 100%);
  box-shadow: 0 30px 70px rgba(221, 144, 0, 0.22);
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  border: 1px solid rgba(23, 23, 18, 0.13);
  border-radius: 50%;
  content: '';
}

.cta-panel::before {
  top: -120px;
  right: 23%;
  width: 280px;
  height: 280px;
}

.cta-panel::after {
  right: -100px;
  bottom: -160px;
  width: 340px;
  height: 340px;
}

.cta-panel__content,
.cta-panel__actions {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 650px;
  margin: 0;
  font-family: 'Radio Canada', sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.cta-panel p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(23, 23, 18, 0.72);
}

.cta-panel__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 92px;
  background:
    radial-gradient(circle at 82% 35%, rgba(245, 181, 27, 0.22), transparent 24%),
    linear-gradient(135deg, #fffdf5, #f6f5ef);
}

.page-hero::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 300px;
  height: 300px;
  border: 58px solid rgba(245, 181, 27, 0.11);
  border-radius: 50%;
  content: '';
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: #6e6e65;
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.breadcrumbs a:hover {
  color: #8a5a00;
}

.breadcrumbs--center {
  justify-content: center;
}

.feature-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-band {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.feature-band img {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border-radius: 18px;
  object-fit: cover;
}

.feature-band strong,
.feature-band span {
  display: block;
}

.feature-band strong {
  font-family: 'Radio Canada', sans-serif;
  font-size: 1.05rem;
}

.feature-band span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  padding: 32px;
}

.price-card--featured {
  border-color: rgba(245, 181, 27, 0.58);
  background: linear-gradient(180deg, #fffefa, #fff8dc);
}

.price-card__icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--taxi-light);
  font-size: 1.35rem;
}

.price-card__price {
  display: block;
  margin: 24px 0 4px;
  font-family: 'Radio Canada', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-card__note {
  display: block;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.price-card .check-list {
  margin-bottom: 28px;
}

.pricing-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
}

.pricing-row + .pricing-row {
  border-top: 1px solid var(--line);
}

.pricing-row--head {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-row strong {
  font-size: 0.93rem;
}

.pricing-row span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.pricing-row--head span {
  color: rgba(255, 255, 255, 0.8);
}

.fare-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.fare-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fare-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fare-row {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  color: #393933;
  font-size: 0.9rem;
}

.fare-row:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.fare-row strong {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 10px;
  background: #fff2b5;
  color: #704900;
  font-family: 'Radio Canada', sans-serif;
  font-size: 0.88rem;
  white-space: nowrap;
}

.fare-note {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.fare-note .eyebrow {
  justify-content: center;
}

.fare-note h2 {
  margin: 18px 0 0;
  font-family: 'Radio Canada', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.fare-note p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff4c3, var(--taxi-light));
  color: #744b00;
  font-size: 1.25rem;
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.contact-card strong {
  margin-top: 3px;
  font-family: 'Radio Canada', sans-serif;
  font-size: 1.02rem;
}

.map-wrap {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--canvas);
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  border-color: var(--taxi);
  transform: translateY(-2px);
}

.neighborhood-main {
  min-height: calc(100svh - 114px);
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 181, 27, 0.16), transparent 35%),
    var(--canvas);
}

.neighborhood-hero {
  display: grid;
  min-height: 600px;
  place-items: center;
  padding: 78px 0 62px;
  text-align: center;
}

.neighborhood-hero__inner {
  max-width: 800px;
}

.neighborhood-hero__icon {
  position: relative;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--taxi-light), var(--taxi), var(--taxi-deep));
  box-shadow: 0 24px 55px rgba(221, 144, 0, 0.28);
  color: var(--ink);
  font-size: 2.45rem;
  transform: rotate(-5deg);
}

.neighborhood-hero__icon .icon {
  transform: rotate(5deg);
}

.neighborhood-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
}

.neighborhood-hero p {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.neighborhood-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: 32px;
}

.mini-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.mini-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.75);
  color: #55554d;
  font-size: 0.76rem;
  font-weight: 700;
}

.mini-benefits .icon {
  color: #916000;
}

.neighborhood-faq {
  padding: 0 0 80px;
}

.site-footer {
  padding: 48px 0;
  background: #000;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.site-footer__location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--taxi-light);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-footer__brand {
  color: var(--paper);
  font-family: 'Radio Canada', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  font-size: 0.8rem;
}

.site-footer a:hover {
  color: var(--taxi-light);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: none;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--taxi-light), var(--taxi-deep));
  box-shadow: 0 18px 40px rgba(221, 144, 0, 0.35);
  color: var(--ink);
  font-size: 1.35rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1080px) {
  .nav__links {
    gap: 16px;
  }

  .nav__links a {
    font-size: 0.78rem;
  }

  .nav__cta {
    display: none;
  }

  .neighborhoods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .topbar__items .topbar__item:last-child {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1000;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 14px 20px 22px;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 25px 45px rgba(23, 23, 18, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links a {
    min-height: 50px;
    font-size: 0.9rem;
  }

  .nav__links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__background {
    object-position: 62% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84) 60%, rgba(255, 255, 255, 0.48));
  }

  .hero__content {
    width: min(820px, 92%);
  }

  .trust-strip {
    margin-top: -20px;
    padding-bottom: 84px;
  }

  .trust-strip__inner,
  .cards,
  .service-grid,
  .steps,
  .reviews,
  .feature-bands,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 96px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cards,
  .service-grid,
  .price-grid {
    max-width: 620px;
    margin-inline: auto;
  }

  .split,
  .contact-grid,
  .local-story__grid {
    grid-template-columns: 1fr;
  }

  .split__media {
    max-width: 680px;
  }

  .neighborhoods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .section--compact {
    padding: 56px 0;
  }

  .topbar__inner {
    min-height: 32px;
    justify-content: center;
  }

  .topbar__items {
    display: none;
  }

  .brand {
    gap: 9px;
    font-size: 0.9rem;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero__background {
    object-position: 66% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.68));
  }

  .hero__content {
    width: 100%;
    padding: 58px 0 68px;
  }

  .hero-title__brand {
    font-size: clamp(2.15rem, 9.5vw, 3.15rem);
    white-space: normal;
  }

  .hero-title__promise {
    margin-top: 10px;
    font-size: clamp(1.75rem, 7.3vw, 2.35rem);
    line-height: 1.08;
    white-space: normal;
  }

  .hero p {
    line-height: 1.62;
  }

  .hero__actions,
  .neighborhood-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn,
  .neighborhood-hero__actions .btn {
    width: 100%;
  }

  .trust-item {
    padding: 20px;
  }

  .local-story__article {
    padding: 26px 22px;
  }

  .fare-list__grid {
    grid-template-columns: 1fr;
  }

  .fare-row:nth-child(odd) {
    border-right: 0;
  }

  .split__media::before {
    top: -10px;
    right: -4px;
  }

  .split__media img {
    min-height: 320px;
  }

  .neighborhoods {
    grid-template-columns: 1fr;
  }

  .neighborhood-link {
    min-height: 64px;
  }

  .cta-panel {
    min-height: 0;
    padding: 36px 24px;
    border-radius: var(--radius);
  }

  .cta-panel__actions,
  .cta-panel__actions .btn {
    width: 100%;
  }

  .page-hero {
    padding: 76px 0 70px;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .feature-band {
    align-items: flex-start;
    padding: 18px;
  }

  .feature-band img {
    width: 66px;
    height: 66px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pricing-row--head {
    display: none;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

  .neighborhood-hero {
    min-height: 560px;
    padding-top: 58px;
  }

  .neighborhood-hero__icon {
    width: 88px;
    height: 88px;
    border-radius: 26px;
    font-size: 2rem;
  }

  .site-footer {
    padding: 40px 0 92px;
  }

  .site-footer__links {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .floating-call {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
