/* ============================================================
   Pramukh Immigration — Global Stylesheet
   ============================================================ */

:root {
  --navy: #182751;
  --navy-2: #293d83;
  --navy-3: #6373aa;
  --red: #e52b17;
  --red-deep: #bc2012;
  --amber: #f2aa13;
  --ink: #182751;
  --muted: #4f586e;
  --paper: #ffffff;
  --cream: #faf8f3;
  --rule: rgba(24, 39, 81, .13);
  --rule-strong: rgba(24, 39, 81, .26);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(4.25rem, 8vw, 7rem);
  --header-h: 96px;

  --sans: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;

  --ease: cubic-bezier(.22, .61, .21, 1);
  --shadow-sm: 0 10px 30px rgba(24, 39, 81, .07);
  --shadow-md: 0 22px 60px rgba(24, 39, 81, .10);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p, ul, ol, dl, dd { margin: 0; }
ul[class], ol[class] { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
input, select, textarea { font: inherit; }
em { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
::selection { color: #fff; background: var(--red); }

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

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 200;
  padding: .7rem 1.1rem;
  background: var(--navy);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  transform: translateY(-260%);
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: none; }

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container));
    padding-left: max(0px, env(safe-area-inset-left) - 16px);
    padding-right: max(0px, env(safe-area-inset-right) - 16px);
  }
}

/* ---------- Typography ---------- */
h1, .display {
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -.032em;
}
.hero-title {
  font-size: clamp(2.55rem, 6.4vw, 4.9rem);
  max-width: 21ch;
}
.page-hero-title {
  font-size: clamp(2.15rem, 5vw, 3.7rem);
  max-width: 24ch;
}
.section-heading {
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -.028em;
  max-width: 24ch;
}
.accent-red { color: var(--red); }
.accent-navy { color: var(--navy-2); }

p { color: var(--muted); }
.lead {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.62;
  max-width: 58ch;
}
.body-lg {
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.66;
  color: var(--ink);
}
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-2);
}
.eyebrow::before {
  content: "";
  width: 9px; height: 9px;
  flex: none;
  background: var(--red);
}
.eyebrow .index {
  font-family: var(--serif);
  font-size: .95rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--red-deep);
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: .85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background-color .25s ease, border-color .25s ease,
              color .25s ease, transform .25s var(--ease);
}
.btn .btn-arrow {
  font-size: 1rem;
  transition: transform .25s var(--ease);
}
.btn:hover .btn-arrow { transform: translate(3px, -3px); }

.arrow-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.08em;
}

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #101c42; }

.btn-outline { border-color: var(--rule-strong); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--cream); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: .65; cursor: progress; pointer-events: none; }

.spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .25rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--rule-strong);
  transition: color .2s ease, border-color .2s ease;
}
.text-link span { color: var(--red); transition: transform .25s var(--ease); }
.text-link:hover { color: var(--red-deep); border-color: var(--red-deep); }
.text-link:hover span { transform: translateX(4px); }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); border-top: 1px solid var(--rule); }
.section--tint { background: var(--cream); }
.section-head {
  margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
}
.section-head .eyebrow { margin-bottom: 1.1rem; }

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(24, 39, 81, .09); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
}
.brand { flex: none; display: block; }
.brand img { width: 176px; }

.site-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.3vw, 2.3rem);
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: .55rem 0;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .012em;
  color: var(--navy);
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-panel-foot { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex: none;
}
.header-cta { min-height: 44px; padding: .7rem 1.25rem; font-size: .88rem; }

