:root {
  --navy: #021e2d;
  --navy-soft: #082a3a;
  --green: #0a7c67;
  --green-dark: #075f50;
  --green-deep: #075548;
  --mint: #73d1bb;
  --ink: #27383d;
  --ink-soft: #4a5d62;
  --paper: #f4f6f5;
  --paper-2: #eef2f1;
  --white: #ffffff;
  --line: rgba(2, 30, 45, 0.08);
  --line-dark: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 50px rgba(2, 30, 45, 0.12);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
  --max: 1180px;
  --header: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--white);
  line-height: 1.55; font-size: 16px; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.wrap-wide { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 4px; border: 1px solid transparent;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: background .25s var(--ease), border-color .25s, transform .25s var(--ease), box-shadow .25s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(10,124,103,.35); }
.btn-green::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: btn-shine 4.8s ease-in-out infinite;
  pointer-events: none;
}
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: rgba(2,30,45,.2); }
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }
.btn-block { width: 100%; height: 54px; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-long {
  white-space: normal; height: auto; min-height: 48px;
  padding: 14px 20px; text-align: center; line-height: 1.45;
  max-width: 46ch; letter-spacing: .02em; text-transform: none; font-weight: 650;
}

.header {
  position: sticky; top: 0; z-index: 50; height: var(--header);
  background: rgba(2, 30, 45, .94); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark); overflow: visible;
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; color: #fff; flex: none; }
.header.is-scrolled { box-shadow: 0 12px 32px rgba(0,0,0,.28); }
.logo-mark {
  width: 36px; height: 36px; border-radius: 4px;
  background: linear-gradient(160deg, var(--green) 0%, var(--navy-soft) 100%);
  display: grid; place-items: center; border: 1px solid rgba(115,209,187,.35);
  animation: mark-glow 5s ease-in-out infinite;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--serif); font-weight: 500; font-size: 18px; letter-spacing: .04em; }
.logo-text span { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--mint); font-weight: 600; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500; }
.nav a:hover { color: #fff; }
.header .btn { height: 42px; padding: 0 16px; font-size: 12px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line-dark);
  background: transparent; color: #fff; border-radius: 4px; cursor: pointer;
}

.hero {
  background: var(--navy); color: #fff;
  display: grid; grid-template-columns: 1.05fr .95fr;
  min-height: min(720px, calc(100vh - var(--header)));
  overflow: hidden;
}
.hero-copy { padding: 72px 0; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.hero-copy-inner { width: min(620px, 100%); margin-left: auto; padding: 0 40px 0 24px; }
.kicker, .eyebrow {
  color: var(--mint); font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 22px;
}
.eyebrow { color: var(--green); margin-bottom: 14px; }
.section-navy .eyebrow { color: var(--mint); }
.hero h1 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.12; letter-spacing: -.02em; margin-bottom: 22px; color: #fff;
}
.hero h1 em { font-family: var(--serif); font-style: italic; color: var(--mint); font-weight: 450; }
.hero-lead { color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.65; max-width: 52ch; }
.hero-lead + .hero-lead { margin-top: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 18px; }
.hero-note { font-size: 12px; color: rgba(255,255,255,.5); max-width: 52ch; line-height: 1.5; }
.hero-visual { position: relative; min-height: 560px; overflow: hidden; }
.hero-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: 55% 30%;
  animation: kenburns 32s ease-in-out infinite alternate;
}
.hero-card {
  position: absolute; left: 28px; bottom: 28px; width: min(320px, calc(100% - 40px));
  background: rgba(2, 30, 45, .88); backdrop-filter: blur(10px);
  border: 1px solid rgba(115,209,187,.18); padding: 18px 16px;
  display: grid; grid-template-columns: 40px 1fr; gap: 12px; z-index: 2;
  animation: card-in 1s var(--ease) .4s both;
}
.hero-card .ic {
  width: 40px; height: 40px; border-radius: 4px; background: rgba(10,124,103,.25);
  color: var(--mint); display: grid; place-items: center;
}
.hero-card h3 { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--mint); font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.hero-card p { font-size: 13.5px; color: rgba(255,255,255,.86); line-height: 1.45; }

