@font-face {
  font-family: "Mileast";
  src: local("Mileast"), url("font/Mileast.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --brand-navy: #0b1d2d;
  --brand-teal: #0f6f86;
  --brand-cyan: #33b8c9;
  --brand-amber: #f3a74e;

  --bg: #eef4f7;
  --panel: #ffffff;
  --panel-2: #f4f8fb;
  --ink: #10212f;
  --muted: #445866;
  --line: rgba(16, 33, 47, 0.13);

  --accent: var(--brand-teal);
  --accent-dark: #0a5a6f;
  --accent-soft: rgba(51, 184, 201, 0.14);
  --accent-ink: #0f4f62;

  --shadow-xs: 0 8px 22px rgba(11, 29, 45, 0.08);
  --shadow-sm: 0 18px 42px rgba(11, 29, 45, 0.16);

  --dur-fast: 160ms;
  --dur-base: 260ms;
  --dur-slow: 420ms;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-emphasis: cubic-bezier(0.2, 0.75, 0.25, 1);

  --display-tight: -0.03em;
  --title-tight: -0.02em;
  --radius-soft: 20px;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: var(--dur-slow);
  animation-timing-function: var(--ease-emphasis);
}

html {
  text-size-adjust: 100%;
}

body {
  background:
    radial-gradient(90rem 50rem at -14% -16%, rgba(51, 184, 201, 0.2), transparent 60%),
    radial-gradient(85rem 50rem at 112% -18%, rgba(15, 111, 134, 0.19), transparent 62%),
    radial-gradient(70rem 42rem at 52% 114%, rgba(243, 167, 78, 0.14), transparent 60%),
    var(--bg);
  color: var(--ink);
}

h1,
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: var(--display-tight);
  font-weight: 900;
}

h2,
.section-heading h2,
.guide-content h2 {
  font-size: clamp(1.65rem, 3.25vw, 3.1rem);
  letter-spacing: var(--title-tight);
  font-weight: 850;
}

h3 {
  font-size: clamp(1.12rem, 2vw, 1.65rem);
  letter-spacing: -0.01em;
}

p,
li,
label,
input,
textarea,
select,
button {
  font-size: clamp(1.04rem, 1.08vw, 1.14rem);
  font-weight: 500;
}

p,
li {
  color: var(--muted);
  line-height: 1.72;
}

label {
  font-weight: 700;
}

.pill,
.topbar,
.nav-links a,
.mobile-links a {
  font-size: clamp(0.92rem, 0.95vw, 0.99rem);
}

.pill,
.nav-links a,
.mobile-links a,
.service-areas-list span {
  font-weight: 700;
}

.bg-shapes::before {
  background:
    radial-gradient(620px 420px at 10% 9%, rgba(15, 111, 134, 0.24), transparent 72%),
    radial-gradient(560px 390px at 90% 7%, rgba(11, 29, 45, 0.2), transparent 72%),
    radial-gradient(690px 520px at 84% 90%, rgba(51, 184, 201, 0.16), transparent 76%);
}

.bg-shapes::after {
  background:
    radial-gradient(500px 500px at 20% 80%, rgba(243, 167, 78, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(11, 29, 45, 0.12) 0%, transparent 65%);
}

.topbar,
.site-header {
  backdrop-filter: blur(12px) saturate(130%);
}

.topbar {
  background: linear-gradient(90deg, #0d2337, #14334d);
}

.site-header {
  background: rgba(244, 250, 253, 0.72);
}

.pill {
  background: linear-gradient(90deg, rgba(51, 184, 201, 0.22), rgba(243, 167, 78, 0.18));
  color: #0e4150;
}

.btn,
button,
.segment-card,
.service-card,
.testimonial,
.metric,
.process,
.panel,
.card,
.contact-details,
.contact-form,
.links a,
.nav-links a,
.mobile-links a,
.faq details,
.service-areas-list span,
input,
textarea,
select {
  transition-property: transform, opacity, background-color, color, border-color, box-shadow, filter;
  transition-duration: var(--dur-base);
  transition-timing-function: var(--ease-standard);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand-teal), var(--brand-cyan));
  color: #f3fdff;
  border-color: rgba(11, 29, 45, 0.1);
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(15, 111, 134, 0.35);
  filter: saturate(1.06);
}

