:root {
  --navy-950: #031022;
  --navy-900: #071426;
  --navy-850: #0a1b31;
  --navy-800: #0b1f3a;
  --navy-700: #153757;
  --sky-500: #38bdf8;
  --sky-400: #66d1ff;
  --sky-100: #d8f2ff;
  --ice-50: #f4faff;
  --white: #f8fbff;
  --ink: #10213a;
  --slate: #5c6d80;
  --line: #dbe7f0;
  --shadow: 0 24px 70px rgba(7, 20, 38, 0.12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: min(1200px, calc(100% - 48px));
  --font: Inter, Manrope, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--navy-900);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: var(--sky-500);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

.eyebrow {
  margin: 0 0 20px;
  color: #1689bf;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lead {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.9vw, 1.52rem);
  font-weight: 570;
  line-height: 1.5;
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
}

.compact-section {
  padding-top: 30px;
}

.section-tint {
  background: var(--ice-50);
}

.section-heading {
  max-width: 680px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.cta-inner h2,
.content-card h2,
.feature-copy h2,
.office-card h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.35rem, 4.5vw, 4.65rem);
  font-weight: 380;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 1.08rem;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 28px;
  left: 0;
  width: 100%;
  color: var(--white);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  width: min(1328px, calc(100% - 56px));
  min-height: 68px;
  margin-inline: auto;
  padding: 8px 20px;
  border: 1px solid rgba(216, 242, 255, 0.24);
  border-radius: 20px;
  background: rgba(4, 18, 34, 0.7);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 620;
  letter-spacing: 0.17em;
  line-height: 1;
}

.brand-mark {
  width: 54px;
  color: var(--sky-100);
  stroke-width: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  height: 52px;
}

