:root {
  --brand-green: #159b55;
  --brand-green-deep: #0b7042;
  --care-lime: #7eb241;
  --trust-ink: #2d5c6d;
  --body-ink: #183842;
  --muted-ink: #49656d;
  --soft-sage: #a1bc9f;
  --sage-wash: #eaf2ea;
  --warm-paper: #fafbf7;
  --white: #fff;
  --action-green: #087a44;
  --action-green-hover: #056238;
  --hairline: #d8e4dc;
  --focus: #b85f00;
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --section-space: clamp(72px, 9vw, 128px);
  --radius-control: 10px;
  --radius-media: 20px;
  --z-header: 30;
  --z-mobile-bar: 40;
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--body-ink);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
p, li { text-wrap: pretty; }
h1, h2, h3 { margin: 0; color: var(--trust-ink); text-wrap: balance; }
h1 { max-width: 10ch; font-size: clamp(2.75rem, 5.5vw, 5rem); line-height: 1.06; letter-spacing: -.025em; }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1.14; letter-spacing: -.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.32; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--trust-ink);
  color: var(--white);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: clamp(230px, 23vw, 312px); height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav ul { display: flex; align-items: center; gap: clamp(14px, 1.6vw, 24px); margin: 0; padding: 0; list-style: none; }
.site-nav a { min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; font-size: .91rem; font-weight: 700; }
.site-nav a:not(.button):hover { color: var(--brand-green-deep); }
.site-nav a[aria-current="page"] { color: var(--brand-green-deep); text-decoration: underline; text-decoration-color: var(--care-lime); text-decoration-thickness: 3px; text-underline-offset: 8px; }
.site-nav .button { border-color: var(--action-green); background: transparent; color: var(--action-green); }
.site-nav .button:hover { background: var(--sage-wash); }
.menu-toggle { display: none; min-height: 44px; border: 0; background: transparent; color: var(--trust-ink); font: inherit; font-weight: 750; }
.menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 20px; height: 2px; background: currentColor; }
.menu-lines { position: relative; }
.menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; }
.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: var(--action-green);
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms cubic-bezier(.25, 1, .5, 1), transform 180ms cubic-bezier(.25, 1, .5, 1);
}
.button:hover { background: var(--action-green-hover); transform: translateY(-1px); }
.button-small { min-height: 44px; padding: 10px 15px; font-size: .86rem; }
.button-secondary { border-color: var(--action-green); background: var(--white); color: var(--action-green); }
.button-secondary:hover { background: var(--sage-wash); color: var(--brand-green-deep); }
.button-light { background: var(--white); color: var(--action-green-hover); }
.button-light:hover { background: var(--sage-wash); color: var(--action-green-hover); }
.text-link { font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.text-link:hover { color: var(--brand-green-deep); }
.text-link-light { color: var(--white); }
.text-link-light:hover { color: var(--white); }

.hero { padding-block: clamp(58px, 8vw, 112px); overflow: clip; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}
.hero-copy { position: relative; z-index: 1; }
.hero-kicker { margin: 0 0 20px; color: var(--brand-green-deep); font-size: .96rem; font-weight: 800; }
.hero-lead { max-width: 34rem; margin: 24px 0 32px; color: var(--muted-ink); font-size: clamp(1.08rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -26px -12vw 24% 22%;
  z-index: -1;
  background: var(--brand-green);
}
.hero-media img { width: 100%; min-height: 520px; max-height: 640px; object-fit: cover; object-position: 50% center; border-radius: var(--radius-media) 0 0 var(--radius-media); }
.media-note { max-width: 42rem; margin: 14px 0 0; color: var(--muted-ink); font-size: .78rem; line-height: 1.5; }

.section-heading { max-width: 680px; }
.section-heading > p { margin: 0 0 16px; color: var(--brand-green-deep); font-weight: 800; }
.section-heading--wide { max-width: 880px; }
.section-lead { max-width: 58ch; margin: 24px 0 0; color: var(--muted-ink); }

.needs { padding-block: clamp(68px, 8vw, 108px); background: var(--warm-paper); }
.needs .section-heading { margin-bottom: 42px; }
.needs ul { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-block: 1px solid var(--hairline); }
.needs li + li { border-left: 1px solid var(--hairline); }
.needs a { min-height: 270px; display: flex; flex-direction: column; padding: 26px 22px 22px; text-decoration: none; transition: background-color 180ms cubic-bezier(.25, 1, .5, 1); }
.needs a:hover { background: var(--white); }
.need-index { color: var(--care-lime); font-size: .84rem; font-weight: 850; }
.needs strong { margin-top: 30px; color: var(--trust-ink); font-size: 1.2rem; line-height: 1.4; }
.needs small { margin-top: 12px; color: var(--muted-ink); font-size: .9rem; line-height: 1.65; }
.need-arrow { margin-top: auto; color: var(--brand-green-deep); font-size: 1.35rem; }

.process { padding-block: var(--section-space); background: var(--trust-ink); color: var(--white); }
.process-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(42px, 8vw, 112px); }
.process h2, .process h3 { color: var(--white); }
.process .section-heading > p { color: #bfe5c7; }
.process .section-lead { color: #d4e4e8; }
.process ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgb(255 255 255 / 22%); }
.process li { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 22px; padding-block: 28px; border-bottom: 1px solid rgb(255 255 255 / 22%); }
.process-number { color: #bfe5c7; font-weight: 850; }
.process li p { max-width: 58ch; margin: 8px 0 0; color: #d4e4e8; }

.services { padding-block: var(--section-space); }
.services .section-heading { margin-bottom: 58px; }
.service-rows { border-top: 1px solid var(--hairline); }
.service-row { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(38px, 7vw, 96px); padding-block: clamp(44px, 6vw, 78px); border-bottom: 1px solid var(--hairline); }
.service-row:nth-child(even) > :first-child { order: 2; }
.service-row__visual { min-height: 340px; }
.service-row__visual img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; border-radius: var(--radius-media); }
.service-row__signal { min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 5vw, 54px); background: var(--brand-green); color: var(--white); border-radius: var(--radius-media); }
.service-row__signal--light { background: var(--sage-wash); color: var(--trust-ink); }
.service-row__signal span { font-weight: 850; }
.service-row__signal strong { max-width: 12ch; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.2; }
.service-count { color: var(--care-lime); font-size: .84rem; font-weight: 850; }
.service-row__copy h3 { margin-top: 20px; font-size: clamp(1.9rem, 3vw, 3rem); }
.service-row__copy p { max-width: 58ch; margin: 18px 0 24px; color: var(--muted-ink); }

.trust { padding-block: var(--section-space); background: var(--sage-wash); }
.trust-grid { display: grid; grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr); gap: clamp(42px, 8vw, 112px); }
.trust ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid #bfd0c2; }
.trust li { display: grid; grid-template-columns: minmax(150px, .6fr) 1fr; gap: 30px; padding-block: 28px; border-bottom: 1px solid #bfd0c2; }
.trust li p { margin: 0; color: var(--muted-ink); }

.escort { padding-block: var(--section-space); }
.escort-feature { display: grid; grid-template-columns: minmax(420px, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(42px, 8vw, 108px); }
.escort-feature__media img { width: 100%; min-height: 520px; object-fit: cover; object-position: 56% center; border-radius: var(--radius-media); }
.escort-feature__copy > p:not(.hero-kicker) { max-width: 54ch; margin: 24px 0 30px; color: var(--muted-ink); }

.page-hero { padding-block: clamp(70px, 9vw, 132px); background: var(--sage-wash); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr); align-items: end; gap: clamp(36px, 8vw, 118px); }
.page-hero h1 { max-width: 14ch; }
.page-hero .hero-lead { margin-top: 0; }
.content-section { padding-block: clamp(64px, 8vw, 112px); }
.content-section:nth-of-type(odd) { background: var(--warm-paper); }
.section-grid { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); gap: clamp(36px, 8vw, 112px); }
.section-intro p { max-width: 68ch; margin: 22px 0 0; color: var(--muted-ink); }
.item-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--hairline); }
.item { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px; padding-block: 26px; border-bottom: 1px solid var(--hairline); }
.item-number { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--brand-green); color: var(--white); font-size: .86rem; font-weight: 850; }
.item p { max-width: 60ch; margin: 8px 0 0; color: var(--muted-ink); }

.contact-band { padding-block: clamp(64px, 8vw, 104px); background: var(--brand-green-deep); color: var(--white); }
.contact-band__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .52fr); align-items: end; gap: 48px; }
.contact-band h2 { max-width: 19ch; color: var(--white); }
.contact-band p { margin: 0 0 16px; color: #ccebd3; font-weight: 800; }
.contact-band small { display: block; max-width: 68ch; margin-top: 22px; color: #d9ece0; font-size: .85rem; }
.contact-band__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

.site-footer { padding-block: 58px 24px; background: var(--sage-wash); }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.3fr) .8fr 1fr; gap: clamp(34px, 7vw, 92px); }
.footer-brand .brand img { width: min(320px, 100%); }
.footer-brand p { margin: 18px 0 0; color: var(--brand-green-deep); font-weight: 800; }
.site-footer ul { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 28px; }
.site-footer li { break-inside: avoid; margin-bottom: 10px; }
.site-footer a { font-weight: 700; text-underline-offset: 5px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-legal { display: flex; justify-content: space-between; gap: 24px; margin-top: 46px; padding-top: 20px; border-top: 1px solid #bfd0c2; color: var(--muted-ink); font-size: .78rem; }
.footer-legal p { margin: 0; }
.mobile-contact-bar { display: none; }

.not-found { min-height: 62vh; display: grid; place-items: center; padding-block: 80px; text-align: center; }
.not-found h1 { max-width: none; }
.not-found p { max-width: 36rem; margin: 22px auto 30px; color: var(--muted-ink); }

@media (max-width: 1080px) {
  .header-inner { min-height: 78px; }
  .brand img { width: 240px; }
  .site-nav ul { gap: 12px; }
  .site-nav a { font-size: .82rem; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 38px; }
  .hero-media img { min-height: 460px; }
  .needs ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .needs li + li { border-left: 0; }
  .needs li:nth-child(3n + 2), .needs li:nth-child(3n + 3) { border-left: 1px solid var(--hairline); }
  .needs li:nth-child(n + 4) { border-top: 1px solid var(--hairline); }
}

@media (max-width: 860px) {
  .js .menu-toggle { display: inline-flex; align-items: center; gap: 11px; }
  .js .site-nav {
    display: none;
    position: absolute;
    inset: 78px 20px auto;
    padding: 22px;
    border: 1px solid var(--hairline);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 8px rgb(24 56 66 / 10%);
  }
  .js .site-nav[data-open="true"] { display: block; }
  .site-nav, .site-nav ul { align-items: stretch; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li { border-bottom: 1px solid var(--hairline); }
  .site-nav li a { min-height: 48px; font-size: 1rem; }
  .site-nav .button { margin-top: 18px; }
  .hero-grid, .page-hero__grid, .process-grid, .trust-grid, .escort-feature, .contact-band__inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-media { width: min(760px, 100%); }
  .hero-media::before { inset: -20px -30vw 35% 20%; }
  .service-row { grid-template-columns: minmax(300px, .9fr) 1.1fr; gap: 34px; }
  .section-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 36px, 680px); --section-space: 78px; }
  body { padding-bottom: 72px; }
  .header-inner { min-height: 70px; }
  .brand img { width: 220px; }
  .js .site-nav { inset: 70px 18px auto; }
  .hero { padding-top: 46px; }
  .hero-grid, .escort-feature, .contact-band__inner, .service-row { grid-template-columns: 1fr; }
  .hero-media img { min-height: 390px; border-radius: var(--radius-media); object-position: 51% center; }
  .hero-media::before { inset: -18px -18px 30% 28%; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .needs ul { grid-template-columns: 1fr; }
  .needs li + li, .needs li:nth-child(3n + 2), .needs li:nth-child(3n + 3) { border-left: 0; border-top: 1px solid var(--hairline); }
  .needs li:first-child { border-top: 0; }
  .needs a { min-height: 0; padding: 22px 4px; display: grid; grid-template-columns: 40px minmax(0, 1fr) 24px; align-items: start; column-gap: 10px; }
  .needs strong { margin: 0; }
  .needs small { grid-column: 2; }
  .need-arrow { grid-column: 3; grid-row: 1; margin: 0; }
  .process li { grid-template-columns: 46px minmax(0, 1fr); }
  .service-row:nth-child(even) > :first-child { order: initial; }
  .service-row__visual, .service-row__visual img, .service-row__signal { min-height: 300px; }
  .trust li { grid-template-columns: 1fr; gap: 8px; }
  .escort-feature__media img { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .site-footer ul { columns: 2; }
  .footer-legal { flex-direction: column; }
  .mobile-contact-bar {
    position: fixed;
    inset: auto 12px 12px;
    z-index: var(--z-mobile-bar);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: var(--radius-control);
    background: var(--action-green);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 8px rgb(24 56 66 / 16%);
  }
}

@media (max-width: 420px) {
  :root { --shell: min(100% - 36px, 384px); }
  .brand img { width: 196px; }
  h1 { max-width: 9ch; font-size: clamp(2.35rem, 12vw, 3.3rem); }
  h2 { max-width: 12em; }
  .button { width: 100%; min-height: 48px; }
  .hero-media img { min-height: 330px; }
  .service-row__visual, .service-row__visual img, .service-row__signal { min-height: 260px; }
}

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

/* Original-logo colour system, September 2026 redesign. */
:root { --shell: min(1500px, calc(100% - 64px)); --section-space: 76px; }
.site-header { background: #fff; backdrop-filter: none; border-top: 6px solid var(--brand-green); }
.header-inner { min-height: 88px; }
.brand { max-width: 300px; flex: 0 1 300px; min-width: 0; }
.brand img { width: 285px; max-width: 100%; height: auto; }
.site-nav { flex-shrink: 0; }
.site-nav a { white-space: nowrap; }
.menu-toggle { flex: 0 0 auto; white-space: nowrap; }
.site-nav ul { gap: 19px; }
.site-nav .button { background: var(--action-green); color: white; }
.site-nav .button:hover { background: var(--action-green-hover); }
h1 { font-size: clamp(2.6rem, 4.2vw, 4.1rem); max-width: 8em; line-height: 1.2; }
h2 { font-size: clamp(1.85rem, 2.8vw, 2.75rem); line-height: 1.35; }
.hero { position: relative; padding: 0; background: #0d7148; color: white; overflow: hidden; }
.hero-grid { width: 100%; max-width: 1600px; margin: auto; min-height: 530px; grid-template-columns: 46% 54%; gap: 0; }
.hero-copy { padding: 64px 48px 68px max(32px, calc((100vw - 1500px) / 2)); }
.hero h1 { color: white; }
.hero-kicker { color: #d8efb9; font-size: 1rem; margin-bottom: 20px; }
.hero-lead { color: #edf6ef; font-size: 1.08rem; margin: 24px 0 28px; }
.hero .button { color: #165636; background: #d5eaa7; }
.hero .button:hover { background: #e5f2c6; }
.hero .text-link { color: white; }
.hero-media { height: 100%; min-height: 530px; }
.hero-media::before { display: none; }
.hero-media img { height: 100%; min-height: 530px; max-height: none; border-radius: 0; object-fit: cover; object-position: 55% center; }
.hero-media .media-note { position: absolute; bottom: 10px; right: 16px; left: 20px; width: auto; max-width: none; text-align: right; font-size: .72rem; color: white; text-shadow: 0 1px 3px #000; }
.needs { background: #eaf3df; padding: 36px 0; }
.needs .section-heading { display: flex; align-items: center; gap: 26px; max-width: none; margin-bottom: 24px; }
.needs .section-heading > p { margin: 0; font-size: .88rem; }
.needs h2 { font-size: 1.5rem; }
.needs ul { border: 0; gap: 10px; }
.needs li + li { border: 0; }
.needs a { min-height: 92px; padding: 18px; background: white; border-radius: 8px; position: relative; justify-content: center; }
.needs strong { margin: 0; font-size: 1rem; padding-right: 15px; }
.need-index, .needs small { display: none; }
.need-arrow { position: absolute; right: 14px; bottom: 15px; margin: 0; }
.services { padding: 64px 0 72px; }
.services .section-heading { text-align: center; margin: 0 auto 32px; }
.section-heading > p { margin-bottom: 10px; }
.service-rows { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; border: 0; }
.service-row { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 0; border: 1px solid #d9e6db; border-radius: 12px; overflow: hidden; background: white; }
.service-row:nth-child(even) > :first-child { order: initial; }
.service-row__visual { min-height: 0; height: 225px; }
.service-row__visual img { height: 225px; min-height: 0; width: 100%; border-radius: 0; object-fit: cover; }
.service-row__copy { padding: 26px; display: flex; flex-direction: column; flex: 1; border-top: 5px solid var(--brand-green); }
.service-row:nth-child(2) .service-row__copy { border-top-color: var(--care-lime); }
.service-row:nth-child(3) .service-row__copy { border-top-color: var(--trust-ink); }
.service-count { display: none; }
.service-row__copy h3 { margin: 0; font-size: 1.5rem; }
.service-row__copy p { font-size: 1rem; margin: 14px 0 22px; }
.service-row__copy .text-link { margin-top: auto; color: #0b7042; font-size: .95rem; }
.process { background: #eff6ed; color: var(--body-ink); padding: 62px 0; }
.process-grid { display: block; }
.process .section-heading { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.process .section-heading > p { color: var(--brand-green-deep); }
.process h2, .process h3 { color: var(--trust-ink); }
.process .section-lead { color: var(--muted-ink); font-weight: 400; margin-top: 14px; }
.process ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; border: 0; }
.process li { display: block; padding: 0; border: 0; }
.process-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-green-deep); color: white; margin-bottom: 18px; }
.process li h3 { font-size: 1.18rem; }
.process li p { color: var(--muted-ink); font-size: 1rem; }
.trust { background: var(--brand-green-deep); color: white; padding: 64px 0; }
.trust h2, .trust h3 { color: white; }
.trust .section-heading > p { color: #d2e7a7; }
.trust li p { color: #e1f0e7; }
.trust li, .trust ul { border-color: #559979; }
.trust-grid { gap: 60px; }
.trust li { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
.trust li h3 { font-size: 1.2rem; }
.escort { padding: 68px 0; }
.escort-feature { grid-template-columns: 1fr 1fr; gap: 54px; }
.escort-feature__media img { min-height: 340px; height: 340px; object-position: center 30%; border-radius: 12px; }
.escort .hero-kicker { color: var(--brand-green-deep); }
.contact-band { background: #eaf3df; color: var(--body-ink); padding: 46px 0; border-top: 1px solid #cedfc7; }
.contact-band h2 { color: var(--trust-ink); font-size: 2rem; }
.contact-band p { color: var(--brand-green-deep); }
.contact-band small { color: #49656d; }
.contact-band .button { background: var(--action-green); color: white; }
.contact-band .text-link { color: var(--trust-ink); }
.site-footer { background: white; padding-top: 40px; }
.footer-grid { gap: 36px; }
.footer-legal { margin-top: 28px; }
.page-hero { background: #0d7148; padding: 58px 0; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero .text-link { color: white; }
.page-hero .button { background: #d5eaa7; color: #165636; }
.content-section { padding: 54px 0; }
@media (max-width: 1080px) {
  .brand img { width: 240px; }
  .site-nav ul { gap: 10px; }
  .hero-copy { padding: 42px 30px; }
  .needs ul { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .needs li:nth-child(n) { border: 0; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 42px 32px; }
  .hero h1 { max-width: 12em; }
  .hero-media { width: 100%; min-height: 330px; height: 330px; }
  .hero-media img { min-height: 330px; height: 330px; }
  .service-rows { gap: 14px; }
  .service-row__copy { padding: 18px; }
  .service-row__visual, .service-row__visual img { height: 185px; }
  .trust-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .header-inner { min-height: 70px; }
  .header-inner { gap: 12px; }
  :root { --shell: min(100% - 36px, 680px); }
  .brand { flex-basis: 180px; }
  .brand img { width: 180px; }
  .hero-copy { padding: 34px 22px 38px; }
  .hero h1 { font-size: 2.6rem; max-width: 8em; }
  .hero-actions { flex-direction: row; align-items: center; gap: 18px; }
  .hero .button { width: auto; }
  .hero-media, .hero-media img { height: 280px; min-height: 280px; }
  .hero-media img { border-radius: 0; }
  .needs { padding: 28px 0; }
  .needs .section-heading { display: block; margin-bottom: 18px; }
  .needs .section-heading > p { margin-bottom: 6px; }
  .needs ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .needs a { display: flex; min-height: 72px; padding: 16px; }
  .needs li:last-child { grid-column: 1 / -1; }
  .need-arrow { top: auto; bottom: 12px; right: 12px; }
  .service-rows, .process ol, .escort-feature { grid-template-columns: 1fr; }
  .service-rows { gap: 24px; }
  .service-row__visual, .service-row__visual img { height: 230px; min-height: 0; }
  .service-row__copy { padding: 24px; }
  .services, .process, .trust, .escort { padding: 46px 0; }
  .process li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; }
  .process ol { gap: 26px; }
  .process-number { margin: 0; }
  .escort-feature { gap: 28px; }
  .escort-feature__media img { min-height: 280px; height: 280px; }
  .contact-band h2 { font-size: 1.75rem; }
  .contact-band__inner { gap: 26px; }
  .page-hero { padding: 38px 0; }
  .page-hero__grid { gap: 24px; }
}
@media (max-width: 420px) { .brand { flex-basis: 170px; } .brand img { width: 170px; } .hero h1 { font-size: 2.35rem; } }
