:root {
  --paper: #fbfdff;
  --mist: #eef5ff;
  --white: #fff;
  --ink: #172033;
  --ink-2: #41516a;
  --muted: #65758c;
  --line: #dce6f2;
  --navy: #173f70;
  --navy-deep: #0b2749;
  --accent: #1264d8;
  --accent-dark: #0b4da8;
  --accent-soft: #a9cff8;
  --ink-on-dark: rgba(255, 255, 255, 0.86);
  --ink-on-dark-muted: rgba(255, 255, 255, 0.74);
  --line-on-dark: rgba(255, 255, 255, 0.12);
  --radius: 24px;
  --shadow: 0 22px 65px rgba(11, 39, 73, .09);
  --section-x: clamp(42px, 8vw, 132px);
  --section-y: clamp(85px, 7vw, 105px);
  --ribbon-y: clamp(150px, 13vw, 190px);
  --font-body: "DM Sans", sans-serif;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --fs-kicker: 0.75rem;
  --fs-ui: 0.875rem;
  --fs-body: 1rem;
  --fs-lede: 1.125rem;
  --fs-title: 1.125rem;
  --fs-title-lg: 1.375rem;
  --fs-title-xl: 1.5rem;
  --fs-display-sm: clamp(1.75rem, 3.2vw, 2.5rem);
  --fs-display: clamp(2.25rem, 4vw, 3.625rem);
  --fs-hero: clamp(3rem, 4.7vw, 4.375rem);
  --fs-hero-sm: clamp(2.25rem, 4vw, 3.25rem);
  --lh-display: 1.08;
  --lh-title: 1.25;
  --lh-body: 1.7;
  --track-kicker: 0.12em;
  --track-display: -0.045em;
}

* { box-sizing: border-box; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 7%, rgba(90, 160, 235, .18), transparent 26%),
    linear-gradient(140deg, #dcecff 0%, #f4f8ff 52%, #e4efff 100%);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-feature-settings: "cv11", "ss01";
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--ink); background: rgba(18,100,216,.18); }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(18,100,216,.42);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 10px;
  padding: 10px 14px;
  background: white;
  border: 2px solid var(--navy);
}
.skip-link:focus, .skip-link:focus-visible { top: 10px; }
.page-shell {
  width: min(1460px, calc(100% - 64px));
  margin: 54px auto;
  overflow-x: clip;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 30px;
  box-shadow: 0 24px 90px rgba(11,39,73,.13);
}
.section-pad { padding-inline: var(--section-x); }
.section-kicker, .eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: var(--fs-kicker);
  font-weight: 700;
  letter-spacing: var(--track-kicker);
  text-transform: uppercase;
}
h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: var(--track-display); overflow-wrap: break-word; }

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
  padding-inline: var(--section-x);
  background: rgba(251,253,255,.92);
  border-bottom: 1px solid rgba(220,230,242,.72);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { display: block; height: 52px; width: auto; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); font-size: var(--fs-ui); font-weight: 600; }
.desktop-nav a { padding: 16px 0 12px; position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transition: left .2s ease, right .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { left: 0; right: 0; }
.header-call { display: flex; flex-direction: column; justify-content: center; min-height: 44px; text-align: right; color: var(--navy-deep); font-size: var(--fs-ui); font-weight: 700; }
.header-call span { margin-bottom: 3px; color: var(--muted); font-size: var(--fs-kicker); font-weight: 600; text-transform: uppercase; letter-spacing: var(--track-kicker); }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-button span { display: block; height: 2px; margin: 6px 0; background: var(--navy-deep); transition: .25s; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(45px, 6vw, 85px);
  min-height: 650px;
  padding-top: 46px;
  padding-bottom: 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 26%, rgba(169,207,248,.22), transparent 31%),
    var(--paper);
}
.hero-copy { position: relative; z-index: 2; }
.hero .reveal { opacity: 1; transform: none; }
.hero h1 { margin: 0 0 24px; color: var(--navy-deep); font-size: var(--fs-hero); font-weight: 700; line-height: var(--lh-display); }
.hero-lede { max-width: 570px; margin: 0; color: var(--ink-2); font-size: var(--fs-lede); line-height: var(--lh-body); }
.hero-actions { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 31px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  color: white;
  background: var(--accent);
  border: 0;
  border-radius: 8px;
  font-size: var(--fs-ui);
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--accent-dark); box-shadow: 0 10px 25px rgba(18,100,216,.22); }
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  font-size: var(--fs-ui);
  font-weight: 700;
}
.trust-line { display: flex; flex-wrap: wrap; gap: 10px 17px; margin-top: 30px; color: var(--ink-2); font-size: var(--fs-ui); }
.trust-line span + span::before { content: "·"; margin-right: 17px; color: var(--accent); }
.hero-gallery { position: relative; height: 510px; }
.hero-gallery figure { position: absolute; margin: 0; overflow: hidden; background: white; border: 6px solid white; border-radius: 20px; box-shadow: 0 18px 44px rgba(11,39,73,.1); }
.hero-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hero-gallery figure:hover img { transform: scale(1.03); }
.hero-study { z-index: 1; width: 50%; height: 350px; left: 0; top: 0; }
.hero-work { width: 45%; height: 395px; right: 0; top: 15%; }
.hero-family { z-index: 2; width: 54%; height: 245px; left: 24%; bottom: 0; }
.hero-scroll-arrow {
  position: absolute;
  z-index: 4;
  left: clamp(42%, 45vw, 50%);
  bottom: 24px;
  width: min(420px, 34vw);
  height: 120px;
}
.hero-scroll-arrow img { display: block; width: 100%; height: 100%; object-fit: contain; }