.btn-outline {
  border-color: rgba(11, 29, 45, 0.24);
  background: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover,
.nav-links a:hover,
.links a:hover,
.mobile-links a:hover {
  background: linear-gradient(95deg, rgba(51, 184, 201, 0.14), rgba(243, 167, 78, 0.1));
  border-color: rgba(15, 111, 134, 0.38);
}

.nav-links a[aria-current="page"],
.links a[aria-current="page"],
.mobile-links a[aria-current="page"] {
  background: linear-gradient(95deg, rgba(51, 184, 201, 0.2), rgba(243, 167, 78, 0.16));
  border-color: rgba(15, 111, 134, 0.44);
  color: var(--accent-ink);
}

.segment-card:hover,
.service-card:hover,
.testimonial:hover,
.metric:hover,
.process:hover,
.panel:hover,
.card:hover,
.contact-details:hover,
.contact-form:hover,
.faq details:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

section {
  scroll-margin-top: 5.5rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition-property: opacity, transform, filter;
  transition-duration: var(--dur-slow);
  transition-timing-function: var(--ease-emphasis);
  filter: blur(1px);
}

.reveal--left {
  transform: translate3d(-26px, 0, 0);
}

.reveal--right {
  transform: translate3d(26px, 0, 0);
}

.reveal--up {
  transform: translate3d(0, 26px, 0);
}

.reveal.visible,
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

html.is-page-leaving .page,
html.is-page-leaving main,
html.is-page-leaving header,
html.is-page-leaving footer {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}

.trust-banner {
  background:
    radial-gradient(122% 70% at 50% -16%, rgba(210, 235, 242, 0.9) 55%, transparent 56%),
    radial-gradient(122% 70% at 50% -32%, rgba(150, 205, 220, 0.9) 55%, transparent 56%),
    radial-gradient(122% 70% at 50% 118%, rgba(227, 244, 238, 0.88) 55%, transparent 56%),
    radial-gradient(122% 70% at 50% 132%, rgba(188, 224, 213, 0.85) 55%, transparent 56%),
    linear-gradient(100deg, #0f6f86, #1b7f99 44%, #2aa2b4 100%);
}

.guide-section,
.panel,
.card,
.contact-details,
.contact-form,
.process,
.testimonial,
.service-card,
.metric,
.faq details,
.hero-panel {
  border-radius: var(--radius-soft);
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(51, 184, 201, 0.62);
  outline-offset: 2px;
}

body.homepage {
  --brand-navy: #13212d;
  --brand-teal: #34646d;
  --brand-cyan: #6d9da4;
  --brand-amber: #caa97f;

  --bg: #f4efe8;
  --panel: #fbf8f3;
  --panel-2: #efe7df;
  --ink: #13212d;
  --muted: #5c6771;
  --line: rgba(19, 33, 45, 0.12);

  --accent: #34646d;
  --accent-dark: #274f56;
  --accent-soft: rgba(52, 100, 109, 0.12);
  --accent-ink: #274f56;

  --shadow-xs: 0 12px 30px rgba(24, 34, 43, 0.06);
  --shadow-sm: 0 24px 50px rgba(24, 34, 43, 0.1);

  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 340ms;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-emphasis: cubic-bezier(0.2, 0.7, 0.2, 1);

  background:
    radial-gradient(65rem 42rem at -12% -16%, rgba(109, 157, 164, 0.14), transparent 60%),
    radial-gradient(52rem 32rem at 112% -8%, rgba(52, 100, 109, 0.1), transparent 60%),
    radial-gradient(48rem 26rem at 52% 115%, rgba(202, 169, 127, 0.14), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

body.homepage h1,
body.homepage h2,
body.homepage h3,
body.homepage h4,
body.homepage .brand span,
body.homepage .service-mark,
body.homepage .hero-media-stat strong {
  font-family: "Sora", sans-serif;
}

body.homepage .bg-shapes::before {
  background:
    radial-gradient(560px 360px at 12% 10%, rgba(109, 157, 164, 0.18), transparent 72%),
    radial-gradient(520px 340px at 88% 8%, rgba(19, 33, 45, 0.09), transparent 72%),
    radial-gradient(640px 420px at 82% 90%, rgba(202, 169, 127, 0.12), transparent 74%);
}

body.homepage .bg-shapes::after {
  background:
    radial-gradient(460px 420px at 18% 80%, rgba(52, 100, 109, 0.09), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 60%);
}

body.homepage .topbar,
body.homepage .site-header {
  backdrop-filter: blur(14px) saturate(120%);
}

body.homepage .topbar {
  background: rgba(19, 33, 45, 0.92);
}

body.homepage .site-header {
  background: rgba(244, 239, 232, 0.78);
}

body.homepage .btn,
body.homepage button,
body.homepage input,
body.homepage textarea,
body.homepage .nav-links a,
body.homepage .mobile-links a,
body.homepage .audience-link,
body.homepage .service-item,
body.homepage .review-card,
body.homepage .service-area-list span,
body.homepage .detail-card {
  transition-property: transform, opacity, background-color, color, border-color, box-shadow;
  transition-duration: var(--dur-base);
  transition-timing-function: var(--ease-standard);
}

body.homepage .btn-primary {
  background: linear-gradient(135deg, #34646d, #426f77);
  border-color: rgba(19, 33, 45, 0.06);
}

body.homepage .btn-primary:hover {
  box-shadow: 0 18px 32px rgba(52, 100, 109, 0.18);
  filter: none;
  transform: translateY(-1px);
}

body.homepage .btn-outline:hover,
body.homepage .mobile-links a:hover,
body.homepage .audience-link:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(52, 100, 109, 0.24);
  transform: translateY(-1px);
}

body.homepage .nav-links a:hover,
body.homepage .nav-links a[aria-current="page"],
body.homepage .mobile-links a[aria-current="page"] {
  color: var(--ink);
}

body.homepage .service-item:hover,
body.homepage .review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

body.homepage .reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition-property: opacity, transform;
  transition-duration: var(--dur-slow);
  transition-timing-function: var(--ease-emphasis);
  filter: none;
}

body.homepage .reveal--left {
  transform: translate3d(-18px, 0, 0);
}

body.homepage .reveal--right {
  transform: translate3d(18px, 0, 0);
}

body.homepage .reveal--up {
  transform: translate3d(0, 18px, 0);
}

body.homepage .reveal.visible,
body.homepage .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1024px) {
  h1,
  .hero h1 {
    font-size: clamp(2rem, 7vw, 3.45rem);
  }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--up {
    transform: translate3d(0, 14px, 0);
  }
}

@media (max-width: 768px) {
  :root {
    --dur-base: 220ms;
    --dur-slow: 320ms;
  }

  body {
    background:
      radial-gradient(70rem 40rem at -10% -10%, rgba(51, 184, 201, 0.14), transparent 58%),
      radial-gradient(60rem 40rem at 108% -12%, rgba(15, 111, 134, 0.12), transparent 60%),
      var(--bg);
  }

  h1,
  .hero h1 {
    font-size: clamp(1.95rem, 9.2vw, 3.2rem);
  }

  h2,
  .section-heading h2,
  .guide-content h2 {
    font-size: clamp(1.45rem, 6.8vw, 2.35rem);
  }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--up {
    transform: translate3d(0, 10px, 0);
  }

  .segment-card:hover,
  .service-card:hover,
  .testimonial:hover,
  .metric:hover,
  .process:hover,
  .panel:hover,
  .card:hover,
  .contact-details:hover,
  .contact-form:hover,
  .faq details:hover {
    transform: translateY(-3px);
  }
}

@media (hover: none), (pointer: coarse) {
  .segment-card:hover,
  .service-card:hover,
  .testimonial:hover,
  .metric:hover,
  .process:hover,
  .panel:hover,
  .card:hover,
  .contact-details:hover,
  .contact-form:hover,
  .faq details:hover,
  .btn:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .nav-links a:hover,
  .links a:hover,
  .mobile-links a:hover {
    transform: none;
    box-shadow: var(--shadow-xs);
  }
}



body.inner-page {
  --brand-green: #18a957;
  --brand-green-dark: #0f7e40;
  --brand-orange: #ef7f1a;
  --brand-orange-soft: #f6a228;
  --ink: #13212d;
  --ink-soft: rgba(19, 33, 45, 0.82);
  --ink-muted: rgba(19, 33, 45, 0.62);
  --line: rgba(19, 33, 45, 0.09);
  --surface: #ffffff;
  --surface-soft: #f7f9f4;
  --surface-muted: #eef3ea;
  --radius-card: 28px;
  --radius-pill: 999px;
  --shadow-card: 0 22px 48px rgba(19, 33, 45, 0.08);
  --shadow-card-hover: 0 30px 56px rgba(19, 33, 45, 0.14);
  --section-space: clamp(3.8rem, 6.5vw, 5.8rem);
  margin: 0;
  min-height: 100vh;
  background: #f3f5ee;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11" 1, "ss03" 1;
}

body.inner-page .topbar {
  display: none !important;
}

body.inner-page .page {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

body.inner-page .bg-shapes::before {
  background:
    radial-gradient(620px 420px at 10% 9%, rgba(24, 169, 87, 0.14), transparent 72%),
    radial-gradient(560px 390px at 90% 7%, rgba(19, 33, 45, 0.12), transparent 72%),
    radial-gradient(690px 520px at 84% 90%, rgba(246, 162, 40, 0.1), transparent 76%);
}

body.inner-page .bg-shapes::after {
  background:
    radial-gradient(500px 500px at 20% 80%, rgba(19, 33, 45, 0.08), transparent 72%),
    linear-gradient(180deg, rgba(19, 33, 45, 0.08) 0%, transparent 65%);
}

body.inner-page .container {
  width: min(1380px, calc(100% - clamp(1rem, 3vw, 2.5rem)));
  margin: 0 auto;
}

body.inner-page h1,
body.inner-page h2,
body.inner-page h3,
body.inner-page h4 {
  margin: 0;
  font-family: "League Spartan", "Montserrat", sans-serif;
  color: var(--ink);
}

body.inner-page h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  word-spacing: 0.03em;
  font-weight: 800;
}

body.inner-page h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
}

body.inner-page h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

body.inner-page p,
body.inner-page li,
body.inner-page label,
body.inner-page input,
body.inner-page textarea,
body.inner-page select,
body.inner-page button {
  font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
}

body.inner-page p,
body.inner-page li {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.72;
}

body.inner-page a {
  color: inherit;
  text-decoration: none;
}

body.inner-page img {
  display: block;
  max-width: 100%;
}

body.inner-page .mileast-accent {
  display: inline-block;
  font-family: "Mileast", "League Spartan", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

body.inner-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.92rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.inner-page .btn-primary {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-soft));
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(239, 127, 26, 0.18);
}