.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: rgba(248, 251, 255, 0.8);
  font-size: 0.91rem;
  font-weight: 560;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sky-500);
  content: "";
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 138px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(248, 251, 255, 0.72);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 620;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  border-color: var(--sky-500);
  background: rgba(56, 189, 248, 0.12);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  animation: hero-scale 16s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 16, 34, 0.98) 0%, rgba(3, 16, 34, 0.85) 31%, rgba(3, 16, 34, 0.28) 65%, rgba(3, 16, 34, 0.08) 100%),
    linear-gradient(180deg, rgba(3, 16, 34, 0.25) 0%, rgba(3, 16, 34, 0.04) 60%, rgba(3, 16, 34, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 150px 0 170px;
}

.hero-eyebrow {
  margin-bottom: 25px;
  color: var(--sky-400);
}

.hero-content h1 {
  max-width: 780px;
  margin: 0;
  color: #f5faff;
  font-size: clamp(4.2rem, 7.2vw, 7.2rem);
  font-weight: 290;
  letter-spacing: -0.056em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(233, 244, 255, 0.76);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 690;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button .icon,
.text-link .icon,
.header-cta .icon {
  transition: transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover .icon,
.text-link:hover .icon,
.header-cta:hover .icon {
  transform: translateX(4px);
}

.button-primary {
  background: linear-gradient(135deg, #58d5ff, #29b7f4);
  box-shadow: 0 14px 35px rgba(56, 189, 248, 0.24);
  color: var(--navy-950);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(56, 189, 248, 0.36);
}

.button-ghost {
  border-color: rgba(216, 242, 255, 0.72);
  background: rgba(7, 20, 38, 0.26);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: var(--sky-500);
  background: rgba(56, 189, 248, 0.1);
}

.button-dark {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 14px 28px rgba(7, 20, 38, 0.15);
}

.button-dark:hover {
  background: #0d2a47;
  box-shadow: 0 18px 36px rgba(7, 20, 38, 0.23);
}

.button-light {
  background: #fff;
  color: var(--navy-900);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.button-ghost-light:hover {
  border-color: var(--sky-500);
  background: rgba(56, 189, 248, 0.08);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 25px;
  padding: 8px 15px;
  border: 1px solid rgba(216, 242, 255, 0.28);
  border-radius: 999px;
  color: rgba(241, 248, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-pill .icon {
  color: var(--sky-500);
}

.hero-trust {
  position: absolute;
  z-index: 2;
  bottom: 42px;
  left: 50%;
  display: grid;
  grid-template-columns: auto minmax(60px, 1fr) auto minmax(60px, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: rgba(248, 251, 255, 0.9);
  transform: translateX(-50%);
}

.hero-trust > div {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-size: 0.93rem;
  font-weight: 560;
}

.hero-trust .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(102, 209, 255, 0.64);
  border-radius: 50%;
  color: var(--sky-400);
}

.hero-trust > i {
  height: 1px;
  background: rgba(216, 242, 255, 0.23);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 42px;
  left: calc(50% - 1px);
  display: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 135px);
  align-items: start;
}

.intro-copy > p {
  margin: 0 0 22px;
  color: var(--slate);
}

.intro-copy .lead {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  border-bottom: 1px solid rgba(16, 33, 58, 0.26);
  color: var(--navy-800);
  font-weight: 720;
  line-height: 2;
}

.text-link.light {
  border-color: rgba(216, 242, 255, 0.28);
  color: var(--sky-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 62px;
}

.service-card {
  min-height: 345px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 45px rgba(7, 20, 38, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e9f7ff;
  color: #0e80b8;
}

.icon-box .icon {
  width: 25px;
  height: 25px;
}

.card-number,
.service-index {
  color: #8ba0b4;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin: 34px 0 14px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--slate);
}

.service-card .text-link {
  margin-top: 25px;
  font-size: 0.88rem;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 140px);
}

.process-copy {
  position: sticky;
  top: 40px;
  align-self: start;
}

.process-copy .button {
  margin-top: 32px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 25px;
  padding: 0 0 35px;
}

.process-list li:not(:last-child) {
  margin-bottom: 35px;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid #c2d4e2;
  border-radius: 50%;
  color: #1289c0;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin: 0 0 9px;
  font-size: 1.3rem;
}

.process-list p {
  margin: 0;
  color: var(--slate);
}

.dark-feature {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 85%, rgba(28, 133, 186, 0.2), transparent 30%),
    linear-gradient(130deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.feature-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(216, 242, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(140deg, rgba(56, 189, 248, 0.09), rgba(7, 20, 38, 0.25));
  background-size: 32px 32px, 32px 32px, auto;
}

.feature-visual svg {
  position: absolute;
  inset: 8% 5%;
  width: 90%;
  height: 84%;
  fill: none;
  stroke: var(--sky-400);
  stroke-dasharray: 8 10;
  stroke-width: 2;
}

.feature-visual svg circle {
  fill: var(--sky-500);
  stroke: rgba(56, 189, 248, 0.4);
  stroke-width: 12;
}

.feature-pin,
.feature-world {
  position: absolute;
  z-index: 2;
  padding: 8px 13px;
  border: 1px solid rgba(216, 242, 255, 0.25);
  border-radius: 999px;
  background: rgba(7, 20, 38, 0.7);
  color: var(--sky-100);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.feature-pin {
  bottom: 17%;
  left: 6%;
}

.feature-world {
  top: 24%;
  right: 4%;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(56, 189, 248, 0.09);
  border-radius: 50%;
}

.orbit-one {
  inset: 12%;
}

.orbit-two {
  inset: 22%;
}

.feature-copy .eyebrow {
  color: var(--sky-400);
}

.feature-copy h2 {
  color: #fff;
}

.feature-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: rgba(229, 241, 250, 0.72);
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list .icon {
  margin-top: 2px;
  color: #1ba6e3;
}

.feature-copy .check-list {
  margin-bottom: 30px;
  color: rgba(240, 247, 253, 0.86);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.destination-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  overflow: hidden;
  padding: 25px;
  border-radius: var(--radius);
  color: #fff;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-card::before,
.destination-card::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.destination-card::before {
  inset: 0;
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.18), transparent 20%),
    repeating-radial-gradient(ellipse at 120% 100%, transparent 0 20px, rgba(255, 255, 255, 0.06) 21px 22px);
}

.destination-card::after {
  right: -40%;
  bottom: -32%;
  width: 105%;
  height: 62%;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-18deg);
}

.destination-card.coast {
  background: linear-gradient(155deg, #0a9cc5, #075074);
}

.destination-card.city {
  background: linear-gradient(155deg, #375c9c, #132c55);
}

.destination-card.nature {
  background: linear-gradient(155deg, #236f71, #0b333d);
}

.destination-card.business {
  background: linear-gradient(155deg, #415469, #0b1d31);
}

.destination-card:hover {
  box-shadow: 0 22px 48px rgba(7, 20, 38, 0.2);
  transform: translateY(-7px);
}

.destination-card > span {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  opacity: 0.74;
}

.destination-card p {
  margin: 0 0 7px;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.15em;
}

.destination-card h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 540;
  line-height: 1.2;
}

.destination-card > .icon {
  position: absolute;
  right: 23px;
  bottom: 25px;
}

.section-note {
  max-width: 900px;
  margin: 30px auto 0;
  color: #708295;
  font-size: 0.86rem;
  text-align: center;
}

.faq-section {
  background: #f8fbfe;
}

.faq-grid,
.faq-page-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid #ccdbe7;
}

.faq-item:first-child {
  border-top: 1px solid #ccdbe7;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  padding: 18px 2px;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 660;
  line-height: 1.4;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #a9bdcc;
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--navy-900);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: -4px 45px 26px 2px;
  color: var(--slate);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 50%, rgba(56, 189, 248, 0.18), transparent 25%),
    linear-gradient(120deg, var(--navy-950), #0c2947);
  color: #fff;
}

.cta-band::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding-block: clamp(74px, 8vw, 110px);
}

.cta-inner .eyebrow {
  color: var(--sky-400);
}

.cta-inner h2 {
  max-width: 700px;
  color: #fff;
}

.cta-inner > div:first-child > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(231, 242, 251, 0.72);
}

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 78px 0 25px;
  background: var(--navy-950);
  color: rgba(237, 246, 254, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 0.95fr 1.25fr;
  gap: 55px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand > p {
  max-width: 410px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.footer-contact a {
  display: flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  max-width: 100%;
}

.site-footer h2 {
  margin: 7px 0 21px;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 11px;
}

.site-footer nav a,
.footer-contact a {
  transition: color 0.2s ease;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  color: var(--sky-400);
}

.site-footer address {
  font-style: normal;
}

.site-footer .text-link {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 23px;
  border-top: 1px solid rgba(216, 242, 255, 0.11);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  padding-top: 132px;
  background:
    linear-gradient(90deg, rgba(3, 16, 34, 0.98), rgba(3, 16, 34, 0.78)),
    url("hero-midnight-sky.webp") center 48% / cover no-repeat;
  color: #fff;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000);
}

.page-hero-glow {
  position: absolute;
  right: -10%;
  bottom: -45%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(25, 155, 215, 0.18);
  filter: blur(60px);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 35px 0 75px;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 36px;
  color: rgba(237, 246, 254, 0.54);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.breadcrumbs a:hover {
  color: var(--sky-400);
}

.page-hero .eyebrow {
  margin-bottom: 15px;
  color: var(--sky-400);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 310;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.page-hero-inner > p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(233, 244, 255, 0.73);
  font-size: 1.08rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.metric-grid article {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.metric-grid span {
  color: #1796d0;
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.15em;
}

.metric-grid h3 {
  margin: 38px 0 12px;
  font-size: 1.45rem;
}

.metric-grid p {
  margin: 0;
  color: var(--slate);
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.content-card,
.stacked-cards article,
.prose-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.content-card {
  padding: clamp(38px, 6vw, 75px);
  background: linear-gradient(145deg, #f0faff, #fff 60%);
}

.content-card .eyebrow {
  margin-top: 38px;
}

.content-card p:last-child {
  margin: 25px 0 0;
  color: var(--slate);
}

.stacked-cards {
  display: grid;
  gap: 22px;
}

.stacked-cards article,
.prose-card {
  padding: 38px;
}

.stacked-cards h3,
.prose-card h2,
.prose-card h3 {
  margin: 0 0 12px;
}

.prose-card h3:not(:first-child) {
  margin-top: 30px;
}

.stacked-cards p,
.prose-card p {
  margin: 0;
  color: var(--slate);
}

.prose-card p + p {
  margin-top: 18px;
}

.prose-card .button {
  margin-top: 28px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(55px, 10vw, 150px);
  align-items: start;
}

.policy-layout .check-list {
  gap: 18px;
}

.policy-layout .check-list li {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.profile-card {
  padding: 34px;
  border: 1px solid #bcd4e5;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f5fbff, #fff);
  box-shadow: var(--shadow);
}

.profile-card dl {
  margin: 0;
}

.profile-card dl > div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.profile-card dl > div:last-child {
  border-bottom: 0;
}

.profile-card dt {
  color: var(--slate);
  font-size: 0.82rem;
}

.profile-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 610;
  overflow-wrap: anywhere;
}

.profile-card a {
  color: #087eaf;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.mini-card-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.mini-card-grid .icon {
  width: 28px;
  height: 28px;
  color: #118fc8;
}

.mini-card-grid h3 {
  margin: 22px 0 8px;
  font-size: 1.08rem;
}

.mini-card-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.notice {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 25px;
  padding: 30px;
  border: 1px solid #abd9ec;
  border-radius: var(--radius);
  background: #edfaff;
}

.notice > .icon {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 14px;
  background: #d6f2ff;
  color: #0b86b9;
}

.notice h2 {
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.notice p {
  margin: 0;
  color: var(--slate);
}

.service-detail-list {
  margin-top: 65px;
}

.service-detail {
  display: grid;
  grid-template-columns: 50px 64px minmax(0, 1fr);
  gap: 34px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--navy-900);
  color: var(--sky-400);
}

.service-icon .icon {
  width: 29px;
  height: 29px;
}

.service-detail h2 {
  margin: -7px 0 11px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 470;
  letter-spacing: -0.025em;
}

.service-detail p {
  max-width: 800px;
  margin: 0;
  color: var(--slate);
}

.service-detail .check-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-detail .check-list li {
  padding: 12px;
  border-radius: 10px;
  background: #f2f8fc;
  color: #31465a;
  font-size: 0.87rem;
}

.boundaries-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
}

.boundary-cards {
  display: grid;
  gap: 14px;
}

.boundary-cards article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.boundary-cards h3 {
  margin: 0 0 8px;
}

.boundary-cards p {
  margin: 0;
  color: var(--slate);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.journey-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius);
  color: #fff;
  isolation: isolate;
}

.journey-card::after {
  position: absolute;
  z-index: -1;
  right: -15%;
  bottom: -35%;
  width: 75%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.03), 0 0 0 80px rgba(255, 255, 255, 0.03);
  content: "";
}

.journey-card.blue { background: linear-gradient(145deg, #087da8, #06405f); }
.journey-card.cyan { background: linear-gradient(145deg, #256b99, #102f54); }
.journey-card.dusk { background: linear-gradient(145deg, #2a6a6a, #123339); }
.journey-card.slate { background: linear-gradient(145deg, #354d68, #0d2038); }

.journey-card > span {
  position: absolute;
  top: 28px;
  right: 30px;
  opacity: 0.55;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.journey-card > .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 65px;
  color: var(--sky-100);
}

.journey-card h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 480;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.journey-card p {
  max-width: 500px;
  color: rgba(242, 249, 255, 0.76);
}

.journey-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.journey-card li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
}

.number-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 23px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.number-list span {
  color: #138fc7;
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.14em;
}

.number-list p {
  margin: 0;
  color: var(--slate);
}

.number-list strong {
  color: var(--ink);
}

.guidance-intro {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.guidance-intro p {
  color: var(--slate);
}

.guidance-intro .lead {
  color: var(--ink);
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.guidance-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.guidance-grid h2 {
  margin: 28px 0 11px;
  font-size: 1.32rem;
}

.guidance-grid p {
  margin: 0;
  color: var(--slate);
}

.timeline-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 80px;
}

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  position: absolute;
  top: 6px;
  bottom: 18px;
  left: 7px;
  width: 1px;
  background: #a9c7d8;
  content: "";
}

.timeline article {
  position: relative;
  padding: 0 0 40px;
}

.timeline article::before {
  position: absolute;
  top: 5px;
  left: -36px;
  width: 15px;
  height: 15px;
  border: 4px solid var(--ice-50);
  border-radius: 50%;
  background: var(--sky-500);
  box-shadow: 0 0 0 1px #72bddc;
  content: "";
}

.timeline article > span {
  color: #1489bd;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.16em;
}

.timeline h3 {
  margin: 8px 0;
  font-size: 1.28rem;
}

.timeline p {
  margin: 0;
  color: var(--slate);
}

.faq-page-grid > aside {
  position: sticky;
  top: 40px;
}

.faq-page-grid > aside h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.faq-page-grid > aside > p:not(.eyebrow) {
  color: var(--slate);
}

.faq-page-grid > aside .button {
  margin-top: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.contact-methods > a,
.contact-methods > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-methods small {
  display: block;
  margin-bottom: 2px;
  color: var(--slate);
}

.contact-methods strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 0.96rem;
  line-height: 1.45;
}

.contact-note {
  margin-top: 40px;
  padding: 26px;
  border-radius: 18px;
  background: #f0f8fd;
}

.contact-note h3 {
  margin: 0;
}

.contact-note p {
  margin: 20px 0 0;
  color: var(--slate);
  font-size: 0.83rem;
}

.contact-form {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid #c7dce9;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin: 0 0 30px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 430;
  letter-spacing: -0.04em;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label:not(.consent) {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: #31485d;
  font-size: 0.82rem;
  font-weight: 680;
}

.contact-form label small {
  color: #728496;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c5d5e0;
  border-radius: 11px;
  background: #fbfdff;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 480;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 51px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #199ed8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 11px;
  align-items: start;
  margin: 19px 0 23px;
  color: var(--slate);
  font-size: 0.79rem;
  line-height: 1.55;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: #0b8bc4;
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-status {
  margin: 13px 0 0;
  color: #718192;
  font-size: 0.76rem;
  text-align: center;
}

.office-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  padding: clamp(35px, 6vw, 70px);
  border: 1px solid #c5ddea;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.office-card > div:first-child > .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  color: #128ac1;
}

.office-card address {
  margin-top: 22px;
  color: var(--slate);
  font-style: normal;
}

.office-card > div:last-child p {
  color: var(--slate);
}

.legal-section {
  padding-top: 75px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 800px);
  gap: clamp(60px, 10vw, 140px);
  justify-content: center;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 35px;
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbfd;
}

.legal-nav p {
  margin: 0 0 10px;
  color: #798b9c;
  font-size: 0.71rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 6px 0;
  color: #41566a;
  font-size: 0.87rem;
}

.legal-nav a:hover {
  color: #0b89c1;
}

.legal-copy {
  min-width: 0;
}

.legal-updated {
  display: inline-flex;
  margin: 0 0 28px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ecf8fe;
  color: #237397;
  font-size: 0.78rem;
  font-weight: 650;
}

.legal-copy > p:not(.legal-updated) {
  color: var(--slate);
  font-size: 1.04rem;
}

.legal-copy section {
  padding-top: 32px;
  scroll-margin-top: 25px;
}

.legal-copy h2 {
  margin: 0 0 15px;
  color: var(--navy-900);
  font-size: 1.55rem;
  line-height: 1.3;
}

.legal-copy h3 {
  margin: 24px 0 8px;
  font-size: 1.06rem;
}

.legal-copy p {
  margin: 0 0 15px;
  color: var(--slate);
}

.legal-copy a {
  color: #087fae;
  text-decoration: underline;
  text-decoration-color: rgba(8, 127, 174, 0.35);
  text-underline-offset: 3px;
}

.legal-copy .check-list {
  margin: 18px 0 22px;
  padding: 24px;
  border-radius: 16px;
  background: #f4f9fc;
}

.not-found {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 150px 0 70px;
  background: var(--navy-950);
  color: #fff;
}

.not-found-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 16, 34, 0.95), rgba(3, 16, 34, 0.48)),
    url("hero-midnight-sky.webp") center / cover no-repeat;
  opacity: 0.8;
}

.not-found-content {
  position: relative;
  z-index: 2;
}

.not-found-content h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 280;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.not-found-content > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(236, 246, 255, 0.72);
  font-size: 1.08rem;
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(7, 20, 38, 0.9);
  box-shadow: 0 12px 30px rgba(7, 20, 38, 0.22);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top .icon {
  transform: rotate(-90deg);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.js [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-scale {
  from { transform: scale(1.015); }
  to { transform: scale(1.045); }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    gap: 22px;
  }

  .header-cta {
    min-width: auto;
    margin-left: 22px;
  }

  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.8fr 0.9fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    padding-top: 25px;
    border-top: 1px solid rgba(216, 242, 255, 0.1);
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 38px, 760px);
  }

  .site-header {
    top: 16px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 30px);
    min-height: 62px;
    padding: 7px 13px 7px 17px;
    border-radius: 17px;
  }

  .brand {
    font-size: 0.8rem;
  }

  .brand-mark {
    width: 45px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(216, 242, 255, 0.25);
    border-radius: 12px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 20px;
    height: 1.5px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu[open] summary span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
  .mobile-menu[open] summary span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .mobile-menu nav {
    position: fixed;
    top: 91px;
    right: 15px;
    left: 15px;
    display: grid;
    gap: 2px;
    padding: 16px;
    border: 1px solid rgba(216, 242, 255, 0.2);
    border-radius: 18px;
    background: rgba(3, 16, 34, 0.98);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  }

  .mobile-menu nav a {
    padding: 13px 14px;
    border-radius: 10px;
    color: rgba(248, 251, 255, 0.8);
    font-weight: 600;
  }

  .mobile-menu nav a[aria-current="page"] {
    background: rgba(56, 189, 248, 0.11);
    color: var(--sky-400);
  }

  .mobile-menu nav .mobile-cta {
    margin-top: 7px;
    background: var(--sky-500);
    color: var(--navy-950);
    text-align: center;
  }

  .home-hero {
    min-height: 850px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(3, 16, 34, 0.98), rgba(3, 16, 34, 0.64)), linear-gradient(180deg, rgba(3, 16, 34, 0.28), rgba(3, 16, 34, 0.78));
  }

  .hero-content {
    padding: 155px 0 260px;
  }

  .hero-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .hero-trust > i {
    display: none;
  }

  .hero-trust > div {
    flex-direction: column;
    gap: 8px;
    white-space: normal;
    text-align: center;
  }

  .intro-grid,
  .process-grid,
  .split-feature,
  .faq-grid,
  .faq-page-grid,
  .policy-layout,
  .profile-grid,
  .boundaries-grid,
  .timeline-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-copy,
  .faq-page-grid > aside,
  .legal-nav {
    position: static;
  }

  .services-grid,
  .guidance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-visual {
    min-height: 360px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    gap: 55px;
  }

  .service-detail .check-list {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-nav p {
    grid-column: 1 / -1;
  }

  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 30px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 78px 0;
  }

  .compact-section {
    padding-top: 20px;
  }

  .brand {
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .brand-mark {
    width: 39px;
  }

  .home-hero {
    min-height: 800px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(3, 16, 34, 0.99), rgba(3, 16, 34, 0.72)), linear-gradient(180deg, rgba(3, 16, 34, 0.15), rgba(3, 16, 34, 0.9));
  }

  .hero-content {
    align-self: start;
    padding-top: 175px;
    padding-bottom: 250px;
  }

  .hero-content h1 {
    font-size: clamp(3.4rem, 16vw, 4.7rem);
    line-height: 0.94;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-pill {
    margin-top: 20px;
  }

  .hero-trust {
    bottom: 24px;
    gap: 8px;
  }

  .hero-trust .icon {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .hero-trust span {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .section-heading h2,
  .cta-inner h2,
  .content-card h2,
  .feature-copy h2,
  .office-card h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .services-grid,
  .destination-grid,
  .guidance-grid,
  .journey-grid,
  .mini-card-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 18px;
  }

  .process-list > li > span {
    width: 43px;
    height: 43px;
  }

  .feature-visual {
    min-height: 300px;
  }

  .destination-card {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .page-hero {
    min-height: 480px;
    padding-top: 105px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .page-hero-inner {
    padding-bottom: 45px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .metric-grid article,
  .journey-card,
  .guidance-grid article {
    padding: 28px;
  }

  .content-card,
  .stacked-cards article,
  .prose-card {
    padding: 28px;
  }

  .profile-card {
    padding: 25px;
  }

  .profile-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .notice {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 42px 1fr;
    gap: 22px;
  }

  .service-detail .service-icon {
    grid-column: 2;
    grid-row: 1;
  }

  .service-detail > div:last-child {
    grid-column: 1 / -1;
  }

  .service-detail h2 {
    margin-top: 0;
  }

  .timeline-wrap {
    gap: 45px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    border-radius: 22px;
  }

  .office-card {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .legal-nav {
    display: none;
  }

  .legal-section {
    padding-top: 55px;
  }

  .back-to-top {
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 390px) {
  .brand span {
    max-width: 128px;
  }

  .header-inner {
    width: calc(100% - 20px);
  }

  .mobile-menu nav {
    right: 10px;
    left: 10px;
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }

  .hero-trust span {
    font-size: 0.61rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > * {
    grid-column: 1 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .back-to-top,
  .legal-nav {
    display: none !important;
  }

  .page-hero {
    min-height: auto;
    padding: 40px 0;
    background: #fff;
    color: #000;
  }

  .page-hero h1,
  .page-hero .eyebrow,
  .page-hero-inner > p:last-child {
    color: #000;
  }

  .section {
    padding: 35px 0;
  }

  body {
    color: #000;
  }
}
