:root {
  --ink: #090f0c;
  --ink-soft: #26332d;
  --muted: #65736c;
  --line: #d9dfdb;
  --line-dark: #aab5af;
  --paper: #ffffff;
  --wash: #f5f7f5;
  --mint: #08a970;
  --mint-dark: #006f4b;
  --mint-pale: #e7f6ef;
  --black: #060b09;
  --radius-sm: 4px;
  --radius-md: 8px;
  --container: 1180px;
  --nav-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

button {
  color: inherit;
}

figure,
dl,
dd,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.65rem, 5vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

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

.section {
  padding: 104px 0;
}

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

.section-label,
.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  flex: 0 0 auto;
}

.section-label.light,
.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}

.compact-lead {
  font-size: 1.05rem;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-intro > p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-head {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-head .lead {
  margin-top: 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 730;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  border-color: var(--ink);
  outline: none;
}

.btn-primary {
  border-color: var(--black);
  background: var(--black);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--mint);
  background: var(--mint);
}

.btn-secondary,
.btn-mint {
  border-color: var(--mint-dark);
  background: var(--mint-pale);
  color: var(--mint-dark);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-mint:hover,
.btn-mint:focus-visible {
  background: #d5f0e4;
}

.btn-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.btn-light:hover,
.btn-light:focus-visible {
  border-color: var(--mint);
  background: var(--mint);
  color: #fff;
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.66);
  background: transparent;
  color: #fff;
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-text {
  min-height: 40px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  color: var(--mint-dark);
  font-weight: 730;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.w-full {
  width: 100%;
}

.mb-20 {
  margin-bottom: 20px;
}

/* Navigation */
.topnav {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--nav-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.topnav-inner {
  position: relative;
  display: flex;
  height: 100%;
  gap: 24px;
  align-items: center;
}

.logo {
  display: flex;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: auto;
}

.brand-logo-nav {
  width: 210px;
}

.navlinks {
  display: flex;
  margin-left: auto;
  gap: 4px;
  align-items: center;
}

.nav-simple,
.nav-trigger {
  min-height: 42px;
  padding: 9px 11px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 680;
  white-space: nowrap;
}

.nav-simple:hover,
.nav-simple.active,
.nav-group.active > .nav-trigger,
.nav-trigger:hover {
  border-bottom-color: var(--mint);
  color: var(--ink);
}

.nav-group {
  position: relative;
}

.nav-trigger::after {
  margin-left: 7px;
  content: "▾";
  font-size: 0.68rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  width: 340px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.nav-group:nth-last-of-type(-n + 2) .nav-dropdown {
  right: 0;
  left: auto;
}

.nav-group.open .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: grid;
}

.nav-menu-item {
  display: grid;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.nav-menu-item:hover,
.nav-menu-item:focus-visible {
  background: var(--wash);
  outline: none;
}

.nav-menu-item strong {
  font-size: 0.9rem;
}

.nav-menu-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--wash);
}

.lang-option {
  min-width: 40px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 740;
  text-align: center;
}

.lang-option.active {
  background: var(--black);
  color: #fff;
}

.nav-download {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  font-weight: 730;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle i {
  position: relative;
  margin-left: 10px;
}

.menu-toggle i::before {
  position: absolute;
  top: -6px;
}

.menu-toggle i::after {
  position: absolute;
  top: 6px;
}

/* Homepage */
.home-hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--nav-height)));
  overflow: hidden;
  background: #151a17;
  color: #fff;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 6, 0.65);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  max-width: 900px;
  padding-top: 110px;
  padding-bottom: 86px;
  flex-direction: column;
  justify-content: center;
}

.home-hero h1 {
  max-width: 760px;
}

.home-hero .lead {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
}

.home-hero .cta-row {
  margin-top: 34px;
}

.home-hero-stats {
  display: grid;
  max-width: 680px;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  grid-template-columns: repeat(2, 1fr);
}

.home-hero-stats div {
  padding: 24px 34px 0 0;
}