body.inner-page .btn-outline {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: rgba(19, 33, 45, 0.12);
}

body.inner-page main {
  position: relative;
  z-index: 1;
}

body.inner-page main > section {
  position: relative;
  padding: var(--section-space) 0;
}

body.inner-page .eyebrow,
body.inner-page .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: rgba(19, 33, 45, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.inner-page .eyebrow::before,
body.inner-page .pill::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-orange-soft));
  box-shadow: 0 0 0 6px rgba(24, 169, 87, 0.12);
}

body.inner-page .section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}

body.inner-page .section-heading > div {
  display: grid;
  gap: 0.45rem;
}

body.inner-page .section-heading.centered {
  justify-items: center;
  text-align: center;
}

body.inner-page .section-heading p,
body.inner-page .hero-copy p,
body.inner-page .hero-panel p,
body.inner-page .callout p,
body.inner-page .panel p,
body.inner-page .card p,
body.inner-page .info-card p,
body.inner-page .operations-card p,
body.inner-page .contact-details p,
body.inner-page .contact-form p,
body.inner-page .gallery-content p {
  max-width: 40rem;
}

body.inner-page .hero,
body.inner-page .page-city main > section:first-of-type {
  padding-top: clamp(5.2rem, 7vw, 6.2rem);
  padding-bottom: clamp(3rem, 5.8vw, 4.2rem);
}

body.inner-page main > section[data-header-theme="dark"] {
  background:
    radial-gradient(circle at 20% 12%, rgba(24, 169, 87, 0.18), transparent 32%),
    linear-gradient(135deg, #11211b 0%, #173427 55%, #214a33 100%);
}

body.inner-page main > section[data-header-theme="dark"] .hero-copy h1,
body.inner-page main > section[data-header-theme="dark"] .hero-copy h2,
body.inner-page main > section[data-header-theme="dark"] .hero-copy h3,
body.inner-page main > section[data-header-theme="dark"] .hero-copy p,
body.inner-page main > section[data-header-theme="dark"] .hero-copy .eyebrow,
body.inner-page main > section[data-header-theme="dark"] .hero-copy .pill,
body.inner-page main > section[data-header-theme="dark"] .hero-copy li,
body.inner-page main > section[data-header-theme="dark"] .metric span,
body.inner-page main > section[data-header-theme="dark"] .portable-note {
  color: #ffffff;
}

body.inner-page main > section[data-header-theme="dark"] .hero-copy .eyebrow,
body.inner-page main > section[data-header-theme="dark"] .hero-copy .pill {
  color: rgba(255, 255, 255, 0.78);
}

body.inner-page .hero-grid,
body.inner-page .split-grid,
body.inner-page .contact,
body.inner-page .grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(1.35rem, 3vw, 3rem);
  align-items: center;
}

body.inner-page .hero-copy,
body.inner-page .contact-details {
  display: grid;
  gap: 0.82rem;
}

body.inner-page .hero-copy h1,
body.inner-page .contact-details h1,
body.inner-page .panel h1 {
  max-width: 11.6ch;
}

body.inner-page .hero-copy h1 {
  font-size: clamp(2.45rem, 4vw, 4.05rem);
  line-height: 1.01;
  letter-spacing: -0.04em;
}

body.inner-page .hero-copy p {
  max-width: 35rem;
  font-size: 1rem;
  line-height: 1.66;
}

body.inner-page .hero-actions,
body.inner-page .btn-row,
body.inner-page .hero .btn-row,
body.inner-page .footer-cta,
body.inner-page .hero-panel .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

body.inner-page .hero-metrics,
body.inner-page .results-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.6rem;
}

body.inner-page .metric,
body.inner-page .result-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(19, 33, 45, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(19, 33, 45, 0.06);
}

body.inner-page .metric strong,
body.inner-page .result-card strong {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

body.inner-page .metric span,
body.inner-page .result-card span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

body.inner-page main > section[data-header-theme="dark"] .metric,
body.inner-page main > section[data-header-theme="dark"] .result-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.inner-page main > section[data-header-theme="dark"] .metric strong,
body.inner-page main > section[data-header-theme="dark"] .result-card strong {
  color: #ffffff;
}

body.inner-page main > section[data-header-theme="dark"] .metric span,
body.inner-page main > section[data-header-theme="dark"] .result-card span {
  color: rgba(255, 255, 255, 0.92);
}

body.inner-page .portable-note {
  padding: 0.9rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

body.inner-page .hero-panel,
body.inner-page .panel,
body.inner-page .card,
body.inner-page .callout,
body.inner-page .info-card,
body.inner-page .service-card,
body.inner-page .operations-card,
body.inner-page .contact-details,
body.inner-page .contact-form,
body.inner-page .gallery-item,
body.inner-page .faq,
body.inner-page .service-areas,
body.inner-page .hero .panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

body.inner-page .hero-panel,
body.inner-page .hero .panel {
  position: relative;
  overflow: hidden;
  padding: clamp(0.85rem, 1.4vw, 1rem);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 241, 0.98));
}

body.inner-page .panel,
body.inner-page .card,
body.inner-page .callout,
body.inner-page .info-card,
body.inner-page .service-card,
body.inner-page .operations-card,
body.inner-page .contact-details,
body.inner-page .contact-form,
body.inner-page .gallery-item,
body.inner-page .faq,
body.inner-page .service-areas {
  padding: 1.45rem;
}

body.inner-page .hero-image,
body.inner-page .gallery-thumb {
  overflow: hidden;
  border-radius: 22px;
  background: #d8e1d6;
}

body.inner-page .hero-image img,
body.inner-page .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.inner-page .hero-image {
  position: relative;
  aspect-ratio: 1.26 / 0.78;
  border-radius: 24px 92px 24px 24px;
  box-shadow: 0 20px 42px rgba(19, 33, 45, 0.12);
}

body.inner-page .hero-panel > div:last-child {
  padding: 0.15rem 0.35rem 0.2rem;
}

body.inner-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

body.inner-page .gallery-item {
  display: grid;
  gap: 1rem;
}