.about {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 8vw, 115px);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: white;
}
.about-collage {
  display: grid;
  grid-template: 122px 205px 110px / .93fr 1.07fr;
  gap: 15px;
}
.about-photo { position: relative; margin: 0; overflow: hidden; background: var(--paper); border-radius: 15px; }
.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-main { grid-row: 1 / 3; }
.experience { display: flex; align-items: center; gap: clamp(8px, 1.5vw, 16px); padding: clamp(12px, 2vw, 22px); color: white; background: var(--navy-deep); border-radius: 15px; }
.experience strong { font: 700 var(--fs-display-sm)/1 var(--font-display); color: white; }
.experience span { font-size: var(--fs-kicker); line-height: 1.4; }
.about-secondary { grid-column: 2; grid-row: 2 / 4; }
.mini-proof { display: grid; grid-template-columns: auto auto 1px 1fr; align-items: center; gap: clamp(4px, .7vw, 7px); padding: clamp(8px, 1.3vw, 15px); color: var(--navy-deep); border: 1px solid var(--line); border-radius: 15px; }
.mini-proof b { font: 700 var(--fs-title-xl)/1 var(--font-display); }
.mini-proof span { color: var(--muted); font-size: var(--fs-kicker); line-height: 1.25; }
.mini-proof i { width: 1px; height: 35px; margin-inline: 3px; background: var(--line); }
.mini-proof p { margin: 0; color: var(--navy); font-size: var(--fs-kicker); font-weight: 700; line-height: 1.5; }
.about-copy h2, .section-heading h2, .process h2, .advisors h2, .evidence h2, .faq h2, .consultation h2 {
  margin: 0 0 22px;
  color: var(--navy-deep);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
}
.about-copy h2 a, .advisor-intro h2 a { color: inherit; }
.about-more { display: inline-block; margin: 24px 24px 0 0; vertical-align: middle; }
.about-copy > p:not(.section-kicker), .advisor-intro > p:not(.section-kicker), .evidence-intro > p:not(.section-kicker), .faq-intro > p:not(.section-kicker), .consultation-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: var(--ink-2);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
.decision-cards { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
.hero-copy, .hero-gallery, .about-copy, .about-collage, .advisor-card, .advisor-card > div { min-width: 0; }
.decision-cards article { min-height: 174px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; }
.line-icon { color: var(--accent); font-size: var(--fs-kicker); font-weight: 700; letter-spacing: var(--track-kicker); }
.decision-cards h3 { margin: 15px 0 8px; color: var(--navy-deep); font: 700 var(--fs-title)/var(--lh-title) var(--font-display); }
.decision-cards p { margin: 0; color: var(--ink-2); font-size: var(--fs-ui); line-height: 1.6; }
.phone-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; }
.phone-link > span { display: grid; place-items: center; width: 45px; height: 45px; color: white; background: var(--accent); border-radius: 50%; }
.phone-link small { color: var(--muted); font-size: var(--fs-kicker); line-height: 1.3; }
.phone-link b { display: block; color: var(--navy-deep); font-size: var(--fs-lede); }

.ribbons { position: relative; min-height: var(--ribbon-y); overflow: visible; background: white; }
.ribbon { position: absolute; left: -6%; width: 112%; overflow: hidden; color: white; background: var(--navy-deep); transform-origin: center; }
.ribbon-one { top: calc(50% - 58px); transform: rotate(4deg); }
.ribbon-two { top: calc(50% - 8px); background: var(--accent-dark); transform: rotate(-4deg); }
.ticker { display: flex; align-items: center; gap: 34px; width: max-content; height: 66px; white-space: nowrap; animation: ticker 31s linear infinite; font: 600 var(--fs-title-lg)/1 var(--font-display); }
.ticker.reverse { animation-direction: reverse; }
.ticker em { color: var(--ink-on-dark-muted); font-style: normal; font-weight: 300; letter-spacing: .04em; }
.ticker span { color: var(--accent-soft); font-size: var(--fs-ui); }
@keyframes ticker { to { transform: translateX(-50%); } }

.services { padding-top: var(--section-y); padding-bottom: var(--section-y); background: var(--paper); }
.section-heading { max-width: 770px; margin: 0 auto 50px; text-align: center; }
.section-heading > p:not(.section-kicker) { max-width: 610px; margin: 0 auto; color: var(--ink-2); font-size: var(--fs-body); line-height: var(--lh-body); }
.section-heading > p:not(.section-kicker) + p { margin-top: 14px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 250px;
  padding: 25px 25px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 38%, rgba(169,207,248,.28), transparent 30%),
    linear-gradient(145deg, white 0%, #fbfdff 58%, #eef5ff 100%);
  border: 1px solid var(--line);
  border-radius: 13px;
  transition: transform .22s ease, border-color .22s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  right: -54px;
  bottom: 45px;
  width: 230px;
  height: 150px;
  background: rgba(238,245,255,.78);
  border-radius: 58% 0 0 0;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(18,100,216,.48); box-shadow: 0 18px 40px rgba(11,39,73,.08); }