.menu-toggle {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px; height: 2px;
  background: var(--navy);
  transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .25s ease;
}
.menu-icon { top: 50%; margin-top: -1px; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

@media (max-width: 920px) {
  :root { --header-h: 72px; }
  .header-inner { gap: 1rem; }
  .brand img { width: 132px; }

  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-cta { display: none; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    min-height: calc(100svh - var(--header-h));
    padding: 1.1rem var(--gutter) calc(1.75rem + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--rule);
    box-shadow: 0 34px 54px rgba(24, 39, 81, .14);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    overflow-y: auto;
    transition: transform .38s var(--ease), opacity .32s ease, visibility 0s linear .38s;
  }
  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: transform .38s var(--ease), opacity .28s ease, visibility 0s linear 0s;
  }
  .site-nav.open .nav-panel-foot { display: grid; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-link {
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -.02em;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav-link::after { display: none; }
  .nav-link.active { color: var(--red-deep); }

  .nav-panel-foot {
    margin-top: auto;
    padding-top: 1.75rem;
    gap: 1rem;
  }
  .nav-panel-note {
    font-size: .92rem;
    text-align: center;
  }
  .nav-panel-note a { font-weight: 600; color: var(--navy-2); }
}

@media (min-width: 921px) {
  body.menu-open { overflow: visible; }
}

/* ---------- Home hero ---------- */
.hero {
  padding: clamp(3rem, 6.5vh, 5rem) 0 clamp(3rem, 6vh, 4.75rem);
}
.hero-title { margin-top: clamp(1.4rem, 3vw, 2.25rem); }
.hero-title span { display: block; }
.hero-sub {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--navy-2);
  max-width: 34ch;
}
.hero .lead { margin-top: 1.1rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: clamp(1.6rem, 3vw, 2.25rem);
}
.trust-line {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-2);
}
.trust-line::before {
  content: "";
  flex: none;
  width: 9px; height: 9px;
  background: var(--amber);
}

/* Route strip */
.route {
  border-block: 1px solid var(--rule);
  background: var(--paper);
}
.route-inner {
  position: relative;
  padding: 1.9rem 0;
}
.route-label {
  position: absolute;
  left: 0; top: .45rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy-3);
}
.route-nodes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(1.5rem, 4vw, 3rem);
}
.route-nodes::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 5px;
  height: 2px;
  background: var(--rule);
  z-index: 0;
}
.route.in .route-nodes::before {
  background: linear-gradient(90deg, var(--red), var(--red));
  animation: routeDraw 1.4s var(--ease) forwards;
}
@keyframes routeDraw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.route-nodes li {
  position: relative;
  z-index: 1;
  padding-top: 1.35rem;
}
.route-nodes li::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--red);
}
.route-nodes small {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-deep);
}
.route-nodes strong {
  display: block;
  margin-top: .3rem;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -.015em;
}

@media (max-width: 680px) {
  .route-inner { padding: 2.1rem 0; }
  .route-label { top: 0; }
  .route-nodes {
    display: block;
    margin-top: 1.9rem;
    padding-left: 1.5rem;
  }
  .route-nodes::before {
    left: 5px; right: auto; top: 4px; bottom: 6px;
    width: 2px; height: auto;
  }
  .route.in .route-nodes::before { animation-name: routeDrawY; }
  @keyframes routeDrawY { from { transform: scaleY(0); } to { transform: scaleY(1); } }
  .route-nodes::before { transform-origin: top; }
  .route-nodes li { padding: 0 0 1.5rem 1.1rem; }
  .route-nodes li:last-child { padding-bottom: 0; }
  .route-nodes li::before { left: -1.5rem; top: .3rem; margin-left: 0; }
}

/* ---------- Page hero ---------- */
.page-hero {
  padding: clamp(2.75rem, 5.5vh, 4.25rem) 0 clamp(2.5rem, 5vh, 3.5rem);
}
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero .lead { margin-top: 1.4rem; }

/* ---------- Editorial split ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(230px, 4fr) 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.split-side { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.split-side .eyebrow { margin-bottom: 0; }
.split-body > * + * { margin-top: 1.15rem; }
.split-body .text-link { margin-top: 1.75rem; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 1.75rem; }
  .split-side { position: static; }
}

/* ---------- Mission / Vision duo ---------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 760px) {
  .duo { grid-template-columns: 1fr; }
}
.duo-card {
  padding: clamp(1.75rem, 3.2vw, 2.6rem);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
}
.duo-label {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--red-deep);
}
.duo-card p { font-size: 1.04rem; line-height: 1.7; color: var(--ink); }

/* ---------- Numbered list ---------- */
.num-list { border-top: 1px solid var(--rule); }
.num-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
}
.num-item .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--red-deep);
}
.num-item h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -.018em;
  transition: color .2s ease;
}
.num-item:hover h3 { color: var(--navy-2); }