body.inner-page .gallery-thumb {
  aspect-ratio: 1.16 / 0.84;
}

body.inner-page .gallery-content,
body.inner-page .gallery-tags,
body.inner-page .service-links,
body.inner-page .city-links,
body.inner-page .contact-card,
body.inner-page .footer-brand,
body.inner-page .footer-column ul {
  display: grid;
  gap: 0.55rem;
}

body.inner-page .gallery-item-title,
body.inner-page .service-card h3,
body.inner-page .info-card h3,
body.inner-page .operations-card h3,
body.inner-page .callout strong,
body.inner-page .contact-details h3,
body.inner-page .contact-form h3,
body.inner-page .footer-brand h3,
body.inner-page .panel h2,
body.inner-page .card h2 {
  color: var(--ink);
}

body.inner-page .gallery-tags,
body.inner-page .service-areas-list,
body.inner-page .checklist,
body.inner-page .footer-list,
body.inner-page .faq details,
body.inner-page .contact-card,
body.inner-page .mobile-links,
body.inner-page .hero .checklist,
body.inner-page .pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.inner-page .gallery-tags,
body.inner-page .service-areas-list,
body.inner-page .pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

body.inner-page .gallery-tags span,
body.inner-page .service-areas-list span,
body.inner-page .contact-form-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.58rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: #ffffff;
  color: rgba(19, 33, 45, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.inner-page .services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body.inner-page .service-card {
  display: grid;
  gap: 0.9rem;
}

body.inner-page .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24, 169, 87, 0.14), rgba(246, 162, 40, 0.14));
  color: var(--brand-green-dark);
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

body.inner-page .info-grid,
body.inner-page .operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.inner-page .checklist {
  display: grid;
  gap: 0.7rem;
}

body.inner-page .checklist li,
body.inner-page .detail,
body.inner-page .contact-card div {
  position: relative;
  padding-left: 1.3rem;
}

body.inner-page .checklist li::before,
body.inner-page .detail::before,
body.inner-page .contact-card div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-orange-soft));
  box-shadow: 0 0 0 5px rgba(24, 169, 87, 0.1);
}

body.inner-page .faq {
  display: grid;
  gap: 0.85rem;
}

body.inner-page .faq details {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

body.inner-page .faq summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

body.inner-page .faq summary::-webkit-details-marker {
  display: none;
}

body.inner-page .faq details p {
  margin-top: 0.8rem;
}

body.inner-page .service-areas {
  display: grid;
  gap: 1.1rem;
}

body.inner-page .contact {
  align-items: stretch;
}

body.inner-page .contact-details,
body.inner-page .contact-form {
  display: grid;
  gap: 1rem;
}

body.inner-page form {
  display: grid;
  gap: 0.9rem;
}

body.inner-page input,
body.inner-page textarea,
body.inner-page select {
  width: 100%;
  min-height: 52px;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(19, 33, 45, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
}

body.inner-page textarea {
  min-height: 148px;
  resize: vertical;
}

body.inner-page fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.85rem;
}

body.inner-page legend {
  margin-bottom: 0.1rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.inner-page .checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

body.inner-page .checkbox-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

body.inner-page .checkbox-item input {
  width: auto;
  min-height: auto;
  margin: 0.15rem 0 0;
  padding: 0;
}

body.inner-page .footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(1.45rem, 2.6vw, 2rem);
  border-radius: calc(var(--radius-card) + 2px);
  border: 1px solid rgba(19, 33, 45, 0.08);
  background: linear-gradient(135deg, rgba(250, 248, 241, 0.98), rgba(236, 247, 239, 0.98));
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

body.inner-page .footer-top .footer-brand {
  display: grid;
  gap: 0.6rem;
}

body.inner-page .footer-top .footer-brand h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.02;
}

body.inner-page .footer-top .footer-brand p {
  margin: 0;
  max-width: 34rem;
  color: rgba(19, 33, 45, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

body.inner-page .footer-top .footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

body.inner-page footer {
  padding: 3.4rem 0 2.4rem;
  background: #11181e;
  color: rgba(255, 255, 255, 0.74);
  margin-top: 4rem;
}

body.inner-page footer[data-header-theme="dark"] {
  background: #11181e;
}

body.inner-page .footer-shell {
  display: grid;
  gap: 2.25rem;
}

body.inner-page .footer-topline {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.inner-page .footer-brand h3,
body.inner-page .footer-brand p,
body.inner-page .footer-column h4,
body.inner-page .footer-column li,
body.inner-page .footer-column a,
body.inner-page .footer-bottom,
body.inner-page .footer-call {
  color: #ffffff;
}

body.inner-page .footer-brand h3 {
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-family: "League Spartan", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body.inner-page .footer-brand p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.72;
}

body.inner-page .footer-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

body.inner-page .footer-call {
  color: rgba(255, 255, 255, 0.84);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

body.inner-page .footer-columns {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
}

body.inner-page .footer-column {
  display: grid;
  gap: 0.75rem;
}

body.inner-page .footer-column h4 {
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.inner-page .footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

body.inner-page .footer-column li,
body.inner-page .footer-column a {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.6;
}

body.inner-page footer .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.92rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(19, 33, 45, 0.08);
}

body.inner-page footer .btn-primary {
  color: #fffdf7;
  background: linear-gradient(135deg, var(--brand-orange-soft), var(--brand-orange));
  box-shadow: 0 18px 36px rgba(239, 127, 26, 0.24);
}

body.inner-page footer .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(19, 33, 45, 0.12);
}

body.inner-page .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.54);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
}

body.inner-page .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: 0;
  opacity: 1;
  transform: none;
  background: rgba(247, 247, 240, 0.96);
  border-bottom: 1px solid rgba(19, 33, 45, 0.08);
  box-shadow: 0 12px 28px rgba(19, 33, 45, 0.05);
  backdrop-filter: blur(14px);
  pointer-events: none;
  --header-fg: #13212d;
  --header-muted: rgba(19, 33, 45, 0.78);
  --header-link: rgba(19, 33, 45, 0.82);
  --header-hover-bg: rgba(19, 33, 45, 0.06);
  --header-outline-bg: rgba(255, 255, 255, 0.08);
  --header-outline-border: rgba(19, 33, 45, 0.14);
  --header-text-shadow: none;
  --header-subtext-shadow: none;
}

body.inner-page .site-header > * {
  pointer-events: auto;
}

body.inner-page .site-header.theme-light {
  --header-fg: #13212d;
  --header-muted: rgba(19, 33, 45, 0.78);
  --header-link: rgba(19, 33, 45, 0.82);
  --header-hover-bg: rgba(19, 33, 45, 0.06);
  --header-outline-bg: rgba(255, 255, 255, 0.92);
  --header-outline-border: rgba(19, 33, 45, 0.14);
  --header-text-shadow: none;
  --header-subtext-shadow: none;
}

body.inner-page .site-header .container {
  width: 100%;
}

body.inner-page .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.45rem;
  min-height: 78px;
  padding: 0.92rem 1.45rem;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    min-height 220ms ease,
    padding 220ms ease,
    transform 220ms ease;
}