.service-top, .service-card h3, .service-card p, .service-card a { position: relative; z-index: 2; }
.service-top { display: flex; align-items: center; justify-content: space-between; }
.service-top > span { display: grid; place-items: center; width: 40px; height: 40px; color: var(--navy); background: var(--mist); border-radius: 50%; font-weight: 700; }
.service-top > b { color: var(--muted); font-size: var(--fs-kicker); letter-spacing: var(--track-kicker); }
.service-card h3 { max-width: 58%; margin: 20px 0 9px; color: var(--navy-deep); font: 700 var(--fs-title)/1.15 var(--font-display); }
.service-card p { max-width: 56%; min-height: 86px; margin: 0 0 22px; color: var(--ink-2); font-size: var(--fs-ui); line-height: 1.65; }
.service-visual { position: absolute; z-index: 1; right: 14px; bottom: 45px; width: 48%; max-width: 190px; margin: 0; pointer-events: none; }
.service-visual img { width: 100%; max-height: 150px; object-fit: contain; object-position: right bottom; filter: drop-shadow(0 16px 20px rgba(11,39,73,.09)); }
.service-visual--sm img { max-height: 120px; }
.service-card a { display: flex; align-items: center; justify-content: space-between; height: 45px; margin: 0 -25px; padding: 0 25px; color: white; background: var(--navy-deep); font-size: var(--fs-ui); font-weight: 700; }
.service-card:hover a { background: var(--accent); }

.button-light { color: var(--navy-deep); background: white; }
.button-light:hover { color: white; background: var(--accent); }

.work-bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  grid-template-areas:
    "admit visas"
    "docs  visas";
  gap: 18px;
  min-height: 640px;
}
.work-tile--admit { grid-area: admit; }
.work-tile--visas { grid-area: visas; }
.work-tile--docs { grid-area: docs; }
.work-tile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.work-tile:hover { border-color: rgba(18,100,216,.4); box-shadow: 0 18px 40px rgba(11,39,73,.08); }
.work-visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 170px;
  margin: 0;
  overflow: hidden;
}
.work-tile--visas .work-visual { min-height: 280px; }
.work-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.work-tile--admit .work-photo { object-position: center 18%; }
.work-tile--visas .work-photo { object-position: center 28%; }
.work-tile--docs .work-photo { object-position: center 42%; }
.work-tile:hover .work-photo { transform: scale(1.05); }
.work-caption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 22px 18px;
  color: white;
  background: linear-gradient(to top, rgba(11, 39, 73, .92), rgba(11, 39, 73, .35) 58%, transparent);
}
.work-index { display: block; margin-bottom: 8px; color: var(--accent-soft); font-size: var(--fs-kicker); font-weight: 700; letter-spacing: var(--track-kicker); }
.work-caption h3 { margin: 0 0 6px; color: white; font: 700 var(--fs-title-lg)/1.15 var(--font-display); }
.work-caption p { margin: 0; color: var(--ink-on-dark); font-size: var(--fs-ui); line-height: 1.45; }
.work-gate {
  margin: 0;
  padding: 10px 16px;
  color: var(--navy-deep);
  background: var(--mist);
  border-top: 1px solid var(--line);
  font-size: var(--fs-ui);
  font-weight: 600;
  line-height: 1.45;
}
.work-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
  padding: 12px;
  list-style: none;
}
.work-tile--docs .work-chips li:first-child { grid-column: 1 / -1; }
.work-chips a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--navy-deep);
  background: var(--mist);
  border-radius: 10px;
  font-size: var(--fs-ui);
  font-weight: 700;
}
.work-chips a:hover { color: white; background: var(--accent); }
.work-chips a span { color: var(--accent); }
.work-chips a:hover span { color: white; }