/* ---------- Tiles (hairline grid) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.tile {
  padding: 1.45rem 1.35rem 1.55rem;
  background: var(--paper);
  transition: background-color .25s ease;
}
.tile:hover { background: var(--cream); }
.tile .no {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--red-deep);
}
.tile h3 {
  margin-top: .55rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.012em;
}

/* ---------- Service cards ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.svc {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.svc:hover {
  transform: translateY(-4px);
  border-color: var(--navy-3);
  box-shadow: var(--shadow-sm);
}
.svc .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--red-deep);
}
.svc h3 {
  margin-top: .9rem;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -.018em;
}
.svc p { margin-top: .55rem; font-size: .95rem; line-height: 1.62; }
.svc--cta {
  justify-content: center;
  align-items: flex-start;
  background: var(--navy);
  border-color: var(--navy);
}
.svc--cta p { color: rgba(255, 255, 255, .78); }
.svc--cta .svc-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-weight: 600;
  color: #fff;
}
.svc--cta .svc-cta-link span { color: var(--amber); transition: transform .25s var(--ease); }
.svc--cta .svc-cta-link:hover span { transform: translate(4px, -4px); }

/* ---------- Countries ---------- */
.countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2.25rem, 5vw, 4.5rem);
  border-top: 1px solid var(--rule);
}
.country {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: baseline;
  gap: .75rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--rule);
  transition: background-color .2s ease;
}
.country:hover { background: var(--cream); }
.country .code {
  font-family: var(--serif);
  font-style: italic;
  font-size: .98rem;
  color: var(--red-deep);
}
.country .name {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -.015em;
}
.country .note {
  display: block;
  margin-top: .15rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
}
@media (max-width: 680px) {
  .countries { grid-template-columns: 1fr; }
}

/* Chips row (home strip) */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.chip {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  padding: .55rem 1rem;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--paper);
  transition: border-color .2s ease, background-color .2s ease;
}
.chip:hover { border-color: var(--navy-2); background: var(--cream); }
.chip small { font-weight: 500; font-size: .74rem; color: var(--muted); }

/* ---------- Process timeline ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem 1.75rem;
  counter-reset: step;
}
.process li {
  position: relative;
  padding-top: 1.5rem;
  border-top: 2px solid var(--rule);
}
.process li::before {
  content: "";
  position: absolute;
  top: -7px; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--red);
}
.process li:nth-child(even)::before { border-color: var(--navy-2); }
.process .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: .98rem;
  color: var(--red-deep);
}
.process h3 {
  margin-top: .5rem;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -.015em;
}
.process p {
  margin-top: .4rem;
  font-size: .92rem;
  line-height: 1.6;
}

@media (max-width: 1020px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .process {
    display: block;
    border-left: 2px solid var(--rule);
    margin-left: .35rem;
  }
  .process li {
    padding: 0 0 1.9rem 1.6rem;
    border-top: 0;
  }
  .process li:last-child { padding-bottom: 0; }
  .process li::before {
    top: .2rem;
    left: -8px;
    margin-left: 0;
  }
}

/* ---------- Choose grid (why consultants choose us) ---------- */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.choose-grid li {
  padding: 1.5rem 1.35rem 1.65rem;
  background: var(--paper);
  transition: background-color .25s ease;
}
.choose-grid li:hover { background: var(--cream); }
.choose-grid .no {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--red-deep);
}
.choose-grid h3 {
  margin-top: .55rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.35;
}
@media (max-width: 1020px) { .choose-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .choose-grid { grid-template-columns: 1fr; } }