body.inner-page .site-header.is-compact .nav-bar {
  min-height: 72px;
  padding: 0.78rem 1.28rem;
  border-radius: 0;
  background: none;
  border-color: transparent;
  box-shadow: none;
}

body.inner-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
  flex-shrink: 0;
}

body.inner-page .brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

body.inner-page .brand-lockup {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
  line-height: 1;
}

body.inner-page .brand-lockup strong {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--header-fg);
  white-space: nowrap;
  text-shadow: var(--header-text-shadow);
}

body.inner-page .brand-lockup small {
  display: block;
  color: var(--header-muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: var(--header-subtext-shadow);
}

body.inner-page .header-nav-zone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: auto;
}

body.inner-page .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.18rem;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
}

body.inner-page .nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 0.9rem;
  border-radius: 11px;
  color: var(--header-link);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  text-shadow: var(--header-text-shadow);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body.inner-page .nav-links a:hover {
  color: var(--header-fg);
  background: var(--header-hover-bg);
}

body.inner-page .nav-links a[aria-current="page"] {
  color: #13212d;
  background: linear-gradient(180deg, #c8ef62, #a7de35);
  box-shadow: 0 10px 22px rgba(167, 222, 53, 0.28);
}

body.inner-page .header-utility {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding-left: 0.2rem;
  flex-shrink: 0;
}

body.inner-page .header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--header-link);
  background: transparent;
  text-shadow: var(--header-text-shadow);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

body.inner-page .header-icon svg {
  display: block;
  width: 18px !important;
  min-width: 18px;
  max-width: 18px;
  height: 18px !important;
  min-height: 18px;
  max-height: 18px;
  flex: 0 0 18px;
}

body.inner-page .header-icon:hover {
  color: var(--header-fg);
  background: var(--header-hover-bg);
  transform: translateY(-1px);
}

body.inner-page .header-actions {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  flex-shrink: 0;
  padding-left: 0.5rem;
}

body.inner-page .site-header .btn {
  min-height: 46px;
  padding: 0.86rem 1.2rem;
  border-radius: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
}

body.inner-page .site-header .btn-outline {
  color: var(--header-fg);
  background: var(--header-outline-bg);
  border-color: var(--header-outline-border);
}

body.inner-page .site-header .btn-outline:hover {
  background: var(--header-hover-bg);
  border-color: color-mix(in srgb, var(--header-outline-border) 82%, #ffffff 18%);
  color: var(--header-fg);
}

body.inner-page .site-header .btn-primary {
  color: #fffdf7;
  background: linear-gradient(135deg, var(--brand-orange-soft), var(--brand-orange));
  box-shadow: 0 12px 24px rgba(239, 127, 26, 0.2);
}

body.inner-page .menu-button {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: none;
  box-shadow: none;
  color: var(--header-fg);
  cursor: pointer;
}

body.inner-page .menu-button span {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 180ms ease, background-color 180ms ease;
}

body.inner-page .menu-button.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.inner-page .menu-button.open span:nth-child(2) {
  opacity: 0;
}

body.inner-page .menu-button.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.inner-page .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 0s linear 260ms;
}

body.inner-page .mobile-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

body.inner-page .mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 24, 0.34);
  opacity: 0;
  transition: opacity 260ms ease;
  backdrop-filter: blur(4px);
}

body.inner-page .mobile-nav.active .mobile-backdrop {
  opacity: 1;
}

body.inner-page .mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, calc(100vw - 0.8rem));
  max-width: calc(100vw - 0.8rem);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: max(1rem, env(safe-area-inset-top)) 0.9rem max(1rem, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.985);
  border-left: 1px solid rgba(19, 33, 45, 0.08);
  box-shadow: -10px 0 28px rgba(19, 33, 45, 0.1);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translate3d(18px, 0, 0);
  opacity: 0;
  transition: transform 300ms cubic-bezier(0.22, 0.8, 0.3, 1), opacity 220ms ease;
}

body.inner-page .mobile-nav.active .mobile-panel {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

body.inner-page .mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.15rem 0.1rem 0.35rem;
}

body.inner-page .mobile-header .brand {
  gap: 0.65rem;
  max-width: calc(100% - 3.25rem);
}

body.inner-page .mobile-header .brand img {
  width: 40px;
  height: 40px;
}

body.inner-page .close-button {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  color: #13212d;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

body.inner-page .close-button:hover {
  opacity: 0.76;
  transform: translateY(-1px);
}

body.inner-page .close-button span {
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
  background: transparent;
}

body.inner-page .close-button span::before,
body.inner-page .close-button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  margin: -1px 0 0 -8px;
  border-radius: 999px;
  background: currentColor;
}

body.inner-page .close-button span::before {
  transform: rotate(45deg);
}

body.inner-page .close-button span::after {
  transform: rotate(-45deg);
}

body.inner-page .mobile-links {
  display: grid;
  gap: 0.55rem;
}

body.inner-page .mobile-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(19, 33, 45, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.inner-page .mobile-links a[aria-current="page"] {
  background: linear-gradient(180deg, rgba(24, 169, 87, 0.12), rgba(246, 162, 40, 0.12));
  border-color: rgba(24, 169, 87, 0.18);
}

body.inner-page .contact-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(19, 33, 45, 0.08);
  background: #f8faf6;
}

body.inner-page .quote-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(10, 18, 28, 0.54);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

body.inner-page .quote-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

body.inner-page .quote-popup {
  width: min(560px, 100%);
  padding: clamp(1.2rem, 3vw, 1.9rem);
  border-radius: 28px;
  border: 1px solid rgba(19, 33, 45, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 244, 0.98));
  box-shadow: 0 28px 60px rgba(11, 29, 45, 0.22);
  position: relative;
}

