/* ==========================================================================
   CONTMAR — design system
   Mobile-first. Fluid type. Light + dark. Reduced-motion aware.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Brand — recovered from the original identity */
  --navy-900: #071e2e;
  --navy-800: #0a2c42;
  --navy-700: #0c3c54;
  --navy-600: #14536f;
  --navy-500: #1d6c8f;

  --coral-600: #c85c48;
  --coral-500: #dd6f57;
  --coral-400: #e08484;
  --coral-300: #eda99f;
  --coral-100: #fbeeeb;

  /* Semantic */
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --bg-deep: var(--navy-800);
  --surface: #ffffff;
  --surface-2: #f6f8fa;

  --ink: #0d1b26;
  --ink-2: #3d5261;
  --ink-3: #64798a;
  --on-deep: #eef4f8;
  --on-deep-2: #a9c2d1;

  --line: #e3e9ee;
  --line-2: #cfd9e1;

  --accent: var(--coral-500);
  --accent-ink: #ffffff;
  --brand: var(--navy-700);

  --focus: #1d6c8f;

  /* Shape & depth */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(7, 30, 46, .06), 0 1px 3px rgba(7, 30, 46, .05);
  --shadow-md: 0 4px 12px rgba(7, 30, 46, .07), 0 2px 4px rgba(7, 30, 46, .04);
  --shadow-lg: 0 18px 40px rgba(7, 30, 46, .10), 0 4px 12px rgba(7, 30, 46, .05);
  --shadow-xl: 0 30px 70px rgba(7, 30, 46, .16);

  /* Rhythm */
  --gap: clamp(1rem, 3vw, 1.75rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
  --pad-x: clamp(1.15rem, 5vw, 2.5rem);
  --maxw: 1200px;
  --maxw-narrow: 760px;

  --header-h: 68px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: .18s var(--ease);
  --t: .3s var(--ease);

  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (min-width: 900px) {
  :root { --header-h: 82px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #08161f;
    --bg-alt: #0b1e2b;
    --bg-deep: #061520;
    --surface: #0d2331;
    --surface-2: #102a3a;

    --ink: #e8f1f7;
    --ink-2: #b3c7d4;
    --ink-3: #8ba5b6;
    --on-deep: #eef4f8;
    --on-deep-2: #a9c2d1;

    --line: #17364a;
    --line-2: #21495f;

    --accent: var(--coral-400);
    --brand: #7fb6d4;
    --focus: #7fb6d4;
    --coral-100: #17364a;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .38);
    --shadow-lg: 0 18px 40px rgba(0, 0, 0, .45);
    --shadow-xl: 0 30px 70px rgba(0, 0, 0, .55);
  }
}

/* --- Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -.022em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 6.4vw, 3.9rem); }
h2 { font-size: clamp(1.65rem, 4.4vw, 2.65rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--coral-400); color: #fff; }

/* --- Layout ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -150%;
  z-index: 200;
  background: var(--navy-800);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 700;
  text-decoration: none;
  transition: translate var(--t);
}
.skip-link:focus { translate: -50% 0; color: #fff; }

/* --- Header ------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 44px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.brand__tag {
  font-size: .58rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-top: 3px;
}

/* Desktop nav */
.nav { display: none; }

@media (min-width: 980px) {
  .nav {
    display: flex;
    align-items: center;
    gap: .15rem;
    margin-left: auto;
  }
  .nav__link {
    position: relative;
    padding: .55rem .85rem;
    border-radius: var(--r-sm);
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink-2);
    text-decoration: none;
    transition: color var(--t-fast), background var(--t-fast);
  }
  .nav__link:hover { color: var(--ink); background: var(--surface-2); }
  .nav__link[aria-current="page"] { color: var(--brand); }
  .nav__link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .2rem;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
  }
}

/* Two classes deep so this wins over .btn's own `display`, whatever the
   source order. The drawer carries the call-to-action on small screens. */
.header .header__cta { display: none; }

@media (min-width: 980px) {
  .header .header__cta { display: inline-flex; margin-left: .75rem; }
}

/* Burger */
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.burger:hover { border-color: var(--line-2); }
.burger__bars { position: relative; width: 20px; height: 14px; }
.burger__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--t), opacity var(--t-fast), top var(--t);
}
.burger__bars span:nth-child(1) { top: 0; }
.burger__bars span:nth-child(2) { top: 6px; }
.burger__bars span:nth-child(3) { top: 12px; }
.burger[aria-expanded="true"] .burger__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

@media (min-width: 980px) { .burger { display: none; } }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 1.5rem var(--pad-x) 2.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  translate: 0 -8px;
  transition: opacity var(--t), translate var(--t), visibility var(--t);
}
.drawer.is-open { opacity: 1; visibility: visible; translate: 0 0; }

@media (min-width: 980px) { .drawer { display: none; } }