main p a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: var(--fs-kicker);
}
main > .breadcrumb { padding-inline: var(--section-x); padding-top: 28px; padding-bottom: 8px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li + li::before { content: "/ "; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--navy-deep); }
.inner-hero {
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(40px, 4vw, 64px);
  background: white;
}
.inner-hero:has(figure) {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}
.inner-hero-copy { min-width: 0; }
.inner-hero h1 {
  margin: 0 0 20px;
  color: var(--navy-deep);
  font-size: var(--fs-hero-sm);
  line-height: var(--lh-display);
}
.inner-hero:has(.about-copy) { align-items: start; }
.inner-hero-visual, .inner-hero figure {
  margin: 0;
  min-width: 0;
  max-width: min(420px, 100%);
  justify-self: end;
}
.inner-hero figure img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(11, 39, 73, .14));
  animation: float-y 5.5s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.gate-callout {
  margin: 8px var(--section-x) 8px;
  padding: 22px 28px;
  color: white;
  background: var(--navy-deep);
  border-radius: 14px;
  font-size: var(--fs-lede);
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: break-word;
}
.gate-callout p { margin: 0; color: white; }
.gate-callout p a, .gate-callout a { color: var(--accent-soft); text-decoration: underline; }
.split-fit { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 22px; }
.split-fit article {
  min-width: 0;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow-wrap: break-word;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.split-fit article:hover {
  transform: translateY(-4px);
  border-color: rgba(18,100,216,.48);
  box-shadow: 0 18px 40px rgba(11,39,73,.08);
}
.split-fit h2, .split-fit h3 { margin: 0 0 12px; color: var(--navy-deep); font: 700 var(--fs-title-lg)/1.2 var(--font-display); }
.split-fit p { margin: 0; color: var(--ink-2); font-size: var(--fs-body); line-height: var(--lh-body); }
.split-fit p + p { margin-top: 12px; }
.split-fit ul { margin: 0; padding: 0 0 0 18px; color: var(--ink-2); }
.split-fit li { margin: 8px 0; line-height: 1.55; }
.work-cards, .work-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 16px; counter-reset: step; }
section.work-cards { display: block; }
.work-cards article, .work-cards-grid article {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  counter-increment: step;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.work-cards article:hover, .work-cards-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(18,100,216,.48);
  box-shadow: 0 18px 40px rgba(11,39,73,.08);
}
.work-cards article::after, .work-cards-grid article::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -16px;
  width: 118px;
  height: 118px;
  background: url("assets/illust-poa.png") center / contain no-repeat;
  opacity: .14;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.work-cards article:hover::after, .work-cards-grid article:hover::after {
  opacity: .34;
  transform: translateY(-8px);
}
.doc-page .work-cards article::after,
.doc-page .work-cards-grid article::after { background-image: url("assets/illust-docs.png"); }
.vis-visas .work-cards article::after,
.vis-visas .work-cards-grid article::after { background-image: url("assets/illust-poa.png"); }
.work-cards h3, .work-cards-grid h3 { margin: 0 0 8px; color: var(--navy-deep); font: 700 var(--fs-title)/var(--lh-title) var(--font-display); }
.work-cards h3::before, .work-cards-grid h3::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font: 700 var(--fs-kicker)/1 var(--font-body);
  letter-spacing: var(--track-kicker);
}
.work-cards p, .work-cards-grid p { margin: 0; color: var(--ink-2); font-size: var(--fs-ui); line-height: 1.6; }
.work-cards article > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 8px;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  font-size: var(--fs-ui);
  font-weight: 700;
}
.inner-prose { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 4vw, 40px); }
.inner-prose > div {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.inner-prose > div:hover {
  transform: translateY(-4px);
  border-color: rgba(18,100,216,.48);
  box-shadow: 0 18px 40px rgba(11,39,73,.08);
}
.inner-prose h2 { margin: 0 0 12px; color: var(--navy-deep); font: 700 var(--fs-title-lg)/1.2 var(--font-display); }
.inner-prose p { margin: 0; color: var(--ink-2); font-size: var(--fs-body); line-height: var(--lh-body); }
.inner-prose p + p { margin-top: 12px; }
.related-row { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.related-row > :is(h2, .section-kicker, p) { flex: 1 0 100%; }
.related-row h2 { margin: 0; color: var(--navy-deep); font: 700 var(--fs-title-lg)/1.2 var(--font-display); }
.related-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.related-row a, .related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  font-size: var(--fs-ui);
  font-weight: 700;
}

.process { padding-top: var(--section-y); padding-bottom: var(--section-y); background: white; }
.section-heading.align-left { max-width: 760px; margin-inline: 0; text-align: left; }
.section-heading.align-left > p:not(.section-kicker) { margin-inline: 0; max-width: 720px; }

main > section.section-pad:not(.inner-hero):not(.process):not(.faq):not(.consultation):not(.advisors):not(.evidence) {
  padding-block: var(--section-y);
}
main > section.section-pad:not(.inner-hero):not(.process):not(.faq):not(.consultation):not(.advisors):not(.evidence):nth-of-type(even) {
  background: var(--mist);
}
main > .related-row {
  padding-block: clamp(48px, 5vw, 72px);
  border-top: 1px solid var(--line);
}
main > section.section-pad:not(.inner-hero):not(.process):not(.faq):not(.consultation):not(.advisors):not(.evidence) > h2 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-size: var(--fs-display-sm);
  line-height: 1.12;
}
main > section.section-pad:not(.inner-hero):not(.process):not(.faq):not(.consultation):not(.advisors):not(.evidence) > p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: var(--ink-2);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
main > section.section-pad:not(.inner-hero):not(.process):not(.faq):not(.consultation):not(.advisors):not(.evidence) > p:not(.section-kicker) + p {
  margin-top: 14px;
}
main > section.section-pad:not(.inner-hero):not(.split-fit):not(.inner-prose):not(.process):not(.faq):not(.consultation):not(.advisors):not(.work-cards):not(.evidence):not(.services):not(:has(.work-cards, .work-cards-grid, .work-bento, .process-rail, .advisor-cards, .faq-list, form)) {
  background: var(--mist);
}
main > section.section-pad:not(:has(.work-cards, .work-cards-grid, .work-bento, .process-rail, .advisor-cards, .faq-list, form, .split-fit)):has(> .section-heading) > .section-heading {
  max-width: 860px;
  margin-bottom: 0;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3.5vw, 44px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(11, 39, 73, .06);
}
main > section.section-pad:not(.inner-hero):not(:has(.section-heading, .work-cards, .work-cards-grid, .work-bento, .process-rail, .advisor-cards, .faq-list, form, .split-fit, .inner-hero-copy, figure)) {
  background: white;
  box-shadow: inset 8px 0 0 var(--accent);
}
.work-cards + p, .work-cards-grid + p { margin-top: 28px; }

@media (min-width: 901px) {
  main > section.section-pad:has(> .section-heading):not(.services):not(:has(.work-cards, .work-cards-grid, .work-bento, .process-rail, .advisor-cards, .faq-list, form, .split-fit, .inner-prose)) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
    align-items: center;
    column-gap: clamp(24px, 4vw, 52px);
  }
  main > section.section-pad:has(> .section-heading):not(.services):not(:has(.work-cards, .work-cards-grid, .work-bento, .process-rail, .advisor-cards, .faq-list, form, .split-fit, .inner-prose))::after {
    content: "";
    min-height: 240px;
    background: url("assets/illust-poa.png") center / contain no-repeat;
    filter: drop-shadow(0 16px 24px rgba(11, 39, 73, .1));
    animation: float-y 6s ease-in-out infinite;
  }
  .doc-page main > section.section-pad:has(> .section-heading):not(:has(.work-cards, .work-cards-grid, .work-bento, .process-rail, .advisor-cards, .faq-list, form, .split-fit, .inner-prose))::after {
    background-image: url("assets/illust-docs.png");
  }
  .about-page main > section.section-pad:has(> .section-heading):not(:has(.work-cards, .work-cards-grid, .work-bento, .process-rail, .advisor-cards, .faq-list, form, .split-fit, .inner-prose))::after {
    background-image: url("assets/illust-firm.png");
  }
  .contact-page main > section.section-pad:has(> .section-heading):not(:has(.work-cards, .work-cards-grid, .work-bento, .process-rail, .advisor-cards, .faq-list, form, .split-fit, .inner-prose))::after {
    background-image: url("assets/illust-contact.png");
  }
}
.process-rail { display: grid; grid-template-columns: repeat(5, 1fr); margin: 40px 0 25px; padding: 0; list-style: none; counter-reset: process; }
.process-rail li { position: relative; padding: 0 22px 0 0; }
.process-rail li:not(:last-child)::after { content: ""; position: absolute; top: 21px; left: 44px; right: 12px; height: 2px; background: var(--accent-soft); }
.process-rail li > span { display: grid; place-items: center; width: 44px; height: 44px; color: white; background: var(--accent); border-radius: 50%; font-size: var(--fs-body); font-weight: 700; }
.process-rail h3 { margin: 22px 0 8px; color: var(--navy-deep); font: 700 var(--fs-title)/1.2 var(--font-display); }
.process-rail h3 a { border-bottom: 1px solid currentColor; }
.process-rail p { margin: 0; color: var(--ink-2); font-size: var(--fs-body); line-height: 1.55; }
.process-note { margin: 36px 0 0; padding-top: 20px; color: var(--ink-2); border-top: 1px solid var(--line); font-size: var(--fs-body); }

.advisors {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--mist);
}
.advisor-intro { max-width: 720px; margin-bottom: 36px; }
.advisor-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.advisor-card { display: grid; grid-template-columns: 132px 1fr; gap: 28px; align-items: center; padding: 32px; background: white; border-radius: 18px; box-shadow: var(--shadow); }
a.advisor-card { transition: transform .2s ease, box-shadow .2s ease; }
a.advisor-card:hover { transform: translateY(-4px); box-shadow: 0 22px 65px rgba(11, 39, 73, .14); }
.advisor-photo { width: 132px; height: auto; border-radius: 4px; box-shadow: 0 10px 24px rgba(11, 39, 73, .16); }
.advisor-card .role { display: inline-block; margin: 0 0 10px; padding: 5px 10px; color: white; background: var(--navy-deep); border-radius: 4px; font-size: var(--fs-kicker); font-weight: 700; letter-spacing: var(--track-kicker); text-transform: uppercase; overflow-wrap: anywhere; }
.advisor-card h3 { margin: 0 0 8px; color: var(--navy-deep); font: 700 var(--fs-title-xl)/1.2 var(--font-display); }
.advisor-card div > p:not(.role) { margin: 0; color: var(--ink-2); font-size: var(--fs-body); line-height: 1.5; }
.advisor-card div > span { display: block; margin-top: 14px; color: var(--muted); font-size: var(--fs-ui); }
.advisor-card span a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

.evidence {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--paper);
}
.evidence-intro { max-width: 640px; }
.featured-quote { margin: 0; padding: 40px 48px; color: white; background: var(--navy-deep); border-radius: 18px; }
.quote-mark { color: var(--accent-soft); font: 400 65px/1 Georgia, serif; }
.featured-quote > p { margin: 0; color: white; font: 600 var(--fs-title-xl)/1.55 var(--font-display); }
.featured-quote footer { display: flex; flex-direction: column; margin-top: 25px; }
.featured-quote footer b { color: white; font-size: var(--fs-body); }
.featured-quote footer span { margin-top: 3px; color: var(--ink-on-dark-muted); font-size: var(--fs-ui); }
.case-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.case-notes article { padding: 8px 0 8px 22px; background: transparent; border: 0; border-left: 3px solid var(--accent); border-radius: 0; }
.case-notes article > b { color: var(--accent); font-size: var(--fs-kicker); letter-spacing: var(--track-kicker); }
.case-notes h3 { margin: 14px 0 8px; color: var(--navy-deep); font: 700 var(--fs-title)/1.3 var(--font-display); }
.case-notes p { margin: 0; color: var(--ink-2); font-size: var(--fs-body); line-height: 1.6; }