.features { background: #fff; border-bottom: 1px solid var(--line); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature {
  padding: 28px 22px 30px; border-right: 1px solid var(--line);
  display: grid; grid-template-columns: 42px 1fr; gap: 14px;
  transition: background .3s var(--ease);
}
.feature:hover { background: var(--paper); }
.feature .ic { color: var(--green); margin-top: 2px; transition: transform .4s var(--ease); }
.feature:hover .ic { transform: translateY(-3px); }
.feature:last-child { border-right: 0; }
.feature h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.feature p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.ribbon {
  background: linear-gradient(90deg, var(--green-deep), var(--green) 40%, var(--mint) 50%, var(--green) 60%, var(--green-deep));
  background-size: 200% 100%;
  animation: ribbon-shift 10s linear infinite;
  color: #fff; text-align: center; padding: 14px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}

.section { padding: 88px 0; overflow: hidden; }
.section-paper { background: var(--paper); }
.section-navy { background: var(--navy); color: #fff; }
h2 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.18; letter-spacing: -.02em; color: var(--navy); max-width: 18ch;
}
.section-navy h2 { color: #fff; }
.lead { margin-top: 16px; color: var(--ink-soft); font-size: 17px; max-width: 62ch; line-height: 1.65; }
.section-navy .lead { color: rgba(255,255,255,.78); }
.section-head { margin-bottom: 48px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; padding: 28px 26px 30px; border: 1px solid var(--line); border-radius: 4px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { font-family: var(--serif); font-size: 28px; color: var(--green); font-weight: 500; margin-bottom: 14px; }
.step h3 { font-size: 20px; font-family: var(--serif); font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.note-bar {
  margin-top: 22px; padding: 14px 18px; background: rgba(10,124,103,.08); color: var(--green-deep);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-align: center; border-radius: 4px;
}

.sit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sit {
  background: #fff; border: 1px solid var(--line); padding: 26px 24px 22px;
  display: flex; flex-direction: column; min-height: 240px; border-radius: 4px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sit:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sit-idx { font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--green); margin-bottom: 16px; }
.sit h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
.sit p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; flex: 1; }
.sit .btn { margin-top: 18px; align-self: flex-start; height: 40px; font-size: 11px; }
.warn {
  margin-top: 28px; background: var(--navy); color: #fff; padding: 28px 32px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; border-radius: 4px;
}
.warn h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.warn p { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.6; }
.warn p + p { margin-top: 8px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.panel { background: #fff; border: 1px solid var(--line); padding: 32px; border-radius: 4px; }
.panel h3 { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; color: var(--green); margin-bottom: 18px; }
.check li { position: relative; padding: 10px 0 10px 32px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 500; }
.check li:last-child { border-bottom: 0; }
.check li::before {
  content: ""; position: absolute; left: 0; top: 14px; width: 16px; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a7c67' stroke-width='2.4'><path d='M5 13l4 4L19 7'/></svg>") center/16px no-repeat;
}
.panel-note { margin-top: 18px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

.remote { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.remote > div { min-width: 0; }
.remote-media {
  position: relative; overflow: hidden; isolation: isolate;
  height: 460px; max-height: 70vh; border-radius: 4px; background: #f3efe6;
}
.remote-media .map {
  width: 100%; height: 100%; max-width: none; object-fit: cover; display: block;
}
.remote-media .portrait {
  position: absolute; right: 16px; bottom: 16px;
  width: min(42%, 210px); height: auto; max-height: 68%;
  aspect-ratio: 3/4; object-fit: cover;
  border-radius: 4px; border: 5px solid #fff; box-shadow: var(--shadow);
  animation: portrait-float 7s ease-in-out infinite;
}
.two-cards { display: grid; gap: 16px; margin-top: 28px; }
.mini { background: #fff; border: 1px solid var(--line); padding: 22px; border-radius: 4px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.mini:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mini h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.mini p { color: var(--ink-soft); font-size: 14.5px; }

.timeline { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.timeline > div { min-width: 0; }
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 8px 16px; padding-bottom: 26px; position: relative; }
.tl-item:not(:last-child)::before { content: ""; position: absolute; left: 19px; top: 40px; bottom: 0; width: 1px; background: rgba(10,124,103,.25); }
.tl-n {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--green); color: var(--green);
  display: grid; place-items: center; font-weight: 800; font-size: 13px; background: #fff;
}
.tl-item h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--navy); }
.tl-item p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.photo-frame {
  overflow: hidden; border-radius: 4px; height: 520px; max-height: min(70vh, 640px);
}
.photo-frame img {
  width: 100%; height: 100%; max-width: none; object-fit: cover;
  transition: transform 8s var(--ease);
}
.photo-frame:hover img { transform: scale(1.06); }

.routes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.route { background: #fff; border: 1px solid var(--line); padding: 28px; border-radius: 4px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.route:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(10,124,103,.35); }
.route .idx { color: var(--green); font-weight: 800; font-size: 12px; letter-spacing: .14em; margin-bottom: 12px; }
.route h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.route p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.fineprint { margin-top: 18px; color: var(--ink-soft); font-size: 13.5px; }

.threshold {
  display: grid; grid-template-columns: .7fr 1.3fr; gap: 32px; align-items: center;
  background: var(--navy); color: #fff; padding: 48px; border-radius: 4px;
}
.threshold .big { font-family: var(--serif); font-size: clamp(52px, 7vw, 84px); font-weight: 500; color: var(--mint); line-height: .9; }
.threshold .big span { display: block; font-size: 16px; letter-spacing: .16em; text-transform: uppercase; margin-top: 12px; color: #fff; font-family: var(--sans); font-weight: 700; }
.threshold p { color: rgba(255,255,255,.78); font-size: 15.5px; line-height: 1.65; }
.threshold p + p { margin-top: 12px; }

.fees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fee { background: #fff; border: 1px solid var(--line); padding: 28px 26px; border-radius: 4px; min-height: 260px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.fee:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fee.featured { background: var(--navy); color: #fff; border-color: var(--navy); }
.fee h3 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: var(--green); margin-bottom: 14px; }
.fee.featured h3 { color: var(--mint); }
.fee .pct { font-family: var(--serif); font-size: 42px; color: var(--navy); font-weight: 500; margin-bottom: 12px; }
.fee.featured .pct { color: #fff; }
.fee p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.fee.featured p { color: rgba(255,255,255,.78); }
.fee p + p { margin-top: 10px; }
.no-hidden { margin-top: 22px; text-align: center; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--green); font-size: 12px; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.trust-item { background: #fff; border: 1px solid var(--line); padding: 22px; border-radius: 4px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-item h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin: 10px 0 8px; }
.trust-item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.trust-item .ic { color: var(--green); }
.company-box {
  background: var(--navy); color: #fff; padding: 28px 32px; border-radius: 4px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 32px;
}
.company-box dt { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); font-weight: 700; }
.company-box dd { font-size: 15px; margin-bottom: 8px; }
.lock-note { margin-top: 18px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green-deep); text-align: center; }
.lock-note a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

.docs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.docs-layout > div { min-width: 0; }
.doc-list { display: grid; gap: 10px; }
.doc-item {
  display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start;
  background: #fff; border: 1px solid var(--line); padding: 14px 16px; border-radius: 4px;
}
.doc-item strong { display: block; color: var(--navy); font-size: 14.5px; }
.doc-item span { color: var(--ink-soft); font-size: 13px; line-height: 1.45; }
.doc-item .ic { color: var(--green); margin-top: 2px; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.person { background: #fff; border: 1px solid var(--line); padding: 28px 24px; border-radius: 4px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.person .n { color: var(--green); font-weight: 800; font-size: 12px; letter-spacing: .14em; margin-bottom: 12px; }
.person h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.person p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }
.about-prose p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.7; max-width: 70ch; }
.about-prose p + p { margin-top: 14px; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 36px 18px 0; font-size: 17px; font-weight: 700; color: var(--navy);
  position: relative; font-family: var(--sans);
}
.faq-item button::after { content: "+"; position: absolute; right: 0; top: 16px; color: var(--green); font-size: 22px; font-weight: 400; }
.faq-item.is-open button::after { content: "–"; }
.faq-item .ans { display: none; padding: 0 8px 18px 0; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.faq-item.is-open .ans { display: block; }

.consult { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--navy); color: #fff; overflow: hidden; }
.consult-copy { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; min-height: 640px; }
.consult-copy img {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: 40% 20%;
  animation: kenburns 36s ease-in-out infinite alternate;
}
.consult-copy::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,30,45,.4) 0%, rgba(2,30,45,.88) 55%, rgba(2,30,45,.96) 100%);
}
.consult-copy-inner { position: relative; z-index: 1; padding: 48px 40px; }
.consult-copy h2, .consult h2 { color: #fff; max-width: 14ch; }
.consult .lead { color: rgba(255,255,255,.86); }
.consult .eyebrow { color: var(--mint); }
.consult-points { margin-top: 22px; display: grid; gap: 10px; }
.consult-points li { padding-left: 28px; position: relative; color: rgba(255,255,255,.86); font-size: 14.5px; }
.consult-points li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2373d1bb' stroke-width='2.4'><path d='M5 13l4 4L19 7'/></svg>") center/16px no-repeat;
}
.consult-form-wrap { padding: 48px 36px; background: #f4f6f8; min-width: 0; overflow: hidden; display: flex; align-items: center; }
.form-card { width: min(520px, 100%); }
.form-card-light {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 28px 26px 24px;
  box-shadow: 0 18px 50px rgba(2, 30, 45, 0.08);
}
.form-stack { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0; margin-bottom: 7px; color: #2a303b; }
.field .req { color: #c0392b; font-weight: 700; }
.form-card-light .field input,
.form-card-light .field select,
.form-card-light .field textarea {
  width: 100%; background: #fff; border: 1px solid #d7dde3;
  color: #1a1a1a; border-radius: 6px; padding: 13px 14px; font-size: 15px; outline: none;
}
.form-card-light .field textarea { min-height: 120px; resize: vertical; }
.form-card-light .field input:focus,
.form-card-light .field select:focus,
.form-card-light .field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(2, 30, 45, .08);
}
.form-card-light .field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%232a303b' stroke-width='1.6' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
  color: #4a5560;
}
.form-card-light .field select option { color: var(--navy); }
.form-card-light .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #4a5560; line-height: 1.5; font-weight: 500; }
.form-card-light .consent input { margin-top: 3px; accent-color: var(--navy); width: 16px; height: 16px; flex: none; }
.form-card-light .consent a { color: var(--navy); text-decoration: underline; }
.form-card-light .form-note { margin-top: 12px; font-size: 12px; color: #8a939c; line-height: 1.5; }
.form-card-light .btn-navy {
  background: var(--navy); color: #fff; letter-spacing: .02em;
  text-transform: none; font-size: 15px; height: 52px;
}
.form-card-light .btn-navy:hover { background: #03293c; transform: none; box-shadow: none; }
.form-card-light .btn-navy::after { display: none; }
.form-card-light .iti,
.form-card-light .iti input[type="tel"] { width: 100%; }
.form-card-light .iti__country-container { z-index: 4; }

.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  color: #fff; border-radius: 4px; padding: 12px 14px; font-size: 15px; outline: none;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(115,209,187,.22);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2373d1bb' stroke-width='1.6' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field select option { color: var(--navy); }
.field .hint { display: block; margin-top: 5px; font-size: 11px; color: rgba(255,255,255,.45); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.45; }
.consent input { margin-top: 3px; accent-color: var(--green); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--mint); text-decoration: underline; }
.form-note { margin-top: 12px; font-size: 12.5px; color: rgba(255,255,255,.5); }

.guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guide { background: #fff; border: 1px solid var(--line); padding: 24px; border-radius: 4px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.guide:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.guide h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.guide p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.guide p + p { margin-top: 10px; }

.footer { background: #01151f; color: rgba(255,255,255,.78); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr 1.1fr; gap: 36px; margin-bottom: 36px; }
.footer h3 { color: #fff; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; font-weight: 800; }
.footer p, .footer li, .footer address { font-size: 14px; line-height: 1.65; font-style: normal; }
.footer a:hover { color: var(--mint); }
.footer-links { display: grid; gap: 8px; }
.footer-map { width: 100%; height: 220px; border: 0; border-radius: 4px; filter: grayscale(.25) contrast(1.05); }
.footer-meta {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.5);
}
.legal-row { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.legal-row a { color: rgba(255,255,255,.62); }
.footer-disc { margin-top: 16px; font-size: 12.5px; color: rgba(255,255,255,.45); max-width: 90ch; line-height: 1.55; }

.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80;
  background: #fff; color: var(--ink); border-radius: 6px; box-shadow: 0 20px 50px rgba(0,0,0,.22);
  padding: 18px 20px; display: none; max-width: 720px; margin: 0 auto; gap: 16px;
}
.cookie.is-on { display: flex; }
.cookie p { font-size: 13.5px; line-height: 1.5; flex: 1; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie .btn { height: 38px; font-size: 11px; padding: 0 12px; }

.legal-hero { background: var(--navy); color: #fff; padding: 72px 0 48px; }
.legal-hero h1 { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 500; }
.legal-body { padding: 56px 0 88px; }
.legal-body h2 { font-size: 26px; margin: 32px 0 12px; max-width: none; }
.legal-body h3 { font-size: 18px; margin: 22px 0 8px; color: var(--navy); }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; max-width: 78ch; }
.legal-body ul { margin: 8px 0 16px 18px; list-style: disc; }
.legal-body a { color: var(--green); text-decoration: underline; }
a[href^="tel:"], a[href^="mailto:"] { white-space: nowrap; }
.map-lg { width: 100%; height: 360px; border: 0; border-radius: 4px; margin: 24px 0; }

.thanks { min-height: 100vh; background: var(--navy); color: #fff; display: grid; place-items: center; padding: 40px 20px; }
.thanks-card { width: min(560px, 100%); text-align: center; }
.thanks-card h1 { font-family: var(--serif); font-size: 42px; font-weight: 500; margin: 16px 0; }
.thanks-card p { color: rgba(255,255,255,.78); line-height: 1.65; }

@media (max-width: 1100px) {
  .hero, .consult, .remote, .timeline, .docs-layout, .faq-layout, .footer-grid, .threshold { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-copy { padding: 48px 0 36px; }
  .hero-copy-inner { margin: 0 auto; padding: 0 28px; width: min(720px, 100%); }
  .hero-visual { min-height: 340px; }
  .features-grid, .steps, .sit-grid, .fees, .trust-grid, .team, .guides { grid-template-columns: 1fr 1fr; }
  .feature { border-bottom: 1px solid var(--line); }
  .consult-copy { min-height: 360px; }
  .company-box { grid-template-columns: 1fr; }
  .warn { grid-template-columns: 1fr; }
  .remote-media, .photo-frame { height: 360px; max-height: 50vh; }
  h2 { max-width: none; }
}
@media (max-width: 760px) {
  .wrap, .wrap-wide { width: calc(100% - 28px); }
  .header { height: 64px; }
  .nav { display: none; }
  .header .header-inner > .btn { display: none; }
  .header.is-open { height: auto; }
  .header.is-open .header-inner { flex-wrap: wrap; height: auto; padding: 12px 0 18px; }
  .header.is-open .nav {
    display: flex; flex-direction: column; position: static; width: 100%;
    padding: 12px 0 0; align-items: flex-start; gap: 14px; order: 3;
  }
  .header.is-open .header-inner > .btn { display: inline-flex; width: 100%; order: 4; margin-top: 8px; }
  .nav-toggle { display: grid; place-items: center; }
  .features-grid, .steps, .sit-grid, .fees, .trust-grid, .team, .guides, .split, .routes, .form-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; line-height: 1.18; margin-bottom: 16px; }
  .hero-copy { padding: 28px 0 24px; }
  .hero-copy-inner { padding: 0 16px; }
  .hero-lead { font-size: 15.5px; line-height: 1.7; }
  .hero-lead + .hero-lead { margin-top: 14px; }
  .hero-note { font-size: 12.5px; line-height: 1.6; }
  .hero-visual { min-height: 260px; }
  .hero-card {
    left: 16px; right: 16px; bottom: 16px; width: auto; max-width: none;
    padding: 14px 14px 14px 12px; gap: 10px; align-items: start;
  }
  .hero-card .ic { width: 36px; height: 36px; }
  .hero-card h3 { font-size: 11px; letter-spacing: .1em; line-height: 1.45; margin-bottom: 4px; }
  .hero-card p { font-size: 13px; line-height: 1.4; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin: 22px 0 16px; }
  .hero-actions .btn { width: 100%; max-width: none; }
  .hero-actions .btn-long { padding: 14px 16px; font-size: 13.5px; letter-spacing: .01em; line-height: 1.45; font-weight: 600; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
  .sit { min-height: 0; }
  .fee { min-height: 0; }
  .feature { grid-template-columns: 36px 1fr; padding: 18px 4px; border-right: 0; }
  .remote-media { height: 240px; max-height: 240px; }
  .remote-media .portrait { width: 38%; max-height: 72%; right: 10px; bottom: 10px; border-width: 3px; }
  .photo-frame { height: 240px; max-height: 240px; }
  .consult-copy { min-height: 280px; }
  .consult-copy-inner { padding: 24px 20px; }
  .consult-copy h2, .consult h2 { font-size: 28px; max-width: none; color: #fff; }
  .consult-form-wrap { padding: 24px 16px 36px; }
  .form-card { width: 100%; }
  .form-card-light { padding: 22px 16px 18px; }
  .threshold { padding: 24px 18px; }
  .threshold .big { font-size: 48px; }
  .warn { padding: 22px; }
  .panel { padding: 22px; }
  .cookie { flex-direction: column; left: 10px; right: 10px; bottom: 10px; }
  .cookie .btn { width: 100%; }
  .footer { padding: 40px 0 24px; }
  .footer-meta { flex-direction: column; }
  .footer-map { height: 180px; }
  .legal-hero { padding: 36px 0 28px; }
  .legal-hero h1 { font-size: 32px; }
  .btn { white-space: normal; height: auto; min-height: 48px; padding: 12px 16px; text-align: center; }
  .logo-text span { display: none; }
}
@media (max-width: 480px) {
  .wrap, .wrap-wide { width: calc(100% - 32px); }
  .hero-copy-inner { padding: 0 16px; }
  .kicker, .eyebrow { font-size: 10px; letter-spacing: .1em; line-height: 1.5; }
  .hero h1 { font-size: 26px; }
  .hero-card { left: 12px; right: 12px; bottom: 12px; }
  .hero-card h3 { font-size: 10px; letter-spacing: .08em; }
  .hero-card p { font-size: 12.5px; }
  .sit .btn { width: 100%; justify-content: center; }
  .warn .btn { width: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--d, 0ms);
}

@keyframes kenburns {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-2.4%, 1.6%, 0); }
}
@keyframes btn-shine {
  0%, 55% { transform: translateX(-130%); }
  75%, 100% { transform: translateX(130%); }
}
@keyframes ribbon-shift {
  0% { background-position: 0 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes mark-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(115,209,187,.0); }
  50% { box-shadow: 0 0 18px 2px rgba(115,209,187,.35); }
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes portrait-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-visual img,
  .consult-copy img,
  .btn-green::after,
  .ribbon,
  .logo-mark,
  .hero-card,
  .remote-media .portrait {
    animation: none !important;
  }
  .btn-green:hover,
  .sit:hover, .step:hover, .route:hover, .fee:hover, .guide:hover, .person:hover, .trust-item:hover, .mini:hover {
    transform: none;
  }
  .photo-frame:hover img { transform: none; }
}