body.inner-page .quote-popup-close {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(19, 33, 45, 0.1);
  border-radius: 999px;
  background: rgba(19, 33, 45, 0.05);
  color: #13212d;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

body.inner-page .quote-popup-close:hover {
  background: rgba(19, 33, 45, 0.1);
}

body.inner-page .quote-popup-title {
  margin: 0 0 0.55rem;
  padding-right: 2.8rem;
  color: #13212d;
  font-family: "League Spartan", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

body.inner-page .quote-popup-subtext {
  margin: 0 0 1.1rem;
  max-width: 46ch;
  color: rgba(19, 33, 45, 0.72);
}

body.inner-page .quote-popup-form {
  display: grid;
  gap: 0.88rem;
}

body.inner-page .quote-popup-field {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(19, 33, 45, 0.12);
  background: #ffffff;
  color: #13212d;
  font: inherit;
}

body.inner-page .quote-popup-field::placeholder {
  color: rgba(19, 33, 45, 0.5);
}

body.inner-page .quote-popup-field:focus-visible {
  outline: none;
  border-color: rgba(24, 169, 87, 0.42);
  box-shadow: 0 0 0 4px rgba(24, 169, 87, 0.12);
}

body.inner-page .quote-popup-textarea {
  min-height: 132px;
  resize: vertical;
}

body.inner-page .quote-popup-submit {
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #f79922, #ef7f1a);
  color: #fffaf4;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

body.inner-page .quote-popup-submit:hover {
  box-shadow: 0 16px 34px rgba(239, 127, 26, 0.28);
}

body.inner-page .quote-popup-submit:disabled {
  opacity: 0.74;
  cursor: wait;
}

body.inner-page .quote-popup-status {
  min-height: 1.4em;
  margin: 0.1rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
}

body.inner-page .quote-popup-status.success {
  color: #16914e;
}

body.inner-page .quote-popup-status.error {
  color: #b42318;
}

body.inner-page .hero-panel,
body.inner-page .panel,
body.inner-page .card,
body.inner-page .callout,
body.inner-page .info-card,
body.inner-page .service-card,
body.inner-page .operations-card,
body.inner-page .contact-details,
body.inner-page .contact-form,
body.inner-page .gallery-item,
body.inner-page .faq,
body.inner-page .service-areas {
  display: grid;
  gap: 0.95rem;
}

body.inner-page .hero-grid {
  align-items: stretch;
}

body.inner-page .hero-panel > div:last-child,
body.inner-page .panel > div:last-child,
body.inner-page .callout > div:last-child {
  margin-top: 0;
}

body.inner-page .panel h3,
body.inner-page .card h3,
body.inner-page .hero-panel h3,
body.inner-page .callout strong,
body.inner-page .contact-form h3,
body.inner-page .contact-details h3 {
  color: var(--ink);
}

body.inner-page .panel p,
body.inner-page .card p,
body.inner-page .hero-panel p,
body.inner-page .callout p,
body.inner-page .contact-form p,
body.inner-page .contact-details p {
  color: var(--ink-soft);
}

body.inner-page .service-links,
body.inner-page .city-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.96rem;
}

body.inner-page .service-area-shell {
  align-items: start;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(233, 240, 228, 0.92), rgba(255, 255, 255, 0.98) 56%, rgba(244, 248, 240, 0.98));
  box-shadow: var(--shadow-card);
}

body.inner-page .service-area-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

body.inner-page .service-area-copy .section-heading {
  margin-bottom: 0;
}

body.inner-page .service-area-panel {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2vw, 1.55rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(19, 33, 45, 0.06);
}

body.inner-page .service-area-panel h3 {
  margin: 0;
  font-size: 1.08rem;
}

body.inner-page .city-links > span {
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.inner-page .service-areas-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

body.inner-page .service-areas-list--grid span {
  width: 100%;
  justify-content: flex-start;
  padding-inline: 1rem;
}

body.inner-page .city-link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

body.inner-page .city-link-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(19, 33, 45, 0.11);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

body.inner-page .city-link-pills a:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 163, 74, 0.24);
  background: rgba(236, 253, 245, 0.92);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

body.inner-page .service-links a,
body.inner-page .city-links a,
body.inner-page .breadcrumbs a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

body.inner-page .breadcrumbs {
  padding-top: clamp(6.4rem, 7vw, 7.4rem);
  padding-bottom: 0.8rem;
}

body.inner-page .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.inner-page .breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

body.inner-page .breadcrumbs li + li::before {
  content: "/";
  color: rgba(19, 33, 45, 0.34);
}

body.inner-page.page-contact .contact,
body.inner-page.page-booking .contact {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

body.inner-page.page-contact .contact-form,
body.inner-page.page-booking .contact-form {
  align-content: start;
}

body.inner-page.page-results .results-strip,
body.inner-page.page-contact .hero-metrics,
body.inner-page.page-service-detail .hero-metrics {
  margin-top: 1.3rem;
}

body.inner-page main > section[data-header-theme="dark"] .hero-copy h1 {
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

body.inner-page main > section[data-header-theme="dark"] .hero-copy p,
body.inner-page main > section[data-header-theme="dark"] .hero-copy .pill,
body.inner-page main > section[data-header-theme="dark"] .hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

body.inner-page main > section[data-header-theme="dark"] .hero-panel,
body.inner-page main > section[data-header-theme="dark"] .panel,
body.inner-page main > section[data-header-theme="dark"] .card,
body.inner-page main > section[data-header-theme="dark"] .callout,
body.inner-page main > section[data-header-theme="dark"] .info-card,
body.inner-page main > section[data-header-theme="dark"] .service-card,
body.inner-page main > section[data-header-theme="dark"] .operations-card,
body.inner-page main > section[data-header-theme="dark"] .contact-details,
body.inner-page main > section[data-header-theme="dark"] .contact-form,
body.inner-page main > section[data-header-theme="dark"] .gallery-item,
body.inner-page main > section[data-header-theme="dark"] .faq,
body.inner-page main > section[data-header-theme="dark"] .service-areas {
  background: rgba(255, 255, 255, 0.97);
}

body.inner-page main > section[data-header-theme="dark"] .hero-panel h1,
body.inner-page main > section[data-header-theme="dark"] .hero-panel h2,
body.inner-page main > section[data-header-theme="dark"] .hero-panel h3,
body.inner-page main > section[data-header-theme="dark"] .hero-panel h4,
body.inner-page main > section[data-header-theme="dark"] .panel h1,
body.inner-page main > section[data-header-theme="dark"] .panel h2,
body.inner-page main > section[data-header-theme="dark"] .panel h3,
body.inner-page main > section[data-header-theme="dark"] .panel h4,
body.inner-page main > section[data-header-theme="dark"] .card h1,
body.inner-page main > section[data-header-theme="dark"] .card h2,
body.inner-page main > section[data-header-theme="dark"] .card h3,
body.inner-page main > section[data-header-theme="dark"] .card h4,
body.inner-page main > section[data-header-theme="dark"] .callout strong,
body.inner-page main > section[data-header-theme="dark"] .contact-details h1,
body.inner-page main > section[data-header-theme="dark"] .contact-details h2,
body.inner-page main > section[data-header-theme="dark"] .contact-details h3,
body.inner-page main > section[data-header-theme="dark"] .contact-form h3,
body.inner-page main > section[data-header-theme="dark"] .contact-form label,
body.inner-page main > section[data-header-theme="dark"] .faq summary {
  color: var(--ink);
  text-shadow: none;
}

body.inner-page main > section[data-header-theme="dark"] .hero-panel p,
body.inner-page main > section[data-header-theme="dark"] .panel p,
body.inner-page main > section[data-header-theme="dark"] .panel li,
body.inner-page main > section[data-header-theme="dark"] .card p,
body.inner-page main > section[data-header-theme="dark"] .card li,
body.inner-page main > section[data-header-theme="dark"] .callout p,
body.inner-page main > section[data-header-theme="dark"] .contact-details p,
body.inner-page main > section[data-header-theme="dark"] .contact-form p,
body.inner-page main > section[data-header-theme="dark"] .contact-form input,
body.inner-page main > section[data-header-theme="dark"] .contact-form textarea,
body.inner-page main > section[data-header-theme="dark"] .faq details p,
body.inner-page main > section[data-header-theme="dark"] .detail {
  color: var(--ink-soft);
  text-shadow: none;
}

body.inner-page main > section[data-header-theme="dark"] .hero-panel .pill,
body.inner-page main > section[data-header-theme="dark"] .panel .pill,
body.inner-page main > section[data-header-theme="dark"] .card .pill,
body.inner-page main > section[data-header-theme="dark"] .contact-details .pill,
body.inner-page main > section[data-header-theme="dark"] .contact-form .pill {
  color: rgba(19, 33, 45, 0.54);
}

body.inner-page.page-services .container,
body.inner-page.page-results .container,
body.inner-page.page-contact .container,
body.inner-page.page-booking .container,
body.inner-page.page-service-detail .container,
body.inner-page.page-city .container,
body.inner-page.page-generic .container {
  width: min(1480px, calc(100% - clamp(1rem, 2.6vw, 2.1rem)));
}

body.inner-page.page-services .hero,
body.inner-page.page-results .hero,
body.inner-page.page-contact .hero,
body.inner-page.page-booking .hero,
body.inner-page.page-service-detail .hero,
body.inner-page.page-city .hero,
body.inner-page.page-city main > section:first-of-type {
  overflow: hidden;
}

body.inner-page.page-services .hero-copy h1,
body.inner-page.page-results .hero-copy h1,
body.inner-page.page-contact .hero-copy h1,
body.inner-page.page-booking .hero-copy h1,
body.inner-page.page-service-detail .hero-copy h1,
body.inner-page.page-city .hero-copy h1 {
  max-width: 11.8ch;
}

body.inner-page.page-services .hero-panel,
body.inner-page.page-results .hero-panel,
body.inner-page.page-contact .hero-panel,
body.inner-page.page-booking .hero-panel,
body.inner-page.page-service-detail .hero-panel,
body.inner-page.page-city .hero-panel {
  padding: clamp(0.9rem, 1.4vw, 1.05rem);
  border-radius: 34px;
}

body.inner-page.page-services .hero-image,
body.inner-page.page-results .hero-image,
body.inner-page.page-contact .hero-image,
body.inner-page.page-booking .hero-image,
body.inner-page.page-service-detail .hero-image,
body.inner-page.page-city .hero-image {
  border-radius: 24px 92px 24px 24px;
}

body.inner-page.page-about .hero-grid {
  align-items: center;
}

body.inner-page.page-about .hero-copy h1 {
  max-width: 12.8ch;
}

body.inner-page.page-about .hero-panel {
  padding: clamp(1rem, 1.7vw, 1.2rem);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 241, 0.98));
}

body.inner-page.page-about .hero-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1.08 / 0.92;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 24%, rgba(200, 239, 98, 0.42), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(239, 127, 26, 0.18), transparent 30%),
    linear-gradient(135deg, #f5f9ef, #ffffff 58%, #eef5e8);
  box-shadow:
    inset 0 0 0 1px rgba(19, 33, 45, 0.06),
    0 20px 42px rgba(19, 33, 45, 0.1);
}

body.inner-page.page-about .hero-image::before {
  content: "";
  position: absolute;
  inset: clamp(0.8rem, 2vw, 1.1rem);
  border-radius: 22px;
  border: 1px solid rgba(19, 33, 45, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
  pointer-events: none;
}

body.inner-page.page-about .hero-image img {
  position: relative;
  z-index: 1;
  width: min(72%, 320px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(19, 33, 45, 0.12));
}

body.inner-page.page-about .hero-panel > div:last-child {
  padding: 0.2rem 0.3rem 0.25rem;
}

body.inner-page.page-about .hero-panel-copy h2 {
  max-width: 14ch;
}

body.inner-page.page-about .hero-note {
  background: linear-gradient(180deg, rgba(243, 245, 238, 0.98), rgba(238, 243, 234, 0.96));
}

body.inner-page.page-services .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.45rem);
}

body.inner-page.page-services .service-card {
  min-height: 100%;
  padding: clamp(1.45rem, 2vw, 1.85rem);
  align-content: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 244, 0.98));
}

body.inner-page.page-services .service-card h3,
body.inner-page.page-results .gallery-item-title,
body.inner-page.page-service-detail .info-card h3,
body.inner-page.page-service-detail .callout strong,
body.inner-page.page-city .card h2,
body.inner-page.page-city .panel h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

body.inner-page.page-services .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  font-size: 1.02rem;
}

body.inner-page.page-results .results-strip {
  margin-top: 1.5rem;
}

body.inner-page.page-results .gallery-grid {
  gap: clamp(1rem, 2vw, 1.35rem);
}

body.inner-page.page-results .gallery-item {
  padding: 1.05rem;
  border-radius: 30px;
}

body.inner-page.page-results .gallery-content {
  gap: 0.7rem;
}

body.inner-page.page-results .operations-card {
  min-height: 100%;
}

body.inner-page.page-contact .contact,
body.inner-page.page-booking .contact {
  gap: clamp(1rem, 2.2vw, 1.6rem);
}

body.inner-page.page-contact .contact-details,
body.inner-page.page-booking .contact-details {
  padding: clamp(1.55rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 16% 14%, rgba(24, 169, 87, 0.18), transparent 26%),
    linear-gradient(135deg, #11211b 0%, #173427 55%, #214a33 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

body.inner-page.page-contact .contact-details h1,
body.inner-page.page-contact .contact-details h2,
body.inner-page.page-booking .contact-details h1,
body.inner-page.page-booking .contact-details h2,
body.inner-page.page-contact .contact-details .pill,
body.inner-page.page-booking .contact-details .pill,
body.inner-page.page-contact .contact-details p,
body.inner-page.page-booking .contact-details p,
body.inner-page.page-contact .detail,
body.inner-page.page-booking .detail {
  color: #ffffff;
}

body.inner-page.page-contact .contact-details .pill,
body.inner-page.page-booking .contact-details .pill {
  color: rgba(255, 255, 255, 0.76);
}

body.inner-page.page-contact .contact-details .detail,
body.inner-page.page-booking .contact-details .detail {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: none;
}

body.inner-page.page-contact .contact-details .btn-outline,
body.inner-page.page-booking .contact-details .btn-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

body.inner-page.page-contact .contact-details .btn-outline:hover,
body.inner-page.page-booking .contact-details .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

body.inner-page.page-contact .contact-form,
body.inner-page.page-booking .contact-form {
  padding: clamp(1.45rem, 3vw, 2rem);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 244, 0.98));
}

body.inner-page.page-contact .contact-form form,
body.inner-page.page-booking .contact-form form {
  gap: 1rem;
}

body.inner-page.page-booking .checkbox-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.inner-page.page-service-detail .split-grid {
  align-items: start;
}

body.inner-page.page-service-detail .callout {
  padding: clamp(1.45rem, 2.2vw, 1.9rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 239, 0.98));
}