.faq {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(55px, 8vw, 110px);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: white;
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; color: var(--navy-deep); font: 700 var(--fs-title)/1.3 var(--font-display); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--accent); font: 400 var(--fs-title-lg)/1 var(--font-body); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -5px 38px 23px 0; color: var(--ink-2); font-size: var(--fs-body); line-height: var(--lh-body); }

.consultation {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(55px, 8vw, 105px);
  align-items: center;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  overflow: hidden;
  background: var(--mist);
}
.consultation::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -8px;
  z-index: 0;
  width: min(420px, 55%);
  aspect-ratio: 1014 / 324;
  background: url("assets/logo.png") center / contain no-repeat;
  opacity: .07;
  pointer-events: none;
}
.consultation-form, .consultation-copy { position: relative; z-index: 1; }
.consultation-form { padding: 31px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--accent); font-family: var(--font-display); font-size: var(--fs-kicker); font-weight: 700; letter-spacing: var(--track-kicker); }
.form-heading p { margin: 0; color: var(--muted); font-size: var(--fs-ui); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; min-width: 0; }
.consultation-form label { display: block; margin-bottom: 15px; color: var(--navy-deep); font-family: var(--font-display); font-size: var(--fs-body); font-weight: 600; min-width: 0; }
.consultation-form input, .consultation-form select, .consultation-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 11px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  resize: vertical;
  font-family: var(--font-body);
  font-size: var(--fs-body);
}
.consultation-form input:focus, .consultation-form select:focus, .consultation-form textarea:focus { border-bottom-color: var(--accent); }
.form-submit { width: 100%; margin-top: 8px; }
.form-status { min-height: 16px; margin: 8px 0 -10px; color: var(--accent); font-size: var(--fs-ui); text-align: center; }
.contact-list { margin: 27px 0 0; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; margin: 17px 0; }
.contact-list li > span { display: grid; place-items: center; width: 36px; height: 36px; color: var(--navy); background: white; border-radius: 50%; }
.contact-list p { margin: 0; color: var(--muted); font-size: var(--fs-ui); }
.contact-list b { display: block; margin-top: 4px; color: var(--navy-deep); font-family: var(--font-display); font-size: var(--fs-lede); font-weight: 600; line-height: 1.5; overflow-wrap: break-word; }

.site-footer { color: white; background: var(--navy-deep); }
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, .72fr)) .95fr;
  gap: 36px 28px;
  padding: 70px var(--section-x) 52px;
}
.footer-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-on-dark);
}
.footer-about .brand-logo { height: 56px; }
.footer-about > p, .footer-contact p { max-width: 370px; color: var(--ink-on-dark); font-size: var(--fs-ui); line-height: var(--lh-body); }
.footer-main h3 { margin: 0 0 16px; color: var(--accent-soft); font-size: var(--fs-kicker); letter-spacing: var(--track-kicker); text-transform: uppercase; }
.footer-links, .footer-contact, .footer-about { min-width: 0; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links a, .footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
  color: var(--ink-on-dark);
  font-size: var(--fs-ui);
  overflow-wrap: anywhere;
}
.footer-contact a[href^="tel"],
.contact-list a[href^="tel"] {
  white-space: nowrap;
  overflow-wrap: normal;
  width: max-content;
  max-width: 100%;
}
.footer-cta p { margin: 0; font: 700 var(--fs-lede)/1.3 var(--font-display); }
.footer-cta .button { flex: 0 0 auto; white-space: nowrap; }
.button-gold { color: var(--navy-deep); background: var(--accent-soft); }
.button-gold:hover { background: white; color: var(--navy-deep); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  padding-inline: var(--section-x);
  color: var(--ink-on-dark-muted);
  border-top: 1px solid var(--line-on-dark);
  font-size: var(--fs-kicker);
}
.footer-bottom a { color: var(--ink-on-dark); }
.footer-bottom a:hover { color: white; }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 1200px) {
  .about, .faq, .consultation, .split-fit, .inner-hero:has(figure), .inner-prose { grid-template-columns: 1fr; }
  .decision-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .inner-hero-visual, .inner-hero figure { justify-self: start; max-width: min(360px, 100%); }
  .inner-hero figure img { animation: none; }
  .advisor-cards { grid-template-columns: 1fr; max-width: 720px; }
  .consultation { align-items: start; gap: 40px; }
  .about-collage { width: 100%; max-width: 600px; }
  .process-rail { grid-template-columns: 1fr; gap: 0; }
  .process-rail li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 12px 0;
  }
  .process-rail li:not(:last-child)::after {
    top: 50px;
    left: 21px;
    right: auto;
    width: 2px;
    height: calc(100% - 30px);
  }
  .process-rail h3 { margin: 1px 0 5px; }
}