.drawer__nav { display: flex; flex-direction: column; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem .25rem;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.drawer__link[aria-current="page"] { color: var(--accent); }
.drawer__link svg { flex-shrink: 0; opacity: .35; }

.drawer__foot { margin-top: 2rem; display: grid; gap: .75rem; }
.drawer__contact {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 48px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
.drawer__contact svg { color: var(--accent); flex-shrink: 0; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font: inherit;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast),
    box-shadow var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 34%, transparent);
}
.btn--primary:hover {
  background: var(--coral-600);
  color: #fff;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 42%, transparent);
}

.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink-3); }

.btn--on-deep {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  backdrop-filter: blur(4px);
}
.btn--on-deep:hover { background: rgba(255, 255, 255, .18); color: #fff; }

.btn--sm { padding: .6rem 1.1rem; min-height: 42px; font-size: .9rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
@media (max-width: 400px) {
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
}

/* --- Eyebrow / headings ------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
  padding: .38rem .85rem;
  border-radius: var(--r-pill);
  background: var(--coral-100);
  color: var(--coral-600);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow--on-deep {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
@media (prefers-color-scheme: dark) {
  .eyebrow { color: var(--coral-300); }
}

.section-head { max-width: 660px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p {
  font-size: clamp(1rem, 2.2vw, 1.13rem);
  color: var(--ink-2);
  margin-bottom: 0;
}

.lead {
  font-size: clamp(1.05rem, 2.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-2);
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 45%, var(--navy-600) 100%);
  color: var(--on-deep);
  padding-block: clamp(3rem, 9vw, 6rem) clamp(3.5rem, 10vw, 6.5rem);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -25%;
  right: -18%;
  width: min(72vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--coral-500) 42%, transparent) 0%, transparent 65%);
  filter: blur(28px);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, #000 20%, transparent 78%);
  opacity: .8;
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}

.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em {
  font-style: normal;
  color: var(--coral-300);
  position: relative;
  white-space: nowrap;
}
.hero__sub {
  font-size: clamp(1.04rem, 2.5vw, 1.28rem);
  color: var(--on-deep-2);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.4rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .87rem;
  color: var(--on-deep-2);
}
.hero__trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust svg { color: var(--coral-300); flex-shrink: 0; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, .16);
  aspect-ratio: 1 / .96;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1.05rem;
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.25;
}
.hero__chip small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-3);
}
.hero__chip-ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral-100);
  color: var(--coral-600);
  flex-shrink: 0;
}
.hero__chip--a { left: -4%; bottom: 12%; }
.hero__chip--b { right: -3%; top: 8%; }

@media (max-width: 600px) {
  .hero__chip { padding: .6rem .8rem; font-size: .78rem; }
  .hero__chip--a { left: -2%; bottom: 6%; }
  .hero__chip--b { right: -2%; top: 4%; }
  .hero__chip-ico { width: 28px; height: 28px; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
  color: var(--on-deep);
  padding-block: clamp(2.75rem, 8vw, 5rem);
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -60%;
  right: -10%;
  width: min(60vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--coral-500) 36%, transparent), transparent 65%);
  filter: blur(30px);
}
.page-hero h1 { color: #fff; }
.page-hero p {
  color: var(--on-deep-2);
  font-size: clamp(1rem, 2.4vw, 1.19rem);
  max-width: 60ch;
  margin-bottom: 0;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.1rem;
  font-size: .84rem;
  color: var(--on-deep-2);
  list-style: none;
  padding: 0;
}
.crumbs a { color: var(--on-deep-2); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }

/* --- Cards -------------------------------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 620px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 940px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3.4vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card--link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-2); font-size: .97rem; }

.card__ico {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.15rem;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, var(--coral-500), var(--coral-400));
  color: #fff;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--coral-500) 30%, transparent);
}
.card__ico--navy {
  background: linear-gradient(140deg, var(--navy-700), var(--navy-500));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--navy-700) 28%, transparent);
}

.card__more {
  margin-top: auto;
  padding-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .93rem;
  color: var(--accent);
  text-decoration: none;
}
.card--link:hover .card__more svg { transform: translateX(4px); }
.card__more svg { transition: transform var(--t-fast); }

.stretch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

/* --- Stats -------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 620px) { .stats { grid-template-columns: repeat(3, 1fr); } }

.stat {
  background: var(--surface);
  padding: clamp(1.6rem, 4vw, 2.4rem) 1.5rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block;
  margin-top: .6rem;
  color: var(--ink-2);
  font-size: .97rem;
  font-weight: 600;
}

/* --- Split (image + text) ----------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}

.split__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__media img { width: 100%; }

/* --- Check lists -------------------------------------------------------- */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.checks--2 { grid-template-columns: 1fr; }
@media (min-width: 760px) { .checks--2 { grid-template-columns: repeat(2, 1fr); gap: .8rem 2rem; } }

.checks li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink-2);
  font-size: .97rem;
  line-height: 1.55;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--coral-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dd6f57' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

.pills { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 1.5rem 0 0; list-style: none; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink-2);
}
.pill svg { color: var(--accent); }

