@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:FILL@0..1&display=swap');

:root {
  --ink: #0f1e33;
  --ink-deep: #0b1626;
  --text: #16233a;
  --text-secondary: #33445c;
  --muted: #5a6b82;
  --muted-light: #8493a8;
  --blue: #1e5aa8;
  --blue-accent: #4a90d9;
  --blue-soft: #eaf1fa;
  --surface: #ffffff;
  --page: #f6f9fc;
  --field: #fbfdff;
  --border: #e3e9f2;
  --border-light: #eef2f8;
  --radius: 16px;
  --content: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { color: #fff; background: var(--blue-accent); }

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: #14263f; }

button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: 32px;
}

.section-pad { padding-block: 96px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-title,
.page-title,
.card-title,
.footer-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink);
}

.section-title {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); }
.button-primary:hover { color: #fff; background: #184c8e; }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { color: #fff; background: #14263f; }
.button-light { color: var(--ink); background: rgba(255,255,255,.95); }
.button-light:hover { color: var(--ink); background: #fff; }
.button-outline { color: #fff; background: transparent; border-color: #35496a; }
.button-outline:hover { color: #fff; border-color: #7890b1; }

/* Shared header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

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

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: auto; height: 38px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
}
.main-nav a:hover, .main-nav a[aria-current='page'] { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta { min-height: 0; padding: 12px 22px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid #d8e2ef;
  border-radius: 9px;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  inset: 76px 0 auto;
  padding: 8px 20px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 18px 34px rgba(15,30,51,.1);
}
.mobile-nav.is-open { display: flex; flex-direction: column; }
.mobile-nav > a:not(.button) {
  padding: 14px 6px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f4f9;
}
.mobile-nav > a[aria-current='page'] { color: var(--blue); }
.mobile-nav .button { margin-top: 16px; }

/* Home */
@keyframes plane-float {
  0%, 100% { transform: translate(0, -.02em) rotate(0); }
  50% { transform: translate(.12em, -.16em) rotate(-1.2deg); }
}
@keyframes cloud-drift {
  0%, 100% { background-position: center center; }
  50% { background-position: 52% 48%; }
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #157cbc url('handoff-assets/hero-sky.png') center / cover no-repeat;
  animation: cloud-drift 24s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,64,118,.06);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding-block: 26px 38px; transform: translateY(-26px); }
.hero-title {
  margin: 0;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 130px;
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(15,30,51,.18);
}
.hero-title-line { display: inline-flex; align-items: center; gap: .15em; }
.plane-scroll { display: inline-flex; will-change: transform, opacity; }
.hero-plane {
  width: 1.55em;
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(15,30,51,.22));
  animation: plane-float 6s ease-in-out infinite;
}
.hero-kicker {
  max-width: 32ch;
  margin: 32px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-actions .button { padding: 15px 28px; font-size: 16px; }

.stats-band { background: #fff; border-block: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 44px 28px; border-right: 1px solid var(--border-light); }
.stat:last-child { border-right: 0; }
.stat-value {
  color: var(--blue);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.stat-label { margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.45; }

.services-heading { max-width: 640px; margin-bottom: 52px; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: #c7d5e7; }
.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
}
.service-card h3 { margin: 22px 0 0; font-size: 23px; font-weight: 600; }
.service-card p { flex: 1; margin: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.service-card a { margin-top: 22px; font-size: 15px; font-weight: 600; }

.operations { color: #fff; background: var(--ink); }
.operations-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 64px; align-items: center; }
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-placeholder {
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg,#182b45,#182b45 11px,#1d3250 11px,#1d3250 22px);
  border: 1px solid #24395a;
  border-radius: 14px;
  aspect-ratio: 3 / 4;
}
.photo-placeholder:nth-child(2) { margin-top: 34px; }
.photo-label {
  padding: 5px 9px;
  color: #7f92ad;
  background: rgba(11,22,38,.72);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
}
.operations .section-title { color: #fff; font-size: 38px; line-height: 1.1; }
.operations-copy { margin: 20px 0 0; color: #b9c6d8; font-size: 17px; line-height: 1.65; }
.operations-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.standard { padding: 34px 30px; background: #fff; }
.standard-number { color: var(--blue-accent); font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .04em; }
.standard h3 { margin: 16px 0 0; font-size: 19px; font-weight: 600; }
.standard p { margin: 10px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

.clients { padding-block: 80px; text-align: center; background: #fff; border-top: 1px solid var(--border); }
.clients .section-title { max-width: 640px; margin-inline: auto; font-size: 34px; }
.clients-intro { max-width: 560px; margin: 16px auto 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.client-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; }
.client-logo {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f6fb;
  border: 1px solid #e6edf6;
  border-radius: 10px;
  padding: 14px 18px;
}
.client-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Inner pages */
.page-hero-dark { color: #fff; background: var(--ink); }
.page-hero-dark .wrap { padding-block: 88px 76px; }
.page-title { max-width: 760px; font-size: 52px; line-height: 1.05; letter-spacing: -.025em; }
.page-hero-dark .page-title { color: #fff; }
.page-intro { max-width: 620px; margin: 22px 0 0; color: #b9c6d8; font-size: 18px; line-height: 1.6; }

.services-list { max-width: 1100px; padding-block: 40px 96px; }
.service-detail { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; padding-block: 64px; border-bottom: 1px solid var(--border); }
.service-photo {
  margin: 0;
  overflow: hidden;
  background: #e8eef6;
  border: 1px solid #dbe4f0;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-photo-sky-shop img { object-position: 46% center; }
.service-photo-duty-free img { object-position: 52% center; }
.service-detail .number-badge { width: 44px; height: 44px; border-radius: 11px; font-size: 16px; }
.service-detail h2 { margin: 18px 0 0; font-size: 32px; letter-spacing: -.02em; }
.service-summary { margin: 12px 0 0; color: var(--muted); font-size: 16.5px; line-height: 1.6; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.feature-list li { display: flex; gap: 12px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.5; }
.check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.closing-cta { padding-top: 64px; text-align: center; }
.closing-cta h2 { margin: 0; font-size: 30px; }
.closing-cta p { margin: 12px 0 0; color: var(--muted); font-size: 16px; }
.closing-cta .button { margin-top: 24px; padding-inline: 30px; font-size: 16px; }
.service-detail-link { display: inline-flex; margin-top: 24px; font-size: 15px; font-weight: 700; }

/* Service detail pages */
.service-page-hero { color: #fff; background: var(--ink); }
.service-page-hero-inner { padding-block: 34px 72px; }
.service-back { display: inline-flex; color: #aebdd1; font-size: 14px; font-weight: 600; }
.service-back:hover { color: #fff; }
.service-page-hero-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 64px; align-items: center; margin-top: 38px; }
.service-page-title { max-width: 660px; margin: 0; font-size: 58px; line-height: 1.03; letter-spacing: -.035em; }
.service-page-tagline { max-width: 570px; margin: 24px 0 0; color: #c3cfde; font-size: 19px; font-weight: 500; line-height: 1.55; }
.service-page-hero-photo { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; aspect-ratio: 16 / 10; }
.service-page-hero-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.service-page-photo-sky-shop img { object-position: 46% center; }
.service-page-photo-duty-free img { object-position: 52% center; }
.service-page-main { display: grid; grid-template-columns: minmax(0, 760px) minmax(240px, 300px); gap: 80px; align-items: start; padding-block: 82px 104px; }
.service-article { min-width: 0; }
.service-article-lead { margin: 0; color: var(--text-secondary); font-size: 19px; line-height: 1.75; }
.service-article h2 { margin: 54px 0 0; font-size: 34px; line-height: 1.15; letter-spacing: -.025em; }
.service-article h3 { margin: 34px 0 0; font-family: 'Space Grotesk', sans-serif; font-size: 24px; line-height: 1.25; letter-spacing: -.015em; }
.service-article p:not(.service-article-lead) { margin: 14px 0 0; color: var(--muted); font-size: 16.5px; line-height: 1.7; }
.service-bullet-list { display: grid; gap: 14px; margin: 22px 0 0; padding: 0; list-style: none; }
.service-bullet-list li { position: relative; padding-left: 28px; color: var(--text-secondary); font-size: 16.5px; line-height: 1.55; }
.service-bullet-list li::before { content: '✓'; position: absolute; top: 1px; left: 0; color: var(--blue-accent); font-weight: 700; }
.service-page-sidebar { position: sticky; top: 104px; padding: 28px; background: var(--blue-soft); border: 1px solid var(--border); border-radius: var(--radius); }
.service-page-sidebar h2 { margin: 22px 0 0; font-size: 22px; }
.service-page-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 18px; }
.service-page-nav a { padding: 10px 0; color: var(--muted); font-size: 15px; font-weight: 600; border-bottom: 1px solid #dce6f2; }
.service-page-nav a:hover, .service-page-nav a[aria-current='page'] { color: var(--blue); }
.service-page-sidebar .button { width: 100%; margin-top: 24px; padding-inline: 18px; }

.about-hero { padding-block: 88px 40px; text-align: center; }
.about-hero > div { max-width: 800px; margin-inline: auto; }
.about-hero .page-title, .contact-layout .page-title { font-size: 50px; }
.about-hero .page-title { margin-inline: auto; }
.about-copy { margin: 22px auto 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.about-stats-wrap { padding-block: 40px 20px; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); }
.about-stats .stat { background: #fff; border: 0; padding: 40px 28px; }
.about-stats .stat-value { font-size: 40px; }
.about-stats .stat-label { font-size: 14.5px; }
.process { max-width: 1000px; padding-block: 72px 96px; }
.process .section-title { margin-bottom: 44px; font-size: 34px; text-align: center; }
.process-list { display: flex; flex-direction: column; gap: 1px; overflow: hidden; margin: 0; padding: 0; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); list-style: none; }
.process-item { display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: baseline; padding: 30px 34px; background: #fff; }
.process-number { color: var(--blue-accent); font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; }
.process-item h3 { margin: 0; font-size: 20px; font-weight: 600; }
.process-item p { margin: 8px 0 0; color: var(--muted); font-size: 15.5px; line-height: 1.6; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; padding-block: 88px 96px; }
.contact-copy { margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 10px;
}
.contact-icon .material-symbols-rounded { font-size: 21px; }
.contact-label { color: var(--muted-light); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.contact-value { margin-top: 3px; color: var(--text); font-size: 16px; line-height: 1.5; }

.contact-card { padding: 36px; background: #fff; border: 1px solid var(--border); border-radius: 18px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { color: var(--text-secondary); font-size: 13.5px; font-weight: 600; }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--text);
  background: var(--field);
  border: 1px solid #d8e2ef;
  border-radius: 10px;
  font-size: 15px;
}
.field textarea { min-height: 126px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,90,168,.12); }
.field input[aria-invalid='true'], .field textarea[aria-invalid='true'] { border-color: #b42318; }
.field-error { display: none; margin: 0; color: #b42318; font-size: 12.5px; }
.field-error.is-visible { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--blue); }
.contact-form .button { width: 100%; border: 0; cursor: pointer; font-size: 16px; }
.form-status { display: none; margin: 0; padding: 12px 14px; color: #14532d; background: #ecfdf3; border: 1px solid #bbf7d0; border-radius: 10px; font-size: 14px; }
.form-status.is-visible { display: block; }
.form-status.is-error { color: #991b1b; background: #fef2f2; border-color: #fecaca; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer { color: #fff; background: var(--ink-deep); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; padding-block: 72px 40px; }
.footer-logo { width: auto; height: 40px; }
.footer-tagline { max-width: 280px; margin: 20px 0 0; color: #8ea0b8; font-size: 14.5px; line-height: 1.6; }
.footer-title { margin-bottom: 18px; color: #63758d; font-family: 'IBM Plex Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-links span { color: #c3d0e0; font-size: 15px; line-height: 1.5; }
.footer-links a:hover { color: #fff; }
.footer-links .footer-address { color: #8ea0b8; }
.footer-sub { border-top: 1px solid #1c2b42; }
.footer-sub-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-block: 22px; }
.copyright { color: #63758d; font-size: 13.5px; }
.social-links { display: flex; gap: 20px; }
.social-links a { color: #8ea0b8; font-size: 13.5px; }

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 70vh; }
  .hero-title { font-size: 84px; }
  .section-title { font-size: 32px; }
  .service-cards, .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .operations-grid, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 28px; }
  .service-page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-page-main { grid-template-columns: 1fr; gap: 54px; }
  .service-page-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .wrap { padding-inline: 20px; }
  .section-pad { padding-block: 60px; }
  .site-header, .header-inner { height: 68px; }
  .brand img { height: 31px; }
  .mobile-nav { top: 68px; }
  .hero { min-height: 60vh; }
  .hero-content { padding-block: 46px; }
  .hero-content { transform: none; }
  .hero-title { font-size: 44px; }
  .hero-kicker { margin-top: 24px; font-size: 13px; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .section-title { font-size: 27px; }
  .stats-grid, .about-stats { grid-template-columns: repeat(2, 1fr); }
  .stat, .about-stats .stat { padding: 30px 20px; }
  .stat-value, .about-stats .stat-value { font-size: 34px; }
  .service-cards, .standards-grid, .client-grid, .form-row { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-duo { max-width: 410px; }
  .page-hero-dark .wrap { padding-block: 60px; }
  .page-title, .about-hero .page-title, .contact-layout .page-title { font-size: 40px; }
  .page-intro, .about-copy, .contact-copy { font-size: 16.5px; }
  .services-list { padding-block: 10px 60px; }
  .service-detail { padding-block: 48px; }
  .service-detail h2 { font-size: 27px; }
  .service-page-hero-inner { padding-block: 24px 52px; }
  .service-page-hero-grid { margin-top: 28px; gap: 30px; }
  .service-page-title { font-size: 40px; }
  .service-page-tagline { margin-top: 18px; font-size: 17px; }
  .service-page-hero-photo { border-radius: 12px; aspect-ratio: 4 / 3; }
  .service-page-main { gap: 42px; padding-block: 56px 72px; }
  .service-article-lead { font-size: 17px; line-height: 1.65; }
  .service-article h2 { margin-top: 42px; font-size: 29px; }
  .service-article h3 { margin-top: 28px; font-size: 21px; }
  .service-article p:not(.service-article-lead), .service-bullet-list li { font-size: 15.5px; }
  .service-page-sidebar { padding: 24px 20px; }
  .about-hero { padding-block: 60px 20px; }
  .process { padding-block: 50px 60px; }
  .process-item { grid-template-columns: 42px 1fr; gap: 12px; padding: 24px 20px; }
  .contact-layout { padding-block: 60px; }
  .contact-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-sub-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