@media (max-width: 1120px) {
  .header-call { display: none; }
  .desktop-nav { flex-wrap: wrap; justify-content: flex-end; gap: 16px 22px; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 30px; padding-top: 50px; }
  .hero-scroll-arrow { display: none; }
  .hero-gallery { width: 100%; max-width: 650px; height: 510px; margin-inline: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about, .footer-cta { grid-column: 1 / -1; }
  .work-bento { min-height: 0; }
}

@media (max-width: 900px) {
  .page-shell { width: calc(100% - 34px); margin: 20px auto; }
  .site-header { position: sticky; top: 0; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    z-index: 20;
    inset: 0 17px auto;
    top: 116px;
    display: flex;
    flex-direction: column;
    padding: 12px 28px 20px;
    background: var(--paper);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 35px rgba(10,26,64,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .25s, transform .25s;
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 0;
    color: var(--navy-deep);
    border-bottom: 1px solid var(--line);
    font-size: var(--fs-body);
    font-weight: 600;
  }
  .hero, .about, .faq, .consultation, .split-fit, .inner-hero:has(figure), .inner-prose { grid-template-columns: 1fr; }
  .inner-hero-visual, .inner-hero figure { justify-self: start; max-width: min(360px, 100%); }
  .inner-hero figure img { animation: none; }
  .work-bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "admit"
      "visas"
      "docs";
    min-height: 0;
  }
  .work-visual { min-height: 210px; }
  .work-tile--visas .work-visual { min-height: 240px; }
  .hero { gap: 30px; padding-top: 50px; }
  .hero-gallery { width: 100%; max-width: 650px; margin-inline: auto; }
  .hero-scroll-arrow { display: none; }
  .about-collage { width: 100%; max-width: 600px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .decision-cards { grid-template-columns: 1fr; }
  .service-card h3 { max-width: 62%; }
  .service-card p { max-width: 60%; }
  .process-rail { grid-template-columns: 1fr; gap: 0; }
  .process-rail li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 12px 0;
  }
  .process-rail li:not(:last-child)::after {
    top: 50px;
    left: 21px;
    right: auto;
    width: 2px;
    height: calc(100% - 30px);
  }
  .process-rail h3 { margin: 1px 0 5px; }
  .advisor-cards { grid-template-columns: 1fr; max-width: 720px; }
  .consultation-form { order: 2; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root {
    --section-x: 22px;
    --section-y: 76px;
    --ribbon-y: 138px;
    --fs-hero: clamp(2rem, 8.4vw, 2.5rem);
    --fs-hero-sm: clamp(1.75rem, 8vw, 2.125rem);
    --fs-display: clamp(1.75rem, 8vw, 2.25rem);
    --fs-title-xl: 1.375rem;
  }
  .page-shell { width: 100%; margin: 0; border-radius: 0; }
  .section-pad, .site-header { padding-inline: var(--section-x); }
  .site-header { height: 90px; }
  .brand-logo { height: 40px; }
  .mobile-nav { inset-inline: 0; top: 90px; padding-inline: 22px; border-radius: 0 0 16px 16px; }
  .hero { min-height: auto; padding-top: 44px; padding-bottom: 65px; }
  .hero-lede { font-size: var(--fs-body); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .trust-line { flex-direction: column; gap: 8px; }
  .hero-gallery { height: 370px; }
  .hero-gallery figure { border-width: 4px; border-radius: 15px; }
  .hero-study { width: 52%; height: 255px; }
  .hero-work { width: 47%; height: 270px; top: 12%; }
  .hero-family { width: 62%; height: 170px; left: 18%; }
  .about { gap: 48px; padding-top: var(--section-y); padding-bottom: var(--section-y); }
  .about-collage { grid-template: 89px 148px 83px / .92fr 1.08fr; gap: 10px; }
  .experience { gap: 8px; padding: 12px; }
  .decision-cards, .services-grid, .case-notes, .work-cards, .work-cards-grid { grid-template-columns: 1fr; }
  .work-chips { grid-template-columns: 1fr; }
  .work-tile--docs .work-chips li:first-child { grid-column: auto; }
  .gate-callout { margin-inline: var(--section-x); }
  main > .breadcrumb { padding-inline: var(--section-x); }
  .service-card { min-height: 270px; }
  .service-card h3 { max-width: 58%; }
  .service-card p { max-width: 58%; }
  .service-visual { right: 10px; width: 46%; }
  .decision-cards article { min-height: 0; padding: 18px 20px; }
  .decision-cards h3 { margin-top: 8px; }
  .ribbons { min-height: var(--ribbon-y); }
  .ribbon-one { top: calc(50% - 48px); }
  .ribbon-two { top: calc(50% - 5px); }
  .ticker { height: 54px; gap: 22px; }
  .services { padding-top: var(--section-y); padding-bottom: var(--section-y); }
  .process { padding-top: var(--section-y); padding-bottom: var(--section-y); }
  .process-rail { grid-template-columns: 1fr; gap: 0; }
  .process-rail li { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 12px 0; }
  .process-rail li:not(:last-child)::after { top: 50px; left: 21px; right: auto; width: 2px; height: calc(100% - 30px); }
  .process-rail h3 { margin: 1px 0 5px; }
  .advisors { padding-top: var(--section-y); padding-bottom: var(--section-y); }
  .advisor-card { grid-template-columns: 96px 1fr; gap: 16px; padding: 22px; }
  .advisor-photo { width: 96px; }
  .faq { gap: 35px; padding-top: var(--section-y); padding-bottom: var(--section-y); }
  .featured-quote { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .consultation-form { padding: 24px 20px; }
  .consultation::after { width: min(280px, 70%); }
  .footer-main { grid-template-columns: 1fr; gap: 35px; padding: 58px var(--section-x) 42px; }
  .footer-about .brand-logo { height: 48px; }
  .footer-cta { display: block; }
  .footer-cta p { margin: 0 0 15px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; padding: 18px var(--section-x); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .work-tile:hover .work-photo { transform: none; }
  .work-cards article:hover, .work-cards-grid article:hover, .split-fit article:hover, .inner-prose > div:hover { transform: none; }
}

/* vis-visas */
.vis-visas .inner-hero-copy { min-width: 0; }
.vis-visas .inner-hero:has(figure) {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 280px);
  gap: clamp(24px, 3vw, 40px);
}
.vis-visas .inner-hero-visual,
.vis-visas .inner-hero figure { max-width: 280px; }
.vis-visas .inner-hero figure img { max-height: 280px; }
.vis-visas .gate-callout {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  margin-bottom: 48px;
  padding: 28px 32px;
  font-size: var(--fs-lede);
  line-height: 1.5;
  box-shadow: 0 10px 28px rgba(11, 39, 73, .16);
}
.vis-visas .split-fit { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.vis-visas .split-fit article { min-width: 0; overflow-wrap: break-word; }
.vis-visas .related-links { width: 100%; }
.vis-visas .faq-list summary { align-items: flex-start; }
.vis-visas .faq-list summary span {
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  overflow: hidden;
  font-size: 0;
  line-height: 1;
}
.vis-visas .faq-list summary span::before {
  content: "+";
  color: var(--accent);
  font-size: var(--fs-title-lg);
  font-weight: 400;
}
.vis-visas .faq-list details[open] summary span { transform: none; }
.vis-visas .faq-list details[open] summary span::before { content: "\00d7"; }
.vis-visas .consultation-form,
.vis-visas .form-row,
.vis-visas .consultation-form label { min-width: 0; }
.vis-visas .form-heading { flex-wrap: wrap; }
.vis-visas .consultation-form select { max-width: 100%; }
.vis-visas .footer-contact a[href^="tel"],
.vis-visas .contact-list a[href^="tel"] {
  white-space: nowrap;
  overflow-wrap: normal;
}
@media (max-width: 1200px) {
  .vis-visas .inner-hero:has(figure),
  .vis-visas .split-fit { grid-template-columns: 1fr; }
  .vis-visas .inner-hero-visual,
  .vis-visas .inner-hero figure { max-width: min(360px, 100%); }
  .vis-visas .inner-hero figure img { max-height: 280px; }
  .vis-visas .process-rail { grid-template-columns: 1fr; gap: 0; }
  .vis-visas .process-rail li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 12px 0;
  }
  .vis-visas .process-rail li:not(:last-child)::after {
    top: 50px;
    left: 21px;
    right: auto;
    width: 2px;
    height: calc(100% - 30px);
  }
  .vis-visas .process-rail h3 { margin: 1px 0 5px; }
}
@media (max-width: 600px) {
  .vis-visas .inner-hero-visual,
  .vis-visas .inner-hero figure { max-width: min(280px, 100%); }
  .vis-visas .inner-hero figure img { max-height: 240px; }
  .vis-visas .gate-callout { padding: 22px 20px; font-size: var(--fs-body); }
}
/* /vis-visas */

/* vis-docs */
.doc-page .work-cards-grid:has(> article:nth-child(4):last-child) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.doc-page .work-cards-grid article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 220px;
  height: 100%;
}
.doc-page .work-cards-grid article > a:last-child { margin-top: auto; }
.doc-page .split-fit article { height: 100%; min-width: 0; }
.doc-page .process-rail li { min-width: 0; }
.doc-page .process-rail h3, .doc-page .process-rail p { overflow-wrap: break-word; }
.doc-page .inner-prose {
  row-gap: clamp(36px, 5vw, 56px);
}
.doc-page .form-heading { flex-wrap: wrap; align-items: flex-start; }
.doc-page .consultation-form select { max-width: 100%; }
.doc-page .contact-list b { overflow-wrap: anywhere; }
.doc-page .footer-links a, .doc-page .footer-contact a { overflow-wrap: break-word; }
@media (max-width: 1200px) {
  .doc-page .work-cards-grid:has(> article:nth-child(4):last-child) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .doc-page .process-rail { grid-template-columns: 1fr; gap: 0; }
  .doc-page .process-rail li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 12px 0;
  }
  .doc-page .process-rail li:not(:last-child)::after {
    top: 50px;
    left: 21px;
    right: auto;
    width: 2px;
    height: calc(100% - 30px);
  }
  .doc-page .process-rail h3 { margin: 1px 0 5px; }
}
@media (max-width: 600px) {
  .doc-page .work-cards-grid:has(> article:nth-child(4):last-child) { grid-template-columns: 1fr; }
}
/* /vis-docs */