.home-hero-stats div + div {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.home-hero-stats dt {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
}

.home-hero-stats dd {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.home-service-list {
  border-top: 1px solid var(--line);
}

.home-service-row {
  display: grid;
  min-height: 230px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  gap: 34px;
  grid-template-columns: 70px minmax(0, 1fr) minmax(260px, 430px);
  align-items: center;
}

.home-service-row:hover img {
  transform: scale(1.025);
}

.home-service-index {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.home-service-row h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.home-service-row p {
  max-width: 540px;
  color: var(--muted);
}

.home-service-row small {
  display: block;
  margin-top: 24px;
  color: var(--mint-dark);
  font-size: 0.88rem;
  font-weight: 740;
}

.home-service-row img {
  width: 100%;
  height: 170px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  transition: transform 220ms ease;
}

.other-service-links {
  display: grid;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.other-service-links a {
  display: flex;
  min-height: 88px;
  padding: 20px 14px;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  font-weight: 720;
}

.other-service-links a + a {
  border-left: 1px solid var(--line);
}

.other-service-links a:hover {
  color: var(--mint-dark);
}

.home-proof {
  background: var(--black);
  color: #fff;
}

.proof-layout {
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: start;
}

.proof-copy {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.proof-copy p:not(.section-label) {
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.67);
}

.proof-copy .text-link {
  color: #78d9b6;
}

.proof-table {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.proof-table div {
  display: grid;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  gap: 24px;
  grid-template-columns: 150px 1fr;
  align-items: baseline;
}

.proof-table dt {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 800;
}

.proof-table dd {
  color: rgba(255, 255, 255, 0.68);
}

.area-pair {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
}

.area-pair > a {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--black);
  color: #fff;
}

.area-pair img {
  width: 100%;
  height: 100%;
  opacity: 0.68;
  object-fit: cover;
  transition: transform 250ms ease;
}

.area-pair > a:hover img {
  transform: scale(1.025);
}

.area-pair > a > div {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.area-pair h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.area-pair p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.76);
}

.area-pair span {
  font-weight: 740;
}

.home-app {
  border-top: 1px solid var(--line);
  background: var(--wash);
}

.app-editorial {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
}

.app-editorial h2 {
  max-width: 550px;
}

.app-editorial p:not(.section-label) {
  max-width: 520px;
  margin: 24px 0 30px;
  color: var(--muted);
}

.app-image-crop {
  height: 530px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #e9f6f0;
}

.app-image-crop img {
  width: 210%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 12% center;
}

.campaign {
  overflow: hidden;
}

.campaign-track {
  position: relative;
  min-height: 470px;
}

.campaign-slide {
  display: none;
  height: 470px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--black);
  color: #fff;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  grid-template-rows: minmax(0, 1fr);
}

.campaign-slide.active {
  display: grid;
}

.campaign-slide > div {
  display: flex;
  min-height: 0;
  padding: 52px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.campaign-slide h3 {
  font-size: clamp(2rem, 3.7vw, 3.8rem);
}

.campaign-slide p {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.72);
}

.campaign-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

:where(main section[id], main [id].section-anchor) {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.carousel-controls {
  display: flex;
  margin-top: 18px;
  justify-content: space-between;
  align-items: center;
}

.carousel-controls > button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

.carousel-controls > div {
  display: flex;
  gap: 8px;
}

.carousel-controls [data-carousel-dot] {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: var(--line-dark);
  cursor: pointer;
}

.carousel-controls [data-carousel-dot].active {
  background: var(--mint);
}

.final-cta {
  padding: 72px 0;
  background: var(--mint-dark);
  color: #fff;
}

.final-cta-inner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.final-cta p {
  margin-top: 12px;
  color: #d8e2de;
}

/* Service pages */
.service-hero {
  padding: 74px 0 82px;
  border-bottom: 1px solid var(--line);
}

.service-hero-grid {
  display: grid;
  min-height: 560px;
  gap: 70px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
}

.service-hero-copy .lead {
  margin: 26px 0 30px;
}

.service-hero-media {
  height: 560px;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.hero-facts {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.hero-facts div {
  padding-top: 18px;
}

.hero-facts div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  font-size: 1.18rem;
  font-weight: 760;
}

.hero-facts dd {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.numbered-list {
  border-top: 1px solid var(--line);
}

.scope-item {
  display: grid;
  min-height: 150px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  gap: 36px;
  grid-template-columns: 70px 1fr;
  align-items: start;
}

.item-number {
  color: var(--mint-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.scope-item p {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
}

.split-editorial {
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: start;
}

.editorial-copy .lead {
  margin-top: 24px;
}

.plain-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plain-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 680;
}

.plain-list li::before {
  margin-right: 12px;
  color: var(--mint);
  content: "✓";
}

.pricing-note {
  padding: 34px 0 34px 34px;
  border-left: 4px solid var(--mint);
}

.pricing-note > span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
  text-transform: uppercase;
}

.pricing-note h3 {
  margin: 18px 0;
}

.pricing-note p {
  color: var(--muted);
}

.service-proof {
  background: var(--wash);
}

.proof-editorial {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
}

.proof-lines {
  margin: 0;
  padding: 0;
  counter-reset: proof;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.proof-lines li {
  display: flex;
  min-height: 76px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  gap: 18px;
  align-items: center;
  font-weight: 690;
}

.proof-lines li::before {
  color: var(--mint-dark);
  content: "0" counter(proof);
  counter-increment: proof;
  font-size: 0.78rem;
  font-weight: 800;
}

.related-list {
  display: grid;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.related-link {
  display: flex;
  min-height: 270px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
}

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

.related-link > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 740;
}

.related-link strong {
  margin: 28px 0;
  font-size: 1.45rem;
  line-height: 1.35;
}

.related-link small {
  margin-top: auto;
  color: var(--mint-dark);
  font-weight: 740;
}

.related-link:hover {
  background: var(--wash);
}

/* City and regional pages */
.city-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.city-hero-grid {
  display: grid;
  min-height: 650px;
  gap: 68px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
}

.city-hero-copy .lead {
  margin: 26px 0 30px;
}

.city-hero-media {
  height: 650px;
}

.city-hero-media img {
  width: 100%;
  height: calc(100% - 35px);
  object-fit: cover;
}

.city-hero-media figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.city-layout-b .city-hero {
  position: relative;
  min-height: 680px;
  background: var(--black);
  color: #fff;
}

.city-layout-b .city-hero-grid {
  position: static;
  display: block;
  min-height: 680px;
}

.city-layout-b .city-hero-media {
  position: absolute;
  inset: 0;
  height: 100%;
}

.city-layout-b .city-hero-media img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.city-layout-b .city-hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.city-layout-b .city-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 680px;
  max-width: 830px;
  padding: 100px 0;
  flex-direction: column;
  justify-content: center;
}

.city-layout-b .city-hero-copy .lead {
  color: rgba(255, 255, 255, 0.78);
}

.city-layout-b .city-hero-copy .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.city-layout-b .city-hero-copy .text-link {
  color: #fff;
}

.city-layout-c .city-hero {
  padding-top: 76px;
}

.city-layout-c .city-hero-grid {
  min-height: auto;
  gap: 44px;
  grid-template-columns: 1fr;
}

.city-layout-c .city-hero-copy {
  max-width: 950px;
}

.city-layout-c .city-hero-media {
  width: 100%;
  height: 460px;
}

.local-notes {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.local-note {
  min-height: 260px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

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

.local-note > span {
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.local-note h3 {
  margin: 34px 0 16px;
}

.local-note p {
  color: var(--muted);
}

.city-services {
  background: var(--wash);
}

.city-service-list {
  margin-top: 38px;
  border-top: 1px solid var(--line-dark);
}

.city-service-link {
  display: grid;
  min-height: 96px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  gap: 30px;
  grid-template-columns: 240px 1fr 120px;
  align-items: center;
}

.city-service-link > span {
  font-size: 1.15rem;
  font-weight: 760;
}

.city-service-link p {
  color: var(--muted);
}

.city-service-link small {
  color: var(--mint-dark);
  font-weight: 740;
  text-align: right;
}

.city-service-link:hover > span {
  color: var(--mint-dark);
}

.neighbourhood-layout {
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.neighbourhood-layout > div > p:last-child {
  margin-top: 22px;
  color: var(--muted);
}

.neighbourhood-layout ul {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}

.neighbourhood-layout li {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 690;
}

.neighbourhood-layout li:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.city-pricing {
  padding-top: 0;
}

.pricing-band {
  display: flex;
  padding: 50px 0;
  border-top: 4px solid var(--mint);
  border-bottom: 1px solid var(--line);
  gap: 60px;
  justify-content: space-between;
  align-items: center;
}

.pricing-band > div {
  max-width: 760px;
}

.pricing-band p {
  margin-top: 16px;
  color: var(--muted);
}

.region-hero {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.region-hero-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
}

.region-hero .lead {
  margin: 26px 0 30px;
}

.region-hero figure {
  height: 540px;
}

.region-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-city-links {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.region-city-links a {
  display: flex;
  min-height: 88px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  font-weight: 730;
}

.region-city-links a:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.region-city-links a:hover {
  color: var(--mint-dark);
}

.region-all {
  margin-top: 44px;
  color: var(--muted);
}

/* Core editorial pages */
.core-hero {
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}

.core-hero-grid {
  display: grid;
  min-height: 520px;
  gap: 70px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
}

.core-hero .lead {
  margin: 25px 0 30px;
}

.core-hero figure {
  height: 520px;
}

.core-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-detail-list,
.booking-steps,
.provider-entrances,
.about-facts {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.core-detail {
  display: grid;
  min-height: 128px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  gap: 40px;
  grid-template-columns: 240px 1fr;
}

.core-detail p {
  color: var(--muted);
}

.about-facts,
.booking-steps,
.provider-entrances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-facts > *,
.booking-steps > *,
.provider-entrances > * {
  min-height: 240px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.provider-entrances img {
  width: calc(100% + 56px);
  height: 220px;
  margin: -28px -28px 24px;
  object-fit: cover;
}

.about-facts > * + *,
.booking-steps > * + *,
.provider-entrances > * + * {
  border-left: 1px solid var(--line);
}

.about-facts h3,
.booking-steps h3,
.provider-entrances h3 {
  margin-bottom: 16px;
}

.about-facts p,
.booking-steps p,
.provider-entrances p {
  color: var(--muted);
}

.provider-entrances a {
  display: flex;
  flex-direction: column;
}

.provider-entrances a small {
  margin-top: auto;
  color: var(--mint-dark);
  font-weight: 740;
}

.download-page .core-hero figure {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mint-pale);
}

.download-page .core-hero figure img {
  width: 220%;
  max-width: none;
  object-position: 12% center;
}

/* FAQ utility page */
.page-hero {
  padding: 74px 0;
  border-bottom: 1px solid var(--line);
}

.help-hero {
  background: var(--wash);
}

.help-hero h1 {
  max-width: 940px;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
}

.help-hero .lead {
  margin-top: 24px;
}

.hero-metrics {
  display: flex;
  margin-top: 30px;
  gap: 10px 26px;
  flex-wrap: wrap;
}

.chip {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 690;
}

.hero-metrics .chip::before {
  margin-right: 8px;
  color: var(--mint);
  content: "•";
}

.help-hero .cta-row {
  margin-top: 32px;
}

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

.photo-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 5, 0.62);
  content: "";
}

.photo-cleaning {
  background-image: url("media/mint-regular-cleaning.webp");
}

.photo-tools {
  background-image: url("media/mint-tools-standard.webp");
}

.photo-home {
  background-image: url("media/mint-hero.webp");
}

.photo-content {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.photo-content .chip {
  color: rgba(255, 255, 255, 0.7);
}

.photo-content h3 {
  margin: 16px 0 12px;
}

.photo-content p {
  color: rgba(255, 255, 255, 0.76);
}

.faq-layout {
  display: grid;
  gap: 36px;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
}

.faq-side {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: grid;
  gap: 4px;
}

.faq-side > .btn {
  min-height: 42px;
  justify-content: flex-start;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  text-align: left;
}

.faq-side > .btn.active,
.faq-side > .btn:hover {
  background: var(--wash);
  color: var(--ink);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.card-tint {
  margin-top: 18px;
  padding: 20px;
  background: var(--wash);
}

.card-tint p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.card.form {
  padding: 28px;
}

.card.form h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.faq-search-grid {
  display: grid;
  margin-top: 26px;
  gap: 14px;
  grid-template-columns: 1fr 160px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--mint);
  outline: 2px solid rgba(8, 169, 112, 0.16);
}

.faq-search-actions {
  display: grid;
  gap: 8px;
}

.faq-result-state {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item[hidden] {
  display: none !important;
}

.faq-category-tag {
  color: var(--mint-dark);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.faq-question {
  display: flex;
  width: 100%;
  padding: 13px 0 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  gap: 22px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 730;
  text-align: left;
}

.faq-question > span:last-child {
  color: var(--mint-dark);
  font-size: 1.35rem;
}

.faq-answer {
  display: none;
  max-width: 760px;
  padding-top: 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.empty-state {
  display: none;
  padding: 28px 0;
  color: var(--muted);
}

.empty-state.active {
  display: block;
}

/* Legal pages */
.legal-hero {
  padding: 78px 0 62px;
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.legal-hero h1 {
  max-width: 880px;
}

.legal-hero .lead {
  margin-top: 22px;
}

.legal-meta {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-summary-grid {
  display: grid;
  margin-top: 44px;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.legal-summary-item {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.legal-summary-item + .legal-summary-item {
  padding-left: 24px;
  border-left: 1px solid var(--line-dark);
}

.legal-summary-item h2,
.legal-summary-item h3 {
  font-size: 1.15rem;
}

.legal-summary-item p {
  margin-top: 10px;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  align-items: start;
}

.legal-layout > *,
.legal-article,
.legal-toc {
  min-width: 0;
}

.legal-toc {
  position: sticky;
  top: calc(var(--nav-height) + 30px);
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-toc a:hover {
  color: var(--mint-dark);
}

.legal-article {
  max-width: 760px;
}

.legal-section {
  padding: 0 0 42px;
  scroll-margin-top: 110px;
}

.legal-section + .legal-section {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.legal-section h3 {
  margin: 24px 0 10px;
  font-size: 1.15rem;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
}

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

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 9px;
}

.legal-contact {
  padding: 26px;
  border-left: 4px solid var(--mint);
  background: var(--wash);
}

.legal-contact-link {
  color: var(--mint-dark);
  font-weight: 730;
}

.legal-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

/* Booking gateway */
.booking-gateway {
  min-height: 100svh;
  padding: 48px 0;
  background: var(--wash);
}

.booking-gateway-shell {
  display: grid;
  width: min(calc(100% - 48px), 1120px);
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.booking-gateway-copy {
  display: flex;
  padding: 60px;
  flex-direction: column;
  justify-content: center;
}

.booking-gateway-copy .lead {
  margin-top: 24px;
}

.booking-gateway-actions {
  display: flex;
  padding: 60px;
  background: var(--black);
  color: #fff;
  flex-direction: column;
  justify-content: center;
}

.booking-route-summary {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.booking-gateway-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.65);
}

.booking-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.booking-legal-inner {
  display: flex;
  padding: 20px 0 0;
  gap: 22px;
  justify-content: space-between;
}

.booking-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer, modal, sticky booking */
.footer {
  padding-top: 68px;
  background: var(--black);
  color: #fff;
}

.footer-grid {
  display: grid;
  padding-bottom: 54px;
  gap: 42px;
}

.footer-grid-expanded {
  grid-template-columns: 1.35fr repeat(4, 1fr);
}

.footer strong {
  display: block;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.footer p {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.footer a:hover {
  color: #7bdbb8;
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 18px;
  line-height: 0;
}

.brand-logo-footer {
  width: 238px;
}

.footer-brand p {
  max-width: 270px;
}

.footer-contact {
  font-style: normal;
}

.footer-contact p {
  display: grid;
}

.footer-contact span {
  color: #aeb8b4;
  font-size: 0.76rem;
}

.footer-bottom {
  display: flex;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  gap: 28px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  display: none;
  left: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta .btn {
  width: 100%;
}

.modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: none;
  padding: 24px;
  background: rgba(2, 6, 4, 0.72);
  place-items: center;
}

.modal.active {
  display: grid;
}

.modal-card {
  width: min(100%, 560px);
  padding: 38px;
  border-radius: var(--radius-md);
  background: #fff;
}

.modal-card h2 {
  margin: 12px 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.modal-card > p {
  color: var(--muted);
}

.modal-card .cta-row {
  margin-top: 28px;
}

/* Editorial guides */
.guides-hero {
  padding: 118px 0 96px;
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.guides-hero h1 {
  max-width: 920px;
}

.guides-hero .lead {
  max-width: 720px;
  margin-top: 30px;
}

.guides-latest > .container > .section-label {
  margin-bottom: 30px;
}

.guide-card-list {
  border-top: 1px solid var(--line);
}

.guide-card {
  border-bottom: 1px solid var(--line);
}

.guide-card > a {
  display: grid;
  padding: 32px 0;
  gap: 54px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.guide-card h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
}

.guide-card p:not(.section-label) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
}

.guide-card a > div > span {
  display: inline-block;
  margin-top: 24px;
  color: var(--mint-dark);
  font-weight: 760;
}

.guides-services {
  border-top: 1px solid var(--line);
  background: var(--wash);
}

.guides-services h2 {
  max-width: 670px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.guide-service-links {
  border-top: 1px solid var(--line-dark);
}

.guide-service-links a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 720;
}

.guide-article-hero {
  padding: 72px 0 84px;
  border-bottom: 1px solid var(--line);
}

.guide-article-hero-grid {
  display: grid;
  min-height: 580px;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
}

.guide-breadcrumb {
  display: flex;
  margin-bottom: 42px;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.guide-breadcrumb a:hover {
  color: var(--mint-dark);
}

.guide-article-hero h1 {
  max-width: 780px;
  font-size: clamp(2.65rem, 4.8vw, 5rem);
}

.guide-article-hero .lead {
  margin-top: 28px;
}

.guide-byline {
  display: flex;
  margin-top: 34px;
  gap: 12px 24px;
  color: var(--muted);
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.guide-article-hero figure {
  height: 560px;
}

.guide-article-hero figure img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.guide-answer {
  padding: 58px 0;
  background: var(--black);
  color: #fff;
}

.guide-answer-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
}

.guide-answer h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
}

.guide-answer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-answer li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #e6eeea;
}

.guide-answer li:first-child {
  padding-top: 0;
}

.guide-answer li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.guide-answer li:first-child::before {
  top: 7px;
}

.guide-body-layout {
  display: grid;
  padding-top: 96px;
  padding-bottom: 80px;
  gap: 90px;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  align-items: start;
}

.guide-toc {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  padding-top: 8px;
  border-top: 3px solid var(--mint);
}

.guide-toc strong,
.guide-toc a {
  display: block;
}

.guide-toc strong {
  margin: 14px 0 10px;
}

.guide-toc a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.guide-content {
  min-width: 0;
}

.guide-section,
.guide-note {
  padding: 0 0 68px;
  scroll-margin-top: calc(var(--nav-height) + 32px);
}

.guide-section + .guide-section,
.guide-section + .guide-note,
.guide-note + .guide-section {
  padding-top: 68px;
  border-top: 1px solid var(--line);
}

.guide-section h2,
.guide-note h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.guide-section > p,
.guide-note > p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.guide-section > p + p {
  margin-top: 18px;
}

.guide-compare {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-compare > div {
  padding: 28px 34px 0 0;
}

.guide-compare > div + div {
  padding-left: 34px;
  border-left: 1px solid var(--line-dark);
}

.guide-compare h3 {
  margin-bottom: 14px;
}

.guide-compare p {
  color: var(--muted);
}

.guide-compare ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.guide-compare li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.guide-numbered {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.guide-numbered li {
  display: grid;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  gap: 22px;
  grid-template-columns: 36px 1fr;
}

.guide-numbered span {
  color: var(--mint-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.guide-note {
  margin-bottom: 68px;
  padding: 38px 42px;
  border-left: 4px solid var(--mint);
  background: var(--mint-pale);
}

.guide-note h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.guide-related {
  border-top: 1px solid var(--line);
  background: var(--wash);
}

.guide-related-links {
  display: grid;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-related-links a {
  display: flex;
  min-height: 74px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  justify-content: space-between;
  align-items: center;
  font-weight: 720;
}

.guide-related-links a:nth-child(odd) {
  padding-right: 28px;
}

.guide-related-links a:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line-dark);
}

/* Motion kept deliberately small */
.js-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@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;
  }

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

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

  .brand-logo-nav {
    width: 184px;
  }

  .nav-actions > .btn {
    display: none;
  }

  .nav-simple,
  .nav-trigger {
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .proof-layout {
    gap: 55px;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .footer-grid-expanded {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-grid-expanded > :nth-child(4),
  .footer-grid-expanded > :nth-child(5) {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 980px) {
  :root {
    --nav-height: 72px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .topnav-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
  }

  .navlinks {
    position: fixed;
    z-index: 120;
    top: var(--nav-height);
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    margin: 0;
    padding: 22px 18px 110px;
    overflow-y: auto;
    background: #fff;
    align-items: stretch;
  }

  .topnav.menu-open .navlinks {
    display: block;
  }

  .nav-simple,
  .nav-trigger {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    text-align: left;
  }

  .nav-trigger::after {
    display: none;
  }

  .nav-group {
    position: static;
  }

  .nav-dropdown,
  .nav-group:nth-last-of-type(-n + 2) .nav-dropdown {
    position: static;
    display: grid;
    width: 100%;
    padding: 4px 0 16px;
    border: 0;
    background: transparent;
  }

  .nav-menu-item {
    padding: 9px 14px;
    border-left: 2px solid var(--line);
    border-radius: 0;
  }

  .nav-actions {
    flex: 0 0 auto;
  }

  .section {
    padding: 82px 0;
  }

  .home-service-row {
    grid-template-columns: 54px 1fr 300px;
  }

  .proof-layout,
  .service-hero-grid,
  .split-editorial,
  .proof-editorial,
  .city-hero-grid,
  .neighbourhood-layout,
  .region-hero-grid,
  .core-hero-grid,
  .app-editorial {
    gap: 48px;
    grid-template-columns: 1fr 1fr;
  }

  .proof-copy {
    position: static;
  }

  .related-link {
    padding: 22px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-side {
    position: static;
    display: flex;
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .faq-side > .btn {
    min-width: max-content;
  }

  .faq-side .card {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3.1rem);
  }

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

  .section {
    padding: 64px 0;
  }

  .section-intro {
    gap: 22px;
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }

  .brand-logo-nav {
    width: 164px;
  }

  .menu-toggle {
    min-width: 46px;
    padding-inline: 12px;
  }

  .menu-toggle span {
    display: none;
  }

  .menu-toggle i {
    margin-left: 0;
  }

  .lang-switch {
    padding: 2px;
  }

  .lang-option {
    min-width: 34px;
    padding: 6px;
    font-size: 0.72rem;
  }

  .home-hero {
    min-height: 690px;
  }

  .home-hero-content {
    padding-top: 70px;
    padding-bottom: 60px;
    justify-content: flex-end;
  }

  .home-hero .lead {
    font-size: 1.06rem;
  }

  .home-hero-stats {
    margin-top: 40px;
  }

  .home-hero-stats div {
    padding-right: 18px;
  }

  .home-hero-stats div + div {
    padding-left: 18px;
  }

  .home-hero-stats dd {
    font-size: 0.82rem;
  }

  .home-service-row {
    min-height: auto;
    padding: 26px 0;
    gap: 18px;
    grid-template-columns: 36px 1fr;
  }

  .home-service-row img {
    width: 100%;
    height: 210px;
    margin-top: 6px;
    grid-column: 1 / -1;
  }

  .home-service-row h3 {
    font-size: 1.65rem;
  }

  .other-service-links {
    grid-template-columns: 1fr;
  }

  .other-service-links a + a {
    border-left: 0;
  }

  .proof-layout,
  .service-hero-grid,
  .split-editorial,
  .proof-editorial,
  .city-hero-grid,
  .neighbourhood-layout,
  .region-hero-grid,
  .core-hero-grid,
  .app-editorial,
  .booking-gateway-shell {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .proof-table div {
    gap: 14px;
    grid-template-columns: 120px 1fr;
  }

  .area-pair {
    grid-template-columns: 1fr;
  }

  .area-pair > a {
    min-height: 440px;
  }

  .app-image-crop {
    height: 410px;
  }

  .campaign-track,
  .campaign-slide {
    height: auto;
    min-height: 560px;
  }

  .campaign-slide.active {
    display: flex;
    flex-direction: column-reverse;
  }

  .campaign-slide > div {
    padding: 30px 24px 34px;
  }

  .campaign-slide img {
    height: 250px;
  }

  .final-cta {
    padding: 58px 0;
  }

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

  .service-hero,
  .core-hero,
  .region-hero {
    padding: 56px 0 64px;
  }

  .service-hero-grid,
  .core-hero-grid {
    min-height: auto;
  }

  .service-hero-media,
  .core-hero figure,
  .region-hero figure {
    height: 410px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div + div {
    padding-left: 0;
    border-left: 0;
  }

  .scope-item {
    min-height: 120px;
    gap: 16px;
    grid-template-columns: 36px 1fr;
  }

  .pricing-note {
    padding: 28px 0 0;
    border-top: 4px solid var(--mint);
    border-left: 0;
  }

  .related-list,
  .local-notes,
  .about-facts,
  .booking-steps,
  .provider-entrances,
  .grid-3,
  .legal-summary-grid {
    grid-template-columns: 1fr;
  }

  .related-link,
  .local-note,
  .about-facts > *,
  .booking-steps > *,
  .provider-entrances > * {
    min-height: auto;
    padding: 24px 0;
  }

  .related-link + .related-link,
  .local-note + .local-note,
  .about-facts > * + *,
  .booking-steps > * + *,
  .provider-entrances > * + *,
  .legal-summary-item + .legal-summary-item {
    padding-left: 0;
    border-left: 0;
  }

  .related-link strong {
    margin: 16px 0 28px;
  }

  .city-hero-grid {
    padding: 56px 0 0;
  }

  .city-hero-media,
  .city-layout-c .city-hero-media {
    height: 390px;
  }

  .city-layout-b .city-hero,
  .city-layout-b .city-hero-grid,
  .city-layout-b .city-hero-copy {
    min-height: 700px;
  }

  .city-layout-b .city-hero-grid {
    padding: 0;
  }

  .city-layout-b .city-hero-copy {
    padding: 72px 0;
    justify-content: flex-end;
  }

  .city-layout-c .city-hero {
    padding-top: 0;
  }

  .city-service-link {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .city-service-link small {
    margin-top: 8px;
    text-align: left;
  }

  .neighbourhood-layout ul,
  .region-city-links {
    grid-template-columns: 1fr;
  }

  .neighbourhood-layout li:nth-child(even),
  .region-city-links a:nth-child(even) {
    padding-left: 4px;
    border-left: 0;
  }

  .pricing-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .region-city-links a {
    min-height: 70px;
  }

  .core-detail {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .help-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .photo-card {
    min-height: 320px;
  }

  .faq-search-grid {
    grid-template-columns: 1fr;
  }

  .card.form {
    padding: 22px 18px;
  }

  .legal-layout {
    gap: 38px;
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-toc {
    position: static;
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    column-count: 2;
  }

  .legal-section,
  .legal-section p,
  .legal-section li,
  .legal-toc a {
    overflow-wrap: anywhere;
  }

  .legal-summary-item {
    padding: 20px 0;
  }

  .booking-gateway {
    padding: 0;
  }

  .booking-gateway-shell {
    width: 100%;
    min-height: 100svh;
    border: 0;
  }

  .booking-gateway-copy,
  .booking-gateway-actions {
    padding: 42px 22px;
  }

  .booking-legal-inner {
    flex-direction: column;
  }

  .footer {
    padding-top: 52px;
  }

  .footer-grid-expanded {
    gap: 28px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid-expanded > :nth-child(4),
  .footer-grid-expanded > :nth-child(5) {
    padding-top: 20px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-bottom: 110px;
    align-items: flex-start;
    flex-direction: column;
  }

  .guides-hero {
    padding: 72px 0 64px;
  }

  .guide-card > a,
  .guide-article-hero-grid,
  .guide-answer-grid,
  .guide-body-layout,
  .guide-compare,
  .guide-related-links {
    grid-template-columns: 1fr;
  }

  .guide-card > a {
    gap: 26px;
  }

  .guide-article-hero {
    padding: 48px 0 58px;
  }

  .guide-article-hero-grid {
    min-height: auto;
    gap: 36px;
  }

  .guide-breadcrumb {
    margin-bottom: 30px;
  }

  .guide-article-hero figure {
    height: 340px;
  }

  .guide-answer {
    padding: 42px 0;
  }

  .guide-answer-grid {
    gap: 28px;
  }

  .guide-body-layout {
    padding-top: 58px;
    padding-bottom: 48px;
    gap: 48px;
  }

  .guide-toc {
    position: static;
  }

  .guide-section,
  .guide-note {
    padding-bottom: 48px;
  }

  .guide-section + .guide-section,
  .guide-section + .guide-note,
  .guide-note + .guide-section {
    padding-top: 48px;
  }

  .guide-compare > div,
  .guide-compare > div + div {
    padding: 28px 0 0;
    border-left: 0;
  }

  .guide-compare > div + div {
    margin-top: 28px;
    border-top: 1px solid var(--line-dark);
  }

  .guide-note {
    margin-bottom: 48px;
    padding: 28px 24px;
  }

  .guide-related-links a:nth-child(odd),
  .guide-related-links a:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .mobile-cta {
    display: block;
  }

  .modal-card {
    padding: 28px 22px;
  }
}

@media (max-width: 430px) {
  .brand-logo-nav {
    width: 118px;
  }

  .lang-option {
    min-width: 30px;
    padding-inline: 5px;
  }

  .home-hero .cta-row .btn,
  .service-hero .cta-row .btn,
  .city-hero .cta-row .btn {
    width: 100%;
  }

  .proof-table div {
    grid-template-columns: 1fr;
  }

  .footer-grid-expanded {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .legal-toc {
    column-count: 1;
  }
}