/* --- Service sections --------------------------------------------------- */
.svc-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.svc-nav__scroll {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: .7rem;
  -webkit-overflow-scrolling: touch;
}
.svc-nav__scroll::-webkit-scrollbar { display: none; }
.svc-nav a {
  flex-shrink: 0;
  padding: .55rem 1rem;
  border-radius: var(--r-pill);
  font-size: .89rem;
  font-weight: 700;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast);
}
.svc-nav a:hover, .svc-nav a.is-active {
  background: var(--coral-100);
  color: var(--coral-600);
}

.svc {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.svc:last-of-type { border-bottom: 0; }
.svc__head {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}
.svc__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--navy-800);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}
.svc__head h2 { margin-bottom: .3rem; font-size: clamp(1.4rem, 3.6vw, 2.05rem); }
.svc__head p { color: var(--ink-2); margin: 0; font-size: .99rem; }

/* --- Logo wall ---------------------------------------------------------- */
.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 620px) { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) { .logos { grid-template-columns: repeat(5, 1fr); } }

.logos__item {
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2rem) 1rem;
  background: var(--surface);
  min-height: 116px;
  transition: background var(--t-fast);
}
.logos__item:hover { background: var(--surface-2); }
.logos__item img {
  max-height: 46px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
  transition: filter var(--t), opacity var(--t);
}
.logos__item:hover img { filter: grayscale(0); opacity: 1; }
@media (prefers-color-scheme: dark) {
  .logos__item img { filter: grayscale(1) brightness(1.9) contrast(.85); }
  .logos__item:hover img { filter: grayscale(0) brightness(1.15); }
}

/* --- CTA band ----------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -70%;
  left: 50%;
  translate: -50% 0;
  width: min(90%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--coral-500) 40%, transparent), transparent 62%);
  filter: blur(24px);
}
.cta h2 { color: #fff; }
.cta p {
  color: var(--on-deep-2);
  max-width: 54ch;
  margin-inline: auto;
  font-size: clamp(1rem, 2.2vw, 1.13rem);
}
.cta .btn-row { justify-content: center; margin-top: 1.9rem; }

/* --- Contact ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 940px) { .contact-grid { grid-template-columns: .95fr 1.05fr; } }

.info-list { display: grid; gap: 1rem; padding: 0; margin: 0; list-style: none; }
.info {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.info:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.info__ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--coral-100);
  color: var(--coral-600);
}
.info__label {
  display: block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .25rem;
}
.info__value { font-weight: 700; color: var(--ink); font-size: 1.02rem; line-height: 1.45; }
.info__value a { color: inherit; text-decoration: none; }
.info__value a:hover { color: var(--accent); text-decoration: underline; }
.info__value span { display: block; font-weight: 600; color: var(--ink-2); font-size: .95rem; }

/* Form */
.form {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  margin-bottom: .45rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
}
.field .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .8rem 1rem;
  min-height: 48px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }

.field-row { display: grid; gap: 0; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; gap: 0 1rem; } }

.form__note {
  margin-top: 1rem;
  font-size: .84rem;
  color: var(--ink-3);
  line-height: 1.5;
}

.map {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map iframe { width: 100%; height: clamp(280px, 45vw, 440px); border: 0; }

/* --- Prose (about) ------------------------------------------------------ */
.prose h2 { margin-top: 0; }
.prose p { color: var(--ink-2); font-size: clamp(1rem, 2.2vw, 1.08rem); }
.prose strong { color: var(--ink); }

.values { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 700px) { .values { grid-template-columns: repeat(3, 1fr); } }

.value {
  padding: clamp(1.4rem, 3vw, 1.9rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}
.value__letter {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: var(--r-sm);
  background: var(--navy-800);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}
.value h3 { margin-bottom: .35rem; }
.value p { color: var(--ink-2); font-size: .96rem; margin: 0; }

/* --- Footer ------------------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: var(--on-deep-2);
  padding-block: clamp(3rem, 7vw, 4.5rem) 0;
  font-size: .94rem;
}
.footer__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer h3 {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer a { color: var(--on-deep-2); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }

.footer__logo { margin-bottom: 1.25rem; }
.footer__logo img { height: 34px; width: auto; }
.footer__about { max-width: 34ch; line-height: 1.7; }

.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .1rem; }
.footer__list a {
  display: inline-block;
  padding-block: .5rem; /* keeps the tap target near 40px on phones */
}
.footer__list svg { opacity: .5; margin-left: .3rem; vertical-align: -1px; }

.footer__contact { display: grid; gap: .9rem; margin-top: 1.4rem; }
.footer__contact div { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact a { display: inline-block; padding-block: .2rem; }
.footer__contact svg { color: var(--coral-400); flex-shrink: 0; margin-top: 3px; }

.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}
.footer__bottom p { margin: 0; }

/* --- Motion ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

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

/* --- Utils -------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
