:root {
  --navy: #071f2d;
  --navy-2: #0b2b3d;
  --teal: #007f7a;
  --teal-bright: #00a59d;
  --gold: #c99b54;
  --sand: #eee7db;
  --paper: #f7f5ef;
  --white: #fff;
  --ink: #102c3c;
  --muted: #697b83;
  --line: rgba(16,44,60,.14);
  --container: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; inset-block-start: 10px; inset-inline-start: 10px; z-index: 1000; padding: 10px 16px; background: #fff; color: var(--navy); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.nav-shell { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 190px; text-decoration: none; }
.brand img { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0,0,0,.18)); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; direction: ltr; }
.brand-copy b { font-size: 25px; letter-spacing: .04em; }
.brand-copy small { width: 132px; margin-top: 5px; font-size: 7px; letter-spacing: .07em; text-transform: uppercase; opacity: .72; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; padding: 34px 0 31px; font-size: 14px; font-weight: 700; text-decoration: none; opacity: .82; }
.desktop-nav a::after { content: ""; position: absolute; height: 2px; inset: auto 0 22px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch, .menu-toggle { border: 0; color: #fff; background: transparent; cursor: pointer; }
.lang-switch { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: 11px; font-weight: 800; }
.menu-toggle { display: none; width: 40px; height: 40px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 6px auto; background: currentColor; }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 820px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background: url('./hero-port.jpg') center 55% / cover no-repeat; transform: scale(1.01); }
.hero-shade { background: linear-gradient(90deg, rgba(4,19,29,.92) 0%, rgba(4,23,34,.74) 45%, rgba(4,23,34,.22) 78%), linear-gradient(0deg, rgba(4,23,34,.42), transparent 55%); }
[dir="rtl"] .hero-shade { background: linear-gradient(-90deg, rgba(4,19,29,.92) 0%, rgba(4,23,34,.74) 45%, rgba(4,23,34,.22) 78%), linear-gradient(0deg, rgba(4,23,34,.42), transparent 55%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(340px,.65fr); align-items: end; gap: 9vw; padding-top: 128px; }
.hero-copy { max-width: 740px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: #e7c58c; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 48px; height: 1px; background: currentColor; }
h1 { margin: 0; font-size: clamp(58px, 7.1vw, 104px); line-height: .98; letter-spacing: -.045em; font-weight: 760; }
h1 strong { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.92); font-weight: 760; }
.hero-lead { max-width: 640px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: clamp(17px,1.6vw,21px); line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 22px; border: 1px solid transparent; text-decoration: none; font-size: 14px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--navy); }
.button-ghost { border-color: rgba(255,255,255,.35); background: rgba(7,31,45,.18); color: #fff; backdrop-filter: blur(10px); }
.route-card { padding: 24px 25px 18px; border-top: 2px solid var(--gold); background: rgba(7,31,45,.74); backdrop-filter: blur(18px); box-shadow: 0 28px 80px rgba(0,0,0,.22); }
.route-card-head, .route-card-foot { display: flex; align-items: center; justify-content: space-between; }
.route-card-head { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.route-card-head b { color: var(--gold); font-size: 30px; font-weight: 500; }
.route-card ol { margin: 0; padding: 0; list-style: none; }
.route-card li { display: grid; grid-template-columns: 32px 1fr 8px; align-items: center; gap: 13px; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; font-weight: 700; }
.route-number { color: rgba(255,255,255,.42); font: 10px/1 monospace; }
.route-card li i { width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); }
.route-card-foot { gap: 10px; padding-top: 16px; color: rgba(255,255,255,.5); font-size: 10px; }
.route-line { flex: 1; height: 1px; background: linear-gradient(90deg,transparent,var(--teal-bright),transparent); }
.hero-index { position: absolute; inset-inline-end: 22px; bottom: 30px; z-index: 2; color: rgba(255,255,255,.38); font: 10px/1 monospace; letter-spacing: .08em; writing-mode: vertical-rl; }

.signal-bar { background: var(--navy); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.signal-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.signal-grid > div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 18px 28px; border-inline-start: 1px solid rgba(255,255,255,.1); }
.signal-grid > div:last-child { border-inline-end: 1px solid rgba(255,255,255,.1); }
.signal-grid strong { color: var(--gold); font-size: 25px; letter-spacing: -.02em; }
.signal-grid span { margin-top: 8px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.45; }

.section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.1fr .65fr; gap: 50px; align-items: end; margin-bottom: 45px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -20px; }
.eyebrow-dark { color: var(--teal); }
.section-heading h2 { margin: 0; font-size: clamp(42px,5vw,68px); line-height: 1.02; letter-spacing: -.035em; color: var(--navy); }
.section-heading > p:last-child { margin: 0; color: var(--muted); line-height: 1.9; }
.preview-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.service-preview { position: relative; min-height: 410px; overflow: hidden; background: var(--navy) var(--service-image) center / cover no-repeat; }
.service-preview::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,22,33,.86), rgba(4,22,33,.04) 65%); }
.service-preview > div { position: absolute; inset: auto 30px 28px; color: #fff; }
.service-preview span { color: var(--gold); font: 10px/1 monospace; letter-spacing: .13em; }
.service-preview h3 { margin: 10px 0 0; font-size: 31px; }

.site-header.scrolled {
  position: fixed;
  background: rgba(7,31,45,.94);
  box-shadow: 0 12px 40px rgba(3,18,27,.18);
  backdrop-filter: blur(18px);
  animation: header-in .28s ease both;
}
.site-header.scrolled .nav-shell { min-height: 72px; }
.site-header.scrolled .desktop-nav a { padding-block: 26px 23px; }
.site-header.scrolled .desktop-nav a::after { bottom: 16px; }
@keyframes header-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.about-section { position: relative; overflow: hidden; background: #fff; }
.about-section::after {
  content: "SAL";
  position: absolute;
  inset-inline-end: -20px;
  bottom: -62px;
  color: rgba(7,31,45,.028);
  font-size: 310px;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
  direction: ltr;
  pointer-events: none;
}
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .92fr; gap: clamp(54px,8vw,120px); align-items: center; }
.about-visual { position: relative; min-height: 600px; overflow: hidden; background: var(--navy); }
.about-visual img { width: 100%; height: 100%; min-height: 600px; display: block; object-fit: cover; }
.about-visual::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.visual-label { position: absolute; inset: auto 22px 22px; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 18px; background: rgba(7,31,45,.84); color: #fff; backdrop-filter: blur(12px); }
.visual-label span { font-size: 12px; font-weight: 700; }
.visual-label b { color: var(--gold); font-size: 24px; font-weight: 500; }
.about-copy h2, .profiles-brand h2, .contact-copy h2 { margin: 0; font-size: clamp(44px,5.2vw,72px); line-height: 1.04; letter-spacing: -.04em; }
.body-large { margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 2; }
.vision-card { margin-top: 30px; padding: 24px 26px; border-inline-start: 3px solid var(--gold); background: var(--paper); }
.vision-card span { color: var(--teal); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.vision-card p { margin: 9px 0 0; color: var(--navy); font-size: 16px; font-weight: 700; line-height: 1.75; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin: 30px 0 0; padding: 0; list-style: none; border-block: 1px solid var(--line); }
.pillars li { display: flex; flex-direction: column; gap: 8px; padding: 17px 13px; border-inline-start: 1px solid var(--line); }
.pillars li:last-child { border-inline-end: 1px solid var(--line); }
.pillars b { color: var(--gold); font: 10px/1 monospace; }
.pillars span { font-size: 14px; font-weight: 800; }

.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.service-card { overflow: hidden; border: 1px solid var(--line); background: #fff; }
.service-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.16fr .84fr; min-height: 480px; }
.service-image { position: relative; min-height: 280px; overflow: hidden; background: var(--navy); }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(7,31,45,.62),transparent 55%); }
.service-image img { width: 100%; height: 100%; min-height: inherit; display: block; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-image > span { position: absolute; z-index: 1; inset-inline-start: 22px; bottom: 20px; color: #fff; font: 11px/1 monospace; letter-spacing: .12em; }
.service-content { padding: clamp(28px,3vw,46px); }
.service-title { display: flex; align-items: center; gap: 16px; }
.service-title h3 { margin: 0; color: var(--navy); font-size: clamp(27px,3vw,38px); letter-spacing: -.025em; }
.service-mark { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(0,127,122,.28); color: var(--teal); font: 700 15px/1 monospace; }
.service-content > p { margin: 23px 0 0; color: var(--muted); line-height: 1.85; }
.service-content ul { display: grid; gap: 11px; margin: 25px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-content li { position: relative; padding-inline-start: 18px; color: #304a58; font-size: 13px; line-height: 1.55; }
.service-content li::before { content: ""; position: absolute; inset-inline-start: 1px; top: .62em; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.scope-note { max-width: 850px; margin: 30px auto 0; padding: 15px 22px; border: 1px solid var(--line); color: var(--muted); text-align: center; font-size: 12px; line-height: 1.7; }

.focus-band { padding: 80px 0; overflow: hidden; color: #fff; background: var(--navy); }
.focus-layout { display: grid; gap: 32px; }
.focus-layout > .eyebrow { margin: 0; }
.focus-grid { display: grid; grid-template-columns: repeat(4,1fr); border-block: 1px solid rgba(255,255,255,.12); }
.focus-grid > div { min-height: 138px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: 24px; border-inline-start: 1px solid rgba(255,255,255,.12); }
.focus-grid > div:last-child { border-inline-end: 1px solid rgba(255,255,255,.12); }
.focus-grid b { color: var(--gold); font: 11px/1 monospace; }
.focus-grid span { max-width: 170px; font-size: 16px; font-weight: 800; line-height: 1.45; }

.process-section { background: #fff; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(3,1fr); margin: 58px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.process-track::before { content: ""; position: absolute; inset: -4px auto auto -4px; width: 7px; height: 7px; background: var(--gold); }
[dir="rtl"] .process-track::before { left: auto; right: -4px; }
.process-track li { position: relative; min-height: 190px; display: grid; grid-template-columns: 44px 1fr; gap: 19px; padding: 30px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-track li > span { color: var(--gold); font: 12px/1 monospace; }
.process-track h3 { margin: 0; color: var(--navy); font-size: 19px; }
.process-track p { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.process-track li::after { content: "↗"; position: absolute; inset-inline-end: 24px; bottom: 22px; color: rgba(7,31,45,.26); font-size: 18px; }

.profiles-section { background: var(--sand); }
.profiles-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.profiles-brand { display: flex; align-items: center; gap: 30px; }
.profiles-brand img { width: 128px; height: 128px; object-fit: contain; filter: drop-shadow(0 18px 28px rgba(7,31,45,.12)); }
.profiles-brand > div > span { display: block; margin-bottom: 14px; color: var(--teal); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.profiles-brand h2 { color: var(--navy); font-size: clamp(38px,4vw,58px); }
.profile-downloads { display: grid; gap: 12px; }
.profile-link { min-height: 106px; display: grid; grid-template-columns: 56px 1fr 42px; align-items: center; gap: 20px; padding: 18px 22px; border: 1px solid var(--line); background: rgba(255,255,255,.58); text-decoration: none; transition: background .2s ease, transform .2s ease; }
.profile-link:hover { background: #fff; transform: translateX(calc(var(--direction,1) * 4px)); }
.file-type { width: 50px; height: 50px; display: grid; place-items: center; background: var(--navy); color: #fff; font: 800 11px/1 monospace; }
.profile-link div { display: flex; flex-direction: column; gap: 7px; }
.profile-link small { color: var(--gold); font: 10px/1 monospace; letter-spacing: .1em; }
.profile-link b { color: var(--navy); font-size: 15px; }
.download-arrow { font-size: 21px; color: var(--teal); text-align: center; }

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
  background: linear-gradient(128deg,#061d2a 0%,#082b3d 56%,#075159 145%);
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg,transparent 5%,#000 52%,transparent 95%);
}
.contact-glow { position: absolute; width: 680px; height: 680px; inset-inline-start: -260px; top: -270px; border-radius: 50%; background: radial-gradient(circle,rgba(0,165,157,.2),rgba(0,127,122,.06) 46%,transparent 70%); }
.contact-watermark { position: absolute; width: min(470px,42vw); height: auto; inset-inline-end: -70px; bottom: -95px; opacity: .038; filter: grayscale(1) brightness(3); pointer-events: none; }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(58px,7vw,110px); align-items: center; }
.contact-copy .eyebrow { color: #e7c58c; }
.contact-copy h2 { max-width: 610px; }
.contact-copy > p:not(.eyebrow) { max-width: 540px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.95; }
.contact-button { margin-top: 36px; min-height: 58px; background: var(--gold); color: var(--navy); }
.contact-button:hover { background: #d7ae6b; }
.contact-prep { margin-top: 35px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-prep > span { color: #e7c58c; font-size: 12px; font-weight: 800; }
.contact-prep p { margin: 9px 0 0; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.7; }
.contact-card { position: relative; overflow: hidden; color: var(--navy); background: #f5f1e8; border-top: 3px solid var(--gold); box-shadow: 0 34px 80px rgba(0,0,0,.24); }
.contact-card::after { content: "SAL"; position: absolute; inset-inline-end: -18px; bottom: -40px; color: rgba(7,31,45,.028); font-size: 160px; font-weight: 900; letter-spacing: -.09em; line-height: 1; direction: ltr; pointer-events: none; }
.contact-card-head { position: relative; z-index: 1; min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 0 30px; border-bottom: 1px solid rgba(7,31,45,.13); }
.contact-card-head > span { color: var(--teal); font-size: 13px; font-weight: 900; }
.contact-card-head b { color: rgba(7,31,45,.42); font: 10px/1 monospace; letter-spacing: .13em; direction: ltr; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
.contact-item { position: relative; min-height: 168px; display: grid; grid-template-columns: 34px 1fr 22px; align-items: center; gap: 15px; padding: 27px 28px; border-bottom: 1px solid rgba(7,31,45,.13); border-inline-start: 1px solid rgba(7,31,45,.13); color: var(--navy); text-decoration: none; transition: background .22s ease, color .22s ease; }
.contact-index { align-self: start; padding-top: 5px; color: var(--gold); font: 11px/1 monospace; }
.contact-item > div { min-width: 0; }
.contact-item small { display: block; margin-bottom: 12px; color: #75838a; font-size: 12px; font-weight: 800; }
.contact-item strong { display: block; color: var(--navy); font-size: clamp(17px,1.55vw,23px); font-weight: 750; line-height: 1.35; white-space: nowrap; }
.contact-item > i { color: var(--teal); font-size: 17px; font-style: normal; text-align: center; }
a.contact-item:hover { background: #fff; }
a.contact-item:hover strong { color: var(--teal); }
.contact-diamond { width: 7px; height: 7px; justify-self: center; border: 1px solid var(--gold); transform: rotate(45deg); }
.contact-card-foot { position: relative; z-index: 1; min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 0 30px; background: rgba(255,255,255,.42); }
.contact-card-foot span { color: var(--teal); font-size: 26px; font-weight: 900; letter-spacing: -.04em; direction: ltr; }
.contact-card-foot p { margin: 0; color: #66777f; font-size: 12px; font-weight: 700; }

.site-footer { color: #fff; background: var(--navy); }
.footer-top { min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { width: 62px; height: 62px; }
.footer-top nav { display: flex; flex-wrap: wrap; gap: 25px; }
.footer-top nav a { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; text-decoration: none; }
.footer-bottom { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.42); font-size: 10px; line-height: 1.6; }

.has-js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.65,.25,1); }
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: grid; gap: 2px; padding: 12px 24px 22px; background: var(--navy); }
  .mobile-nav a { padding: 12px; text-decoration: none; font-weight: 700; }
  .hero { min-height: 900px; }
  .hero-layout { grid-template-columns: 1fr; gap: 55px; align-items: center; padding-block: 150px 80px; }
  .route-card { max-width: 560px; }
  .signal-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .profiles-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-visual { min-height: 540px; }
  .about-visual img { min-height: 540px; }
  .service-card-wide { grid-template-columns: 1fr; }
  .service-card-wide .service-image { min-height: 370px; }
  .focus-grid { grid-template-columns: repeat(2,1fr); }
  .process-track { grid-template-columns: repeat(2,1fr); }
  .profiles-layout, .contact-layout { gap: 55px; }
  .contact-copy { max-width: 690px; }
}

@media (max-width: 680px) {
  :root { --container: calc(100vw - 32px); }
  .nav-shell { min-height: 76px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .hero { min-height: 850px; }
  .hero-layout { padding-block: 132px 64px; }
  h1 { font-size: clamp(51px,16vw,76px); }
  .hero-lead { font-size: 16px; line-height: 1.75; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .route-card { padding-inline: 18px; }
  .signal-grid > div { min-height: 96px; padding: 15px; }
  .signal-grid strong { font-size: 20px; }
  .section { padding: 80px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading .eyebrow { margin-bottom: 4px; }
  .preview-grid { grid-template-columns: 1fr; }
  .service-preview { min-height: 340px; }
  .about-grid { gap: 45px; }
  .about-visual, .about-visual img { min-height: 430px; }
  .about-section::after { font-size: 180px; }
  .pillars { grid-template-columns: 1fr; }
  .pillars li { flex-direction: row; align-items: center; min-height: 58px; border-inline-end: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; display: block; }
  .service-card-wide .service-image, .service-image { min-height: 270px; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-grid > div { min-height: 105px; }
  .process-track { grid-template-columns: 1fr; }
  .process-track li { min-height: 150px; }
  .profiles-brand { align-items: flex-start; flex-direction: column; }
  .profiles-brand img { width: 105px; height: 105px; }
  .profile-link { grid-template-columns: 50px 1fr 28px; gap: 14px; padding: 15px; }
  .contact-section { padding: 82px 0; }
  .contact-layout { gap: 46px; }
  .contact-copy h2 { font-size: clamp(40px,13vw,56px); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card-head { min-height: 72px; padding-inline: 20px; }
  .contact-card-head b { display: none; }
  .contact-item { min-height: 118px; padding: 21px 20px; border-inline-start: 0; }
  .contact-item strong { font-size: 17px; }
  .contact-card-foot { min-height: 70px; padding-inline: 20px; }
  .contact-card-foot p { max-width: 210px; text-align: end; }
  .contact-watermark { width: 330px; }
  .footer-top { padding-block: 34px; align-items: flex-start; flex-direction: column; }
  .footer-top nav { display: grid; grid-template-columns: repeat(2,1fr); width: 100%; }
  .footer-bottom { padding-block: 24px; align-items: flex-start; flex-direction: column; }
}

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