:root {
  --ink: #081f4f;
  --navy: #081f4f;
  --navy-700: var(--navy);
  --navy-600: var(--navy);
  --navy-300: var(--navy);
  --navy-200: var(--white);
  --navy-100: var(--white);
  --navy-050: var(--white);
  --orange: var(--navy);
  --paper: var(--white);
  --white: #ffffff;
  --muted: rgba(8,31,79,.74);
  --line: rgba(8,31,79,.15);
  --shadow: 0 24px 70px rgba(8,31,79,.14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], article[id], .gate-success { scroll-margin-top: 106px; }
:focus-visible { outline: 3px solid currentColor; outline-offset: 5px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.section { padding: 72px 0; }
.section:not(.network-section):not(.toolkit-section) + .section:not(.network-section):not(.toolkit-section) { padding-top: 24px; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .page-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.section-heading p, .page-hero p { margin: 0; color: var(--muted); font-size: 1.08rem; max-width: 650px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(8,31,79,.14);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 202px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; color: var(--navy); }
.nav a { font-size: .88rem; font-weight: 750; letter-spacing: .02em; transition: color .2s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); }
.nav .nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--navy); color: #fff; }
.nav .nav-cta[aria-current="page"] { color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; place-items: center; color: var(--navy); background: transparent; border: 1px solid rgba(8,31,79,.25); border-radius: 50%; }
.menu-toggle svg { width: 21px; }

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, black, transparent 90%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -190px;
  bottom: -260px;
  border-radius: 50%;
  background: rgba(8,31,79,.14);
}
.hero-inner { position: relative; z-index: 1; min-height: calc(100svh - 82px); display: flex; align-items: center; padding: 112px 0 88px; }
.hero-layout { display: flex; align-items: center; }
.hero-copy { position: relative; z-index: 2; max-width: 750px; }
.hero .eyebrow { color: var(--navy-200); }
.hero h1 { margin: 22px 0 24px; font-size: clamp(3.6rem, 7.2vw, 6.8rem); line-height: .88; letter-spacing: -.075em; max-width: 900px; }
.hero h1 span { color: #fff; -webkit-text-stroke: 0; }
.hero-copy > p { max-width: 610px; color: rgba(255,255,255,.8); font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: #fff; box-shadow: none; }
.hero .button-primary { background: #fff; color: var(--navy); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.button-light { background: #fff; color: var(--navy); }
.button-dark { color: #fff; background: var(--ink); }
.arrow { font-size: 1.2em; line-height: 1; }
.hero-visual { position: absolute; z-index: 0; top: 0; bottom: 0; left: 50%; width: 100vw; margin: 0; overflow: hidden; transform: translateX(-50%); background: var(--navy); }
.hero-visual::before { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(8,31,79,.68); }
.hero-visual img, .hero-visual video { width: 100%; height: 100%; object-fit: cover; }
.hero-visual video { position: absolute; inset: 0; }
.hero-video-toggle { position: absolute; z-index: 3; top: 20px; right: 20px; min-width: 44px; min-height: 44px; display: grid; place-items: center; padding: 0 14px; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(8,31,79,.72); backdrop-filter: blur(10px); font: inherit; font-size: .78rem; font-weight: 800; cursor: pointer; }
.hero-visual figcaption { position: absolute; z-index: 2; right: max(30px, calc((100vw - 1180px) / 2)); bottom: 28px; display: flex; gap: 22px; align-items: flex-end; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.28); }
.hero-visual figcaption strong { font-size: 1.35rem; }
.hero-visual figcaption span { color: rgba(255,255,255,.65); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-metrics { display: flex; gap: 48px; margin-top: 64px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.15); max-width: 780px; }
.metric strong { display: block; font-size: 1.8rem; letter-spacing: -.04em; }
.metric span { color: rgba(255,255,255,.58); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }

.proof-section { padding: 0 0 96px; background: var(--navy-100); }
.proof-banner { width: min(780px, 92%); margin: 0 auto 54px; transform: translateY(-35px); padding: 26px 34px; text-align: center; color: var(--ink); background: #fff; box-shadow: var(--shadow); font-size: clamp(1.25rem, 2.6vw, 2rem); font-weight: 850; letter-spacing: -.035em; }
.proof-banner.visible { transform: translateY(-35px); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.proof-card { min-height: 250px; padding: 30px; background: #fff; box-shadow: 0 18px 50px rgba(8,31,79,.08); }
.proof-card .proof-glyph { display: block; width: 42px; height: 42px; margin-bottom: 34px; color: var(--navy-300); font-size: 2.5rem; line-height: 1; font-weight: 900; }
.proof-card strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.06em; }
.proof-card p { margin: 0; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card { min-height: 300px; position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.service-card:nth-child(1), .service-card:nth-child(2) { grid-column: span 6; min-height: 430px; color: #fff; }
.service-card:nth-child(n+3) { grid-column: span 4; }
.service-card.with-image { color: #fff; }
.service-card.with-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,31,79,.05), rgba(8,31,79,.94)); }
.service-card.sea { background: url("assets/hero.jpg") center/cover; }
.service-card.air { background: url("assets/air.jpg") center/cover; }
.service-card.land { background: url("assets/truck.jpg") center/cover; }
.service-card.customs { background: url("assets/customs-detail.jpg") center/cover; }
.service-card.warehouse { background: url("assets/warehouse-detail.jpg") center/cover; }
.service-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: auto; border-radius: 14px; background: var(--white); color: var(--navy); box-shadow: 0 8px 30px rgba(8,31,79,.08); }
.with-image .service-icon { background: rgba(255,255,255,.14); color: #fff; backdrop-filter: blur(8px); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin: 22px 0 8px; font-size: 1.55rem; letter-spacing: -.03em; }
.service-card p { margin: 0; color: var(--muted); }
.with-image p { color: rgba(255,255,255,.68); max-width: 460px; }

.control-section { background: var(--navy-100); }
.control-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 58px; align-items: start; }
.control-copy h2 { margin: 0; font-size: clamp(2.8rem, 5.4vw, 5.6rem); line-height: .95; letter-spacing: -.065em; }
.control-copy h2 span { background: linear-gradient(transparent 69%, rgba(8,31,79,.14) 0); }
.control-copy p { margin: 0 0 18px; color: var(--muted); font-size: 1.08rem; }
.control-copy .button { margin-top: 15px; }
.control-gallery { position: relative; height: 510px; overflow: hidden; background: var(--ink); }
.control-gallery img { position: absolute; width: 64%; height: 100%; object-fit: cover; }
.control-gallery img:first-child { inset: 0 auto 0 0; clip-path: polygon(0 0, 100% 0, 76% 100%, 0 100%); }
.control-gallery img:last-child { inset: 0 0 0 auto; clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%); }
.control-gallery::after { content: "Vietnam operations"; position: absolute; z-index: 2; right: 28px; bottom: 24px; padding: 9px 14px; color: #fff; background: rgba(8,31,79,.82); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.expert-section { padding-top: 96px; }
.expert-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; overflow: hidden; border-radius: 8px 8px 80px 8px; background: var(--navy-200); }
.expert-copy { padding: 68px 62px; align-self: center; }
.expert-copy .eyebrow { color: var(--navy); }
.expert-copy h2 { margin: 18px 0 22px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .94; letter-spacing: -.06em; }
.expert-copy p { margin-bottom: 30px; color: var(--muted); font-size: 1.08rem; }
.expert-photo { overflow: hidden; align-self: stretch; }
.expert-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.network-section { overflow: hidden; background: var(--navy); color: #fff; }
.network-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.network-section .eyebrow { color: var(--navy-200); }
.network-section h2 { margin: 16px 0 22px; font-size: clamp(2.6rem, 5vw, 5.5rem); line-height: .94; letter-spacing: -.065em; }
.network-section p { color: rgba(255,255,255,.65); }
.network-orbit { position: relative; min-height: 520px; display: grid; place-items: center; }
.network-orbit::before, .network-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.network-orbit::before { width: 460px; height: 460px; }
.network-orbit::after { width: 310px; height: 310px; }
.orbit-core { width: 150px; height: 150px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); box-shadow: 0 0 80px rgba(255,255,255,.14); font-size: 2rem; font-weight: 900; letter-spacing: -.06em; }
.network-badge { position: absolute; min-width: 112px; padding: 13px 16px; text-align: center; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); font-size: .82rem; font-weight: 800; }
.network-badge:nth-of-type(1) { top: 15px; left: 42%; }
.network-badge:nth-of-type(2) { top: 25%; right: 0; }
.network-badge:nth-of-type(3) { right: 4%; bottom: 19%; }
.network-badge:nth-of-type(4) { bottom: 8px; left: 39%; }
.network-badge:nth-of-type(5) { left: 0; bottom: 22%; }
.network-badge:nth-of-type(6) { left: 2%; top: 23%; }
.network-logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.network-logo { min-height: 150px; display: grid; place-items: center; padding: 22px; border: 1px solid rgba(255,255,255,.12); background: #fff; }
.network-logo:last-child { grid-column: span 2; }
.network-logo img { max-width: 210px; max-height: 96px; object-fit: contain; }

.about-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: start; }
.about-copy h2 { margin: 14px 0 24px; font-size: clamp(2.5rem, 5vw, 5rem); line-height: .95; letter-spacing: -.06em; }
.about-copy p { color: var(--muted); }
.statement { padding-left: 26px; border-left: 3px solid var(--orange); color: var(--ink) !important; font-size: 1.2rem; font-weight: 650; }
.fact-panel { position: sticky; top: 110px; padding: 34px; border-radius: var(--radius); background: var(--paper); }
.about-side { display: grid; gap: 18px; }
.about-photo { width: 100%; height: 330px; object-fit: cover; border-radius: 8px 8px 60px 8px; }
.about-side .fact-panel { position: static; }
.fact { display: grid; grid-template-columns: 84px 1fr; gap: 22px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.fact:last-child { border-bottom: 0; }
.fact strong { color: var(--navy-600); font-size: 2rem; letter-spacing: -.05em; }
.fact span { color: var(--muted); }

.cta-strip { padding: 44px 0; background: var(--navy-700); color: #fff; }
.cta-inner { display: flex; justify-content: space-between; gap: 50px; align-items: center; }
.cta-inner h2 { margin: 0; max-width: 700px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.05em; }

.page-hero { padding: 96px 0 78px; color: #fff; background: var(--navy); }
.page-hero .eyebrow { color: var(--navy-200); }
.page-hero p { color: rgba(255,255,255,.65); }
.page-hero.compact { padding-bottom: 72px; }
.breadcrumbs { margin-bottom: 25px; color: rgba(255,255,255,.48); font-size: .82rem; }
.breadcrumbs a { color: rgba(255,255,255,.72); }

.service-detail { display: grid; grid-template-columns: 110px .85fr 1.15fr .9fr; gap: 34px; padding: 56px 0; border-bottom: 1px solid var(--line); align-items: start; }
.service-number { color: var(--navy-600); font-size: 4.4rem; line-height: 1; font-weight: 900; letter-spacing: -.07em; }
.service-detail h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.05em; }
.service-detail p { margin-top: 0; color: var(--muted); }
.service-detail-photo { height: 230px; margin: 0; overflow: hidden; border-radius: 6px 6px 36px 6px; background: var(--paper); }
.service-detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.tag { padding: 7px 12px; border-radius: 999px; color: var(--navy); background: var(--paper); font-size: .78rem; font-weight: 750; }
.service-detail-link { display: inline-flex; margin-top: 22px; color: var(--navy-600); font-weight: 800; }

.detail-hero { padding: 72px 0 0; color: #fff; background: var(--navy); }
.detail-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.detail-hero-copy { padding: 30px 0 90px; }
.detail-hero .eyebrow { color: var(--navy-200); }
.detail-hero h1 { margin: 18px 0 24px; font-size: clamp(3.2rem, 6.7vw, 6.7rem); line-height: .9; letter-spacing: -.07em; }
.detail-hero p { max-width: 610px; color: rgba(255,255,255,.68); font-size: 1.1rem; }
.detail-hero-media { height: 540px; overflow: hidden; border-radius: 8px 8px 70px 8px; }
.detail-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.image-hero { position: relative; min-height: 650px; display: flex; overflow: hidden; padding: 0; isolation: isolate; color: #fff; background: var(--navy); }
.page-hero.image-hero, .page-hero.image-hero.compact { padding: 0; }
.image-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(8,31,79,.64); }
.image-hero.detail-hero .detail-hero-grid { position: static; display: block; min-height: 650px; }
.image-hero .detail-hero-copy { position: relative; z-index: 2; max-width: 690px; padding: 176px 0 92px; }
.image-hero .detail-hero-copy p, .image-hero.page-hero p { color: rgba(255,255,255,.82); }
.image-hero.page-hero > .shell { position: relative; z-index: 2; min-height: 570px; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 150px; padding-bottom: 82px; }
.image-hero .hero-background-media { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; margin: 0; border-radius: 0; background: var(--navy); }
.image-hero .hero-background-media img { width: 100%; height: 100%; object-fit: cover; }
.image-hero--about .hero-background-media img { object-position: 50% 68%; }
.image-hero--people .hero-background-media img { object-position: 50% 52%; }
.image-hero--mission .hero-background-media img, .image-hero--associations .hero-background-media img { object-position: 50% 74%; }
.image-hero--careers .hero-background-media img { object-position: 50% 76%; }
.image-hero--why .hero-background-media img { object-position: 50% 50%; }
.image-hero--air .hero-background-media img, .image-hero--ocean .hero-background-media img, .image-hero--trade-lanes .hero-background-media img { object-position: 50% 48%; }
.image-hero--land .hero-background-media img, .image-hero--customs .hero-background-media img, .image-hero--warehousing .hero-background-media img, .image-hero--amazon .hero-background-media img, .image-hero--industries .hero-background-media img { object-position: 50% 54%; }
.subnav { border-bottom: 1px solid var(--line); background: #fff; }
.subnav-inner { display: flex; gap: 30px; overflow-x: auto; padding: 18px 0; scrollbar-width: none; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a { flex: 0 0 auto; color: var(--muted); font-size: .85rem; font-weight: 760; }
.subnav a[aria-current="page"], .subnav a:hover { color: var(--navy-600); }
.content-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.content-split h2, .content-heading h2 { margin: 14px 0 22px; font-size: clamp(2.4rem, 4.8vw, 4.8rem); line-height: .96; letter-spacing: -.06em; }
.content-split p, .content-heading p { color: var(--muted); }
.content-split h2 { margin-bottom: 0; }
.content-split p:first-child { margin-top: 0; }
.content-split p:last-child { margin-bottom: 0; }
.content-heading { max-width: 760px; margin-bottom: 32px; }
.content-media { min-height: 460px; overflow: hidden; border-radius: 8px 8px 60px 8px; }
.content-media img { width: 100%; height: 100%; object-fit: cover; }
.content-media.company-content-media { min-height: 0; aspect-ratio: 16 / 10; background: var(--paper); }
.content-media.company-content-media img { object-fit: contain; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card { min-height: 250px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.capability-card .card-number { display: block; margin-bottom: 42px; color: var(--navy-300); font-size: 2rem; font-weight: 900; }
.capability-card h3 { margin: 0 0 10px; font-size: 1.3rem; }
.capability-card p { margin: 0; color: var(--muted); }
.capability-card strong { margin-top: auto; padding-top: 24px; color: var(--navy-600); }
.process-section { background: var(--paper); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { position: relative; padding: 38px 28px 10px 0; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; padding-right: 0; padding-left: 28px; }
.process-step:not(:first-child) { padding-left: 28px; }
.process-step span { display: block; margin-bottom: 28px; color: var(--navy-600); font-weight: 900; }
.process-step h3 { margin: 0 0 10px; font-size: 1.18rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .94rem; }
.lane-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lane-card { min-height: 300px; padding: 34px; border: 1px solid var(--line); background: #fff; }
.lane-card.primary { color: #fff; background: var(--navy); }
.lane-card .lane-code { display: block; margin-bottom: 58px; color: inherit; font-size: .78rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.lane-card h3 { margin: 0 0 12px; font-size: 1.8rem; letter-spacing: -.04em; }
.lane-card p { margin: 0; color: var(--muted); }
.lane-card.primary p { color: rgba(255,255,255,.68); }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 140px 1fr; gap: 50px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.timeline-item time { color: var(--navy-600); font-size: 2rem; font-weight: 900; letter-spacing: -.04em; }
.timeline-item h3 { margin: 0 0 7px; font-size: 1.35rem; }
.timeline-item p { margin: 0; color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-card { padding: 34px; border: 1px solid var(--line); background: #fff; }
.value-card h3 { margin: 0 0 12px; font-size: 1.5rem; }
.value-card p { margin: 0; color: var(--muted); }
.quote-panel { padding: 64px; color: #fff; background: var(--navy); border-radius: 8px 8px 70px 8px; }
.quote-panel blockquote { margin: 0; max-width: 900px; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 800; }
.quote-panel p { margin: 24px 0 0; color: rgba(255,255,255,.62); }
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.role-card { padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.role-card h3 { margin: 0 0 10px; }
.role-card p { margin: 0; color: var(--muted); }
.incoterm-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.incoterm-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.incoterm-table th, .incoterm-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.incoterm-table th { color: #fff; background: var(--navy); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.incoterm-table td:first-child { color: var(--navy-600); font-weight: 900; }
.incoterm-table tr:last-child td { border-bottom: 0; }

.association-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 65px; }
.association-intro h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: .95; letter-spacing: -.055em; }
.association-intro p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.association-list { border-top: 1px solid var(--line); }
.association-item { display: grid; grid-template-columns: minmax(250px, 320px) .75fr 1.25fr; gap: 38px; padding: 46px 0; border-bottom: 1px solid var(--line); align-items: start; }
.association-mark { width: 116px; height: 70px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: var(--navy); font-weight: 900; letter-spacing: -.04em; }
.association-item:nth-child(even) .association-mark { color: var(--navy); background: var(--paper); border: 1px solid var(--line); }
.association-visual { width: 100%; height: auto; display: block; margin: 0; padding: 12px; overflow: visible; border: 1px solid var(--line); background: #fff; box-shadow: 0 12px 34px rgba(8,31,79,.08); }
.association-visual.wide { height: auto; }
.association-visual img { width: 100%; height: auto; object-fit: contain; object-position: center; }
.association-item h3 { margin: 0; font-size: 1.35rem; line-height: 1.25; }
.association-item p { margin: 0; color: var(--muted); }
.association-item p + p { margin-top: 12px; }

.contact-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.contact-lead h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: .95; letter-spacing: -.06em; }
.contact-lead p { margin-top: 0; color: var(--muted); }
.enquiry-section { background: var(--paper); }
.enquiry-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 74px; align-items: start; }
.enquiry-intro h2 { margin: 14px 0 24px; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: .95; letter-spacing: -.06em; }
.enquiry-intro > p { max-width: 520px; color: var(--muted); }
.unlock-list { display: grid; gap: 0; margin-top: 38px; border-top: 1px solid var(--line); }
.unlock-list div { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); align-items: center; }
.unlock-list strong { color: var(--navy-600); font-size: .8rem; letter-spacing: .08em; }
.unlock-list span { font-weight: 780; }
.gate-panel { padding: 38px; background: #fff; box-shadow: var(--shadow); border-radius: 8px 8px 55px 8px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { color: var(--navy); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-width: 0; min-height: 52px; padding: 12px 14px; color: var(--ink); background: #fff; border: 1px solid rgba(8,31,79,.24); border-radius: 6px; font: inherit; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: 3px solid rgba(8,31,79,.18); border-color: var(--navy); }
.form-instructions { margin: 0 0 22px; }
.contact-direct { display: block; margin-top: 18px; color: var(--navy); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.gate-actions { display: grid; justify-items: center; gap: 18px; margin: 24px 0; }
.gate-actions .service-detail-link { margin: 0; }
.form-submit { width: 100%; margin-top: 24px; cursor: pointer; font: inherit; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.form-error { margin: 12px 0 0; color: var(--navy); font-size: .88rem; font-weight: 700; }
.gate-success { min-height: 380px; padding: 24px 10px; align-content: center; text-align: center; }
.success-mark { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 22px; color: #fff; background: var(--navy-600); border-radius: 50%; font-size: 1.8rem; font-weight: 900; }
.gate-success h3 { margin: 16px 0 10px; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.05; letter-spacing: -.045em; }
.gate-success p { color: var(--muted); }
.text-button { padding: 0; color: var(--navy-600); background: none; border: 0; font: inherit; font-weight: 800; text-decoration: underline; cursor: pointer; }
.toolkit-section { color: #fff; background: var(--navy); }
.toolkit-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; margin-bottom: 52px; align-items: end; }
.toolkit-heading .eyebrow, .toolkit-action .eyebrow { color: var(--navy-200); }
.toolkit-heading h2 { margin: 14px 0 0; font-size: clamp(2.7rem, 5vw, 5rem); line-height: .94; letter-spacing: -.06em; }
.toolkit-heading > p { margin: 0; color: rgba(255,255,255,.64); }
.toolkit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.toolkit-card { padding: 32px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.045); }
.toolkit-card > span { display: block; margin-bottom: 32px; color: var(--navy-200); font-weight: 900; }
.toolkit-card h3 { margin: 0 0 16px; font-size: 1.35rem; }
.toolkit-card ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,.68); }
.toolkit-card li + li { margin-top: 7px; }
.toolkit-action { display: flex; justify-content: space-between; gap: 44px; align-items: center; margin-top: 42px; padding: 34px; color: var(--ink); background: var(--navy-200); border-radius: 8px 8px 45px 8px; }
.toolkit-action h3 { margin: 10px 0 4px; font-size: 1.6rem; }
.toolkit-action p { margin: 0; max-width: 650px; }
.toolkit-action .eyebrow { color: var(--navy); }
.toolkit-action .button { flex: 0 0 auto; }
.office-section { background: #fff; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-card { min-height: 310px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.industry-card.featured { color: #fff; background: var(--navy); }
.industry-card > span { margin-bottom: 48px; color: var(--navy); font-weight: 900; }
.industry-card.featured > span { color: var(--white); }
.industry-card h3 { margin: 0 0 12px; font-size: 1.45rem; letter-spacing: -.035em; }
.industry-card p { margin: 0 0 28px; color: var(--muted); }
.industry-card.featured p { color: rgba(255,255,255,.68); }
.industry-card a { margin-top: auto; color: var(--navy-600); font-weight: 850; }
.industry-card.featured a { color: var(--navy-200); }
.inline-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button-outline { color: var(--navy); border-color: var(--line); background: #fff; }
.cta-kicker { display: block; margin-bottom: 10px; color: rgba(255,255,255,.65); font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.resource-card { min-height: 350px; display: flex; flex-direction: column; padding: 36px; border: 1px solid var(--line); background: var(--paper); }
.resource-card.primary { color: #fff; background: var(--navy); }
.resource-type { margin-bottom: 58px; color: var(--navy-600); font-size: .75rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.resource-card.primary .resource-type { color: var(--navy-200); }
.resource-card h2 { margin: 0 0 14px; font-size: 2rem; line-height: 1.05; letter-spacing: -.045em; }
.resource-card p { margin: 0 0 28px; color: var(--muted); }
.resource-card.primary p { color: rgba(255,255,255,.68); }
.resource-card strong { margin-top: auto; color: var(--navy-600); }
.resource-card.primary strong { color: var(--navy-200); }
.checkline-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.checkline-grid div { min-height: 170px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.checkline-grid span { color: var(--navy-600); font-weight: 900; }
.checkline-grid p { margin: 32px 0 0; font-weight: 780; }
.contact-direct { display: grid; gap: 10px; }
.contact-direct a { display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 800; }
.contact-photo-band { position: relative; height: 460px; margin: 70px 0 0; overflow: hidden; border-radius: 8px 8px 70px 8px; }
.contact-photo-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,31,79,.82)); }
.contact-photo-band img { width: 100%; height: 100%; object-fit: cover; }
.contact-photo-band figcaption { position: absolute; z-index: 1; right: 30px; bottom: 24px; color: #fff; font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-photo-band.contact-team-photo { height: auto; border-radius: 6px; border: 1px solid var(--line); }
.contact-team-photo::after { display: none; }
.contact-team-photo img { height: auto; }
.contact-team-photo figcaption { position: static; padding: 18px 24px; color: var(--navy); background: var(--white); }
.service-selector .subnav-inner { flex-wrap: wrap; gap: 12px 28px; overflow: visible; }
.service-selector a { padding: 8px 0; }
.nav a[aria-current="page"]:not(.nav-cta) { text-decoration: underline; text-underline-offset: 7px; }
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 66px; }
.office-card { display: flex; flex-direction: column; min-height: 390px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.office-card .city { color: var(--navy-600); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.office-card h3 { margin: 10px 0 18px; font-size: 1.8rem; }
.office-card address { color: var(--muted); font-style: normal; }
.office-links { display: grid; gap: 8px; margin-top: auto; padding-top: 28px; }
.office-links a { font-weight: 760; }
.map-link { margin-top: 16px; color: var(--navy-600); }

.footer { padding: 36px 0 24px; color: rgba(255,255,255,.72); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; padding-bottom: 28px; }
.footer-top > div { min-width: 0; }
.footer-links a { overflow-wrap: anywhere; }
.footer h3 { margin: 0 0 16px; color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
  .section { padding: 56px 0; }
  .menu-toggle { display: grid; }
  .nav { position: fixed; inset: 82px 0 auto; display: none; align-items: stretch; padding: 22px 20px 28px; background: #fff; border-top: 1px solid rgba(8,31,79,.15); }
  .nav.open { display: grid; gap: 0; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid rgba(8,31,79,.12); }
  .nav .nav-cta { margin-top: 14px; padding: 12px 18px; text-align: center; border: 0; }
  .service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(n+3) { grid-column: span 6; }
  .service-card:nth-child(n+3) { min-height: 300px; }
  .service-card:nth-child(5) { grid-column: span 12; min-height: 320px; }
  .hero-layout, .network-layout, .about-layout, .contact-lead, .association-intro, .control-copy, .expert-panel, .enquiry-layout, .toolkit-heading { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; }
  .hero-inner { min-height: 690px; }
  .hero-visual { min-height: 0; }
  .hero-visual::before { background: rgba(8,31,79,.68); }
  .proof-grid { gap: 14px; }
  .control-gallery { height: 420px; }
  .expert-photo { min-height: 420px; }
  .network-orbit { min-height: 450px; }
  .fact-panel { position: static; }
  .service-detail { grid-template-columns: 100px 1fr; }
  .service-copy, .service-detail-photo { grid-column: 2; }
  .association-item { grid-template-columns: minmax(250px, 320px) 1fr; }
  .association-item > div:last-child { grid-column: 2; }
  .office-grid { grid-template-columns: 1fr; }
  .office-card { min-height: 320px; }
  .toolkit-action { align-items: flex-start; flex-direction: column; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-hero-grid, .content-split { grid-template-columns: 1fr; gap: 42px; }
  .content-split { gap: 24px; }
  .detail-hero-copy { padding: 24px 0 0; }
  .detail-hero-media { height: 440px; }
  .image-hero, .image-hero.detail-hero .detail-hero-grid { min-height: 610px; }
  .image-hero .detail-hero-copy { max-width: 610px; padding: 250px 0 70px; }
  .image-hero.page-hero > .shell { min-height: 610px; padding-top: 220px; padding-bottom: 70px; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(3) { padding-left: 0; }
  .footer-top { gap: 28px; }
}

@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .section:not(.network-section):not(.toolkit-section) + .section:not(.network-section):not(.toolkit-section) { padding-top: 20px; }
  .content-split { gap: 20px; }
  .content-heading, .section-heading { margin-bottom: 28px; }
  .enquiry-layout, .contact-lead, .association-intro, .about-layout { gap: 28px; }
  .cta-strip { padding: 32px 0; }
  .footer { padding-top: 24px; }
  .shell { width: min(100% - 28px, 1180px); }
  .nav-wrap { height: 74px; }
  .brand img { width: 172px; }
  .nav { inset-block-start: 74px; }
  .hero { min-height: calc(100svh - 74px); }
  .hero-inner { min-height: calc(100svh - 74px); padding: 76px 0 104px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.2rem); line-height: .93; letter-spacing: -.06em; }
  .hero-layout { gap: 0; }
  .hero-visual { min-height: 0; border-radius: 0; }
  .hero-visual::before { background: rgba(8,31,79,.68); }
  .hero-visual figcaption { right: 18px; bottom: 18px; flex-direction: column; align-items: flex-end; gap: 2px; }
  .proof-section { padding-bottom: 68px; }
  .proof-banner { margin-bottom: 20px; padding: 20px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 215px; }
  .hero-metrics { gap: 22px; justify-content: space-between; }
  .metric strong { font-size: 1.4rem; }
  .metric span { font-size: .68rem; }
  .service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(n+3) { grid-column: span 12; }
  .service-card:nth-child(1), .service-card:nth-child(2) { min-height: 360px; }
  .network-layout { gap: 24px; }
  .network-logos { grid-template-columns: 1fr; }
  .network-logo:last-child { grid-column: auto; }
  .control-copy { gap: 30px; }
  .control-gallery { height: 500px; }
  .control-gallery img { width: 100%; height: 58%; }
  .control-gallery img:first-child { inset: 0 0 auto; clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%); }
  .control-gallery img:last-child { inset: auto 0 0; clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%); }
  .expert-copy { padding: 46px 28px; }
  .expert-photo { min-height: 350px; }
  .network-orbit { min-height: 380px; transform: scale(.84); margin: -25px; }
  .network-orbit::before { width: 390px; height: 390px; }
  .network-orbit::after { width: 260px; height: 260px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .service-detail { grid-template-columns: 1fr; gap: 18px; }
  .service-copy, .service-detail-photo { grid-column: 1; }
  .service-number { font-size: 2rem; }
  .association-item { grid-template-columns: 1fr; gap: 18px; }
  .association-item > div:last-child { grid-column: 1; }
  .association-mark { width: 100px; height: 58px; }
  .association-visual, .association-visual.wide { width: min(100%, 360px); height: auto; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .contact-photo-band { height: 330px; margin-top: 48px; }
  .gate-panel { padding: 28px 20px; border-radius: 6px 6px 42px 6px; }
  .form-grid, .toolkit-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .toolkit-action { padding: 28px 22px; }
  .industry-grid, .resource-grid, .checkline-grid { grid-template-columns: 1fr; }
  .detail-hero { padding-top: 74px; }
  .detail-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .detail-hero-media { height: 340px; border-radius: 6px 6px 50px 6px; }
  .image-hero { min-height: 560px; padding: 0; }
  .image-hero::before { background: rgba(8,31,79,.68); }
  .image-hero.detail-hero .detail-hero-grid { min-height: 560px; }
  .image-hero .detail-hero-copy { max-width: none; padding: 230px 0 52px; }
  .image-hero.page-hero > .shell { min-height: 560px; padding-top: 210px; padding-bottom: 52px; }
  .image-hero .hero-background-media { height: 100%; border-radius: 0; }
  .capability-grid, .role-grid, .lane-grid, .value-grid, .process-steps { grid-template-columns: 1fr; }
  .process-step, .process-step:not(:first-child), .process-step:last-child { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .quote-panel { padding: 40px 26px; border-radius: 6px 6px 50px 6px; }
  .button { width: 100%; max-width: 100%; }
  .hero-actions .button { width: 100%; flex: 1 1 100%; }
  .hero-video-toggle { width: auto; min-width: 44px; }
}

/* Completion pass: preserve the established RING navy, type and imagery. */
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 200; padding: 12px 20px; color: var(--navy); background: white; border: 2px solid var(--navy); transform: translateY(-180%); }
.skip-link:focus { transform: none; }
.reveal { opacity: 1; transform: none; }
.animate-reveal:not(.visible) { opacity: 0; transform: translateY(18px); }
.enquiry-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; margin-bottom: 48px; background: #f1f3f7; border: 1px solid var(--line); border-radius: 18px; }
.enquiry-switch button { padding: 18px 22px; color: var(--navy); background: transparent; border: 1px solid transparent; border-radius: 12px; text-align: left; font: inherit; font-weight: 800; cursor: pointer; }
.enquiry-switch button span { display: block; margin-top: 4px; font-size: .84rem; font-weight: 500; }
.enquiry-switch button[aria-selected="true"] { color: white; background: var(--navy); }
.draft-preview { margin-top: 24px; text-align: left; }
.draft-preview label { display: block; margin-bottom: 8px; font-size: .85rem; font-weight: 800; }
.draft-preview textarea { width: 100%; padding: 16px; resize: vertical; border: 1px solid var(--line); border-radius: 8px; background: #f5f6f9; color: var(--ink); font: inherit; font-size: .85rem; line-height: 1.7; }
.draft-tools { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 20px; }
.draft-tools .button { font: inherit; font-size: .85rem; font-weight: 750; cursor: pointer; }
.draft-tools .text-button { min-height: 44px; }
.draft-status { min-height: 1.6em; font-size: .85rem; }
.gate-success > p, .gate-summary { overflow-wrap: anywhere; }
[aria-invalid="true"] { border-width: 2px !important; border-color: var(--navy) !important; }
.lane-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.lane-filters button { padding: 11px 19px; min-height: 46px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--navy); font: inherit; font-size: .88rem; font-weight: 750; cursor: pointer; }
.lane-filters button[aria-pressed="true"] { background: var(--navy); color: white; }
.filter-status { color: var(--muted); font-size: .85rem; margin: 16px 0 24px; }
.lane-card { display: flex; flex-direction: column; }
.lane-link { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 24px; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }
.certificate-button { display: block; width: 100%; padding: 0; background: white; color: var(--navy); border: 0; cursor: zoom-in; font: inherit; text-align: left; }
.certificate-button img { transition: transform .2s; }
.certificate-button:hover img { transform: scale(1.025); }
.certificate-button span { display: block; padding-top: 12px; font-size: .8rem; font-weight: 800; }
.certificate-dialog { width: min(1000px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 24px; color: var(--navy); border: 0; border-radius: 16px; box-shadow: var(--shadow); }
.certificate-dialog::backdrop { background: rgba(3,14,36,.85); }
.certificate-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.certificate-toolbar h2 { font-size: 1.1rem; line-height: 1.4; margin: 0; }
.certificate-toolbar button { flex: 0 0 auto; font: inherit; cursor: pointer; }
.certificate-dialog > img { max-height: 70dvh; width: 100%; object-fit: contain; }
.certificate-dialog > p { font-size: .8rem; margin-bottom: 0; }
body.dialog-open { overflow: hidden; }
@media (max-width: 1050px) and (min-width: 901px) { .nav { gap: 15px; } .nav-wrap { gap: 20px; } .nav a { font-size: .82rem; } .brand img { width: 180px; } }
@media (max-width: 900px) { .nav.open { max-height: calc(100dvh - 82px); overflow-y: auto; } }
@media (max-width: 640px) {
  .enquiry-switch { margin-bottom: 30px; gap: 4px; padding: 5px; }
  .enquiry-switch button { padding: 14px 10px; font-size: .92rem; }
  .enquiry-switch button span { font-size: .74rem; line-height: 1.4; }
  .draft-tools { width: 100%; }
  .draft-tools .button { flex: 1 1 100%; }
  .certificate-dialog { padding: 16px; }
  .certificate-toolbar { gap: 14px; align-items: flex-start; }
  .certificate-toolbar h2 { font-size: .88rem; }
  .certificate-toolbar .button { width: auto; min-height: 44px; padding: 8px 14px; font-size: .85rem; }
  .nav.open { max-height: calc(100dvh - 74px); }
}
@media (prefers-reduced-motion: reduce) { .animate-reveal:not(.visible) { opacity: 1; transform: none; } *, *::before, *::after { transition-duration: 0s !important; animation-duration: 0s !important; } }
@media print { .site-header, .footer, .hero, .page-hero, .enquiry-switch, .gate-actions, .draft-tools, .skip-link { display: none !important; } .gate-panel { box-shadow: none; } .reveal { opacity: 1; transform: none; } }