/* ---------- Commitment band ---------- */
.band-commit {
  background: var(--navy);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.band-commit .eyebrow {
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.5rem;
}
.band-commit .statement {
  max-width: 46ch;
  margin-inline: auto;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -.012em;
  color: #fff;
}
.band-commit .signature {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--amber);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.cta-band h2 {
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.032em;
  color: #fff;
}
.cta-band h2 em { color: #ffe9b8; }
.cta-copy { max-width: 44ch; }
.cta-copy p { color: rgba(255, 255, 255, .88); font-size: 1.02rem; line-height: 1.66; }
.cta-copy .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.6rem;
  margin-top: 1.6rem;
}
.link-white {
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  padding-bottom: .2rem;
  transition: border-color .2s ease;
}
.link-white:hover { border-color: #fff; }
@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */
.contact-section { background: var(--cream); }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6.5fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-info > h2 {
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -.02em;
  margin-bottom: 1.6rem;
}
.contact-info dl {
  display: grid;
  gap: 1.35rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.6rem;
}
.contact-info dt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy-3);
}
.contact-info dd {
  margin-top: .3rem;
  font-size: 1.05rem;
  font-weight: 500;
}
.contact-info dd a {
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  overflow-wrap: anywhere;
}
.contact-info dd a:hover {
  color: var(--red-deep);
  border-color: var(--red-deep);
}
.contact-note {
  margin-top: 1.75rem;
  font-size: .92rem;
  max-width: 42ch;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: clamp(1.6rem, 3.4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.form-card > h2 {
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -.02em;
}
.form-card .form-sub { margin-top: .5rem; font-size: .95rem; }

form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.1rem;
  margin-top: 1.6rem;
}
.field { display: grid; gap: .45rem; align-content: start; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
}
.req { color: var(--red-deep); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .78rem .9rem;
  border: 1px solid var(--rule-strong);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: .97rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(41, 61, 131, .14);
}
.field [aria-invalid="true"] { border-color: var(--red-deep); }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.4rem;
  cursor: pointer;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field-error {
  display: none;
  font-size: .78rem;
  font-weight: 500;
  color: var(--red-deep);
}
.field.invalid .field-error { display: block; }

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}
.form-hint { font-size: .84rem; }

.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: .85rem 1.05rem;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 500;
}
.form-status.error {
  display: block;
  color: var(--red-deep);
  background: #fdf0ee;
  border: 1px solid rgba(188, 32, 18, .25);
}

.form-success {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) .5rem;
}
.form-success .mark {
  width: 64px; height: 64px;
  margin: 0 auto 1.4rem;
  color: #1d8a4e;
}
.form-success .mark circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
}
.form-success .mark path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}
.form-success:not([hidden]) .mark circle { animation: draw .7s var(--ease) forwards; }
.form-success:not([hidden]) .mark path { animation: draw .45s .5s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.form-success h3 {
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: -.02em;
}
.form-success p {
  max-width: 40ch;
  margin: .8rem auto 0;
}
.form-success .btn { margin-top: 1.6rem; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  form .form-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  form .form-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding-top: clamp(2.75rem, 5vw, 4rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr 1.05fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
}
.footer-brand img { width: 168px; }
.footer-brand p {
  margin-top: 1.1rem;
  font-size: .95rem;
  max-width: 30ch;
}
.footer-col .footer-title {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy-3);
  margin-bottom: 1rem;
}
.footer-links li + li { margin-top: .6rem; }
.footer-links a,
.footer-contact a {
  font-size: .93rem;
  color: var(--ink);
  transition: color .2s ease;
  overflow-wrap: anywhere;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--red-deep); }
.footer-about p {
  font-size: .93rem;
  max-width: 34ch;
}
.footer-about .text-link { margin-top: 1.1rem; }
.footer-hours { margin-top: 1.5rem; }
.footer-hours p { font-size: .93rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem 2rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--rule);
  font-size: .82rem;
}
.footer-bottom p { color: var(--muted); }

@media (max-width: 1020px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .route.in .route-nodes::before { animation: none; }
  .form-success .mark circle,
  .form-success .mark path { stroke-dashoffset: 0; animation: none; }
}

/* ---------- Small-screen refinements ---------- */
@media (max-width: 480px) {
  .num-item { grid-template-columns: 52px 1fr; }
  .country { grid-template-columns: 46px 1fr; }
  .btn { white-space: normal; }
}