body.inner-page.page-service-detail .info-card,
body.inner-page.page-service-detail .callout,
body.inner-page.page-service-detail .faq details,
body.inner-page.page-city .card,
body.inner-page.page-city .panel {
  border-radius: 30px;
}

body.inner-page.page-city .panel,
body.inner-page.page-city .card {
  padding: clamp(1.4rem, 2.1vw, 1.9rem);
}

body.inner-page.page-city .panel h1 {
  max-width: 9ch;
}

body.inner-page.page-city .grid {
  align-items: stretch;
}

body.inner-page.page-city .card,
body.inner-page.page-city .panel,
body.inner-page.page-service-detail .info-card,
body.inner-page.page-service-detail .callout,
body.inner-page.page-results .operations-card,
body.inner-page.page-results .gallery-item,
body.inner-page.page-services .service-card {
  min-height: 100%;
}

body.inner-page .footer-top {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.35rem, 2.2vw, 1.8rem);
}

@media (max-width: 1100px) {
  body.inner-page .site-header .container {
    width: 100%;
  }

  body.inner-page .header-nav-zone {
    gap: 0.6rem;
  }

  body.inner-page .nav-links a {
    padding-inline: 0.72rem;
  }

  body.inner-page .header-utility {
    gap: 0.22rem;
  }

  body.inner-page .header-actions {
    gap: 0.55rem;
    padding-left: 0.45rem;
  }

  body.inner-page .site-header .btn {
    padding-inline: 1rem;
  }

  body.inner-page .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body.inner-page {
    --section-space: clamp(2.85rem, 8.6vw, 3.85rem);
  }

  body.inner-page .header-nav-zone {
    margin-left: auto;
  }

  body.inner-page .nav-links,
  body.inner-page .header-utility {
    display: none;
  }

  body.inner-page .header-actions {
    margin-left: auto;
    padding-left: 0;
  }

  body.inner-page .header-actions .btn {
    display: none;
  }

  body.inner-page .menu-button {
    display: inline-flex;
  }

  body.inner-page .hero-grid,
  body.inner-page .split-grid,
  body.inner-page .contact,
  body.inner-page .grid,
  body.inner-page.page-city .hero,
  body.inner-page .hero-metrics,
  body.inner-page .results-strip,
  body.inner-page .info-grid,
  body.inner-page .operations-grid,
  body.inner-page .gallery-grid,
  body.inner-page .services-grid,
  body.inner-page .footer-columns,
  body.inner-page .footer-topline,
  body.inner-page .footer-top,
  body.inner-page .checkbox-group {
    grid-template-columns: 1fr;
  }

  body.inner-page .section-heading,
  body.inner-page .hero-copy,
  body.inner-page .contact-details,
  body.inner-page .footer-brand,
  body.inner-page .footer-action,
  body.inner-page .hero-actions,
  body.inner-page .btn-row {
    justify-items: center;
    text-align: center;
  }

  body.inner-page .hero-actions,
  body.inner-page .btn-row,
  body.inner-page .footer-cta {
    justify-content: center;
  }

  body.inner-page .footer-top .footer-brand p {
    max-width: 30rem;
  }

  body.inner-page .hero-copy h1,
  body.inner-page .contact-details h1,
  body.inner-page .panel h1,
  body.inner-page .section-heading p,
  body.inner-page .hero-copy p,
  body.inner-page .hero-panel p,
  body.inner-page .callout p,
  body.inner-page .panel p,
  body.inner-page .card p,
  body.inner-page .contact-details p,
  body.inner-page .contact-form p {
    max-width: 100%;
    margin-inline: auto;
  }

  body.inner-page .hero-panel,
  body.inner-page .panel,
  body.inner-page .card,
  body.inner-page .callout,
  body.inner-page .contact-details,
  body.inner-page .contact-form,
  body.inner-page .service-areas {
    padding: 1.1rem;
  }

  body.inner-page .hero-image {
    aspect-ratio: 1.14 / 0.86;
    border-radius: 22px 52px 22px 22px;
  }

  body.inner-page .checklist li,
  body.inner-page .detail,
  body.inner-page .contact-card div {
    text-align: left;
  }

  body.inner-page .section-shell > .section-heading,
  body.inner-page .service-areas .section-heading,
  body.inner-page .gallery-content,
  body.inner-page .service-card,
  body.inner-page .panel,
  body.inner-page .card,
  body.inner-page .cta-banner,
  body.inner-page .service-areas {
    justify-items: stretch;
    text-align: left;
  }

  body.inner-page .service-links,
  body.inner-page .city-links,
  body.inner-page .gallery-tags,
  body.inner-page .contact-form-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body.inner-page .container {
    width: min(calc(100% - 0.78rem), 1240px);
  }

  body.inner-page .brand-lockup strong {
    font-size: 0.9rem;
  }

  body.inner-page .brand-lockup small {
    display: block;
    font-size: 0.6rem;
  }

  body.inner-page h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  body.inner-page .hero-copy h1 {
    max-width: 100%;
  }

  body.inner-page .section-heading {
    margin-bottom: 1.2rem;
  }

  body.inner-page .hero,
  body.inner-page .page-city main > section:first-of-type {
    padding-top: clamp(4.6rem, 8vw, 5.4rem);
    padding-bottom: clamp(2.4rem, 6vw, 3rem);
  }

  body.inner-page .hero-copy h1 {
    font-size: clamp(1.88rem, 8.2vw, 2.65rem);
    line-height: 1.02;
  }

  body.inner-page .hero-copy p,
  body.inner-page .hero-panel p,
  body.inner-page .panel p,
  body.inner-page .card p,
  body.inner-page .contact-details p,
  body.inner-page .contact-form p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  body.inner-page .hero-image {
    aspect-ratio: 1.08 / 0.88;
    border-radius: 18px 30px 18px 18px;
  }
}

@media (max-width: 420px) {
  body.inner-page .container {
    width: min(calc(100% - 0.72rem), 1240px);
  }

  body.inner-page .btn {
    min-height: 50px;
    width: 100%;
  }

  body.inner-page .hero-panel,
  body.inner-page .panel,
  body.inner-page .card,
  body.inner-page .callout,
  body.inner-page .info-card,
  body.inner-page .service-card,
  body.inner-page .operations-card,
  body.inner-page .contact-details,
  body.inner-page .contact-form,
  body.inner-page .gallery-item,
  body.inner-page .faq,
  body.inner-page .service-areas,
  body.inner-page .footer-top {
    padding: 0.95rem;
  }

  body.inner-page .brand-lockup small {
    display: none;
  }

  body.inner-page .hero,
  body.inner-page .page-city main > section:first-of-type {
    padding-top: 4.35rem;
    padding-bottom: 2.35rem;
  }

  body.inner-page .hero-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  body.inner-page .hero-actions,
  body.inner-page .btn-row,
  body.inner-page .footer-cta {
    gap: 0.55rem;
  }

  body.inner-page .metric,
  body.inner-page .result-card {
    padding: 0.85rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 1ms;
  }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--up {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  html.is-page-leaving .page,
  html.is-page-leaving main,
  html.is-page-leaving header,
  html.is-page-leaving footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
