:root {
  --pine: #0e3028;
  --pine-deep: #071d18;
  --pine-line: #31564b;
  --paper: #f7f5ef;
  --paper-dark: #e9e9e0;
  --ink: #16211f;
  --muted: #66716c;
  --gold: #d5a33d;
  --white: #fff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}
* {
  box-sizing: border-box;
}
::selection {
  background: var(--gold);
  color: var(--pine-deep);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--pine-deep);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1160px, calc(100% - 72px));
  margin: 0 auto;
}
.section-dark {
  background: var(--pine);
  color: var(--paper);
}
.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  color: var(--paper);
  transition:
    background 0.55s ease,
    box-shadow 0.55s ease;
}
.site-header.scrolled {
  position: fixed;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}
.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid rgba(231, 237, 232, 0.2);
  transition:
    min-height 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    margin-top 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.65s ease,
    box-shadow 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-header.scrolled .nav-wrap {
  width: min(1080px, calc(100% - 48px));
  min-height: 66px;
  margin-top: 14px;
  padding: 0 19px;
  border: 1px solid rgba(213, 163, 61, 0.38);
  border-radius: 18px;
  background: rgba(7, 29, 24, 0.88);
  box-shadow:
    0 18px 45px rgba(7, 29, 24, 0.23),
    inset 0 1px 0 rgba(247, 245, 239, 0.08);
  backdrop-filter: blur(16px) saturate(1.08);
  pointer-events: auto;
  animation: headerDock 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes headerDock {
  0% {
    opacity: 0;
    transform: translateY(-18px) scale(0.94);
    border-radius: 30px;
    filter: blur(3px);
  }
  55% {
    opacity: 1;
    transform: translateY(3px) scale(1.015);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-radius: 18px;
  }
}
.site-header.scrolled .brand img {
  transform: scale(0.94);
  transform-origin: left center;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-header.scrolled .site-nav {
  gap: 26px;
  transition: gap 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-header.scrolled .nav-wrap::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.brand {
  font-family: var(--serif);
  font-size: 1.43rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.brand img {
  display: block;
  width: 154px;
  height: auto;
}
.footer-brand img {
  width: 176px;
}
.brand span {
  font-style: normal;
}
.brand em {
  color: var(--gold);
  font-style: italic;
}
.brand sup {
  font: 500 0.45rem var(--mono);
  color: var(--gold);
  margin-left: 4px;
  vertical-align: top;
}
.site-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: 42px;
  font-size: 0.82rem;
  color: #d5e0da;
}
.site-nav a {
  position: relative;
  padding: 5px 0;
}
.site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.site-nav a:hover:after {
  right: 0;
}
.site-nav a:focus-visible,
.phone-link:focus-visible,
.brand:focus-visible,
.button:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
.phone-link {
  font: 500 0.76rem var(--mono);
  color: var(--gold);
  white-space: nowrap;
}
.phone-link span {
  font-size: 1rem;
  margin-left: 5px;
}
.mobile-nav-call {
  display: none;
}
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 29, 24, 0.72);
  backdrop-filter: blur(8px);
}
.booking-modal-backdrop.is-hidden {
  display: none;
}
.booking-modal {
  width: min(100%, 980px);
  max-height: min(92svh, 860px);
  overflow: auto;
  padding: 24px 28px 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(7, 29, 24, 0.3);
}
.booking-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.booking-header .eyebrow {
  margin-bottom: 14px;
}
.booking-header h2 {
  margin: 0;
  font: 500 2.2rem/1 var(--serif);
}
.booking-close {
  width: 44px;
  height: 44px;
  border: 1px solid #bdc7bf;
  background: transparent;
  color: var(--pine);
  font-size: 1.6rem;
  cursor: pointer;
}
.booking-copy {
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--muted);
}
.calendly-inline-widget {
  min-width: 320px;
  height: 680px;
  margin-top: 8px;
}
.calendly-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
  color: var(--muted);
  font: 500 0.68rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.calendly-loading i {
  width: 18px;
  height: 18px;
  border: 2px solid #bdc7bf;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: calendlySpinner 0.8s linear infinite;
}
@keyframes calendlySpinner {
  to {
    transform: rotate(360deg);
  }
}
.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.booking-fields label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font: 500 0.68rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-fields input,
.booking-fields select {
  min-height: 48px;
  border: 1px solid #bdc7bf;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: 400 0.9rem var(--sans);
}
.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #bdc7bf;
  color: var(--muted);
  font: 500 0.68rem var(--mono);
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--paper);
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin: 5px;
}
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  padding: 122px 0 54px;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  position: relative;
}
.hero-copy {
  max-width: 720px;
}
.eyebrow {
  font: 500 0.68rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 23px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1,
.section-intro h2,
.expertise-copy h2,
.closing-inner h2 {
  font: 500 clamp(3.6rem, 6.2vw, 6.7rem)/0.98 var(--serif);
  letter-spacing: -0.065em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(4.2rem, 7.2vw, 7.5rem);
}
.hero h1 i,
.section-intro h2 i,
.expertise-copy h2 i,
.closing-inner h2 i {
  font-style: italic;
  color: var(--gold);
}
.hero-lede {
  max-width: 560px;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.7;
  color: #d3ded7;
  margin: 30px 0 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 15px 20px;
  font-size: 0.81rem;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.button span,
.text-link span,
.situation-card a span,
.fee-card a span,
.article-card a span {
  font-size: 1.1rem;
}
.button:hover {
  transform: translateY(-3px);
}
.button-gold {
  background: var(--gold);
  color: var(--pine-deep);
}
.button-gold:hover {
  background: #e5b956;
}
.button-outline {
  border: 1px solid var(--pine-line);
  color: var(--paper);
}
.text-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--paper);
  display: inline-flex;
  gap: 13px;
  align-items: center;
}
.hero-aside {
  position: relative;
  width: 100%;
  min-height: 330px;
}
.hero-visual {
  position: absolute;
  inset: 0;
  padding: 22px 26px;
  border: 1px solid rgba(213, 163, 61, 0.22);
  background: linear-gradient(
    145deg,
    rgba(24, 72, 59, 0.72),
    rgba(7, 29, 24, 0.72)
  );
  box-shadow:
    inset 0 0 90px rgba(7, 29, 24, 0.32),
    0 30px 80px rgba(0, 0, 0, 0.12);
  background-image:
    linear-gradient(rgba(247, 245, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 245, 239, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(24, 72, 59, 0.72), rgba(7, 29, 24, 0.72));
  background-size:
    38px 38px,
    38px 38px,
    auto;
}
.hero-visual-head {
  display: flex;
  justify-content: space-between;
  color: #91a89f;
  font: 500 0.56rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-signal {
  display: grid;
  grid-template-columns: 1fr minmax(100px, 0.8fr) 1fr;
  align-items: center;
  min-height: 235px;
  margin-top: 14px;
  border-top: 1px solid rgba(247, 245, 239, 0.16);
  border-bottom: 1px solid rgba(247, 245, 239, 0.16);
}
.signal-country {
  position: relative;
}
.signal-country span,
.signal-country small {
  display: block;
  color: #9db3a8;
  font: 500 0.58rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.signal-country strong {
  display: block;
  margin: 12px 0 7px;
  color: var(--paper);
  font: 500 clamp(3.6rem, 7vw, 5.8rem)/0.78 var(--serif);
  letter-spacing: -0.09em;
}
.signal-country small {
  color: var(--gold);
  letter-spacing: 0.04em;
}
.signal-country em {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font: 500 0.55rem var(--mono);
  letter-spacing: 0.08em;
  font-style: normal;
}
.signal-uk {
  text-align: right;
}
.signal-connector {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font: 500 0.48rem var(--mono);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.signal-connector i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.signal-connector i:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.signal-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-top: 14px;
  color: #9db3a8;
  font: 500 0.58rem var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.signal-footer strong {
  color: var(--paper);
  font: italic 1rem var(--serif);
  letter-spacing: 0;
  text-transform: none;
}
.dossier-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: center;
  min-height: 300px;
  margin-top: 15px;
}
.dossier {
  position: relative;
  min-height: 245px;
  padding: 24px 20px;
  border: 1px solid rgba(247, 245, 239, 0.28);
  background: rgba(247, 245, 239, 0.06);
  transform: rotate(-3deg);
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}
.dossier-uk {
  transform: rotate(3deg);
  border-color: rgba(213, 163, 61, 0.45);
}
.hero-visual:hover .dossier-us {
  transform: rotate(-5deg) translateY(-7px);
  border-color: rgba(213, 163, 61, 0.7);
}
.hero-visual:hover .dossier-uk {
  transform: rotate(5deg) translateY(7px);
  background: rgba(213, 163, 61, 0.1);
}
.dossier-index {
  color: var(--gold);
  font: 500 0.58rem var(--mono);
  letter-spacing: 0.1em;
}
.dossier strong {
  display: block;
  margin-top: 45px;
  color: var(--paper);
  font: 500 clamp(1.45rem, 3vw, 2.1rem)/1 var(--serif);
}
.dossier-code {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--paper);
  font: 500 0.62rem var(--mono);
  letter-spacing: 0.08em;
}
.dossier-code i {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--gold);
}
.dossier small {
  display: block;
  margin-top: 22px;
  color: #a9beb4;
  font-size: 0.68rem;
  line-height: 1.6;
}
.dossier-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.dossier-bridge span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.dossier-bridge i {
  display: block;
  width: 1px;
  height: 80px;
  background: linear-gradient(var(--gold), transparent, var(--paper));
  animation: bridgePulse 2.4s ease-in-out infinite;
}
@keyframes bridgePulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.65);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
.hero-visual-note {
  max-width: 270px;
  margin: 0;
  color: #b9cec3;
  font: italic 1rem/1.35 var(--serif);
}
.practice-image-frame {
  position: relative;
  height: 292px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(247, 245, 239, 0.3);
}
.practice-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.05);
  transform: scale(1.04);
}
.hero-practice-scene {
  transform: translate3d(var(--finance-x, 0px), var(--finance-y, 0px), 0);
  transition: transform 0.3s ease-out;
}
.finance-sheet {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 170px;
  padding: 14px;
  border: 1px solid rgba(22, 33, 31, 0.24);
  background: rgba(247, 245, 239, 0.92);
  color: var(--pine);
  box-shadow: 12px 16px 28px rgba(7, 29, 24, 0.24);
  transform: translate3d(
      calc(var(--finance-x, 0px) * -0.45),
      calc(var(--finance-y, 0px) * -0.45),
      0
    )
    rotate(3deg);
  transition: transform 0.3s ease-out;
}
.finance-sheet-label {
  display: block;
  color: var(--muted);
  font: 500 0.48rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.finance-sheet strong {
  display: block;
  margin: 12px 0;
  font: 500 0.92rem/1 var(--serif);
}
.finance-sheet-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-top: 1px solid #c9cec6;
  font: 500 0.5rem var(--mono);
}
.finance-sheet-row b {
  color: var(--pine);
  font-weight: 500;
}
.finance-sheet-line {
  display: flex;
  gap: 4px;
  margin-top: 11px;
}
.finance-sheet-line i {
  display: block;
  height: 3px;
  flex: 1;
  background: var(--gold);
}
.finance-sheet-line i:nth-child(2) {
  flex: 1.6;
  opacity: 0.45;
}
.finance-sheet-line i:nth-child(3) {
  opacity: 0.22;
}
.practice-image-frame::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 56px;
  height: 72px;
  border: 1px solid rgba(247, 245, 239, 0.45);
  transform: rotate(-8deg);
}
.practice-data {
  cursor: pointer;
}
.practice-data:hover {
  color: var(--paper);
}
.hero-practice-scene[data-finance-state="1"] .finance-sheet {
  transform: translate3d(
      calc(var(--finance-x, 0px) * -0.45),
      calc(var(--finance-y, 0px) * -0.45),
      0
    )
    rotate(-3deg);
}
.hero-practice-scene[data-finance-state="2"] .finance-sheet {
  transform: translate3d(
      calc(var(--finance-x, 0px) * -0.45),
      calc(var(--finance-y, 0px) * -0.45),
      0
    )
    rotate(7deg);
}
.practice-image-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 29, 24, 0.78), rgba(7, 29, 24, 0.08) 72%),
    linear-gradient(0deg, rgba(14, 48, 40, 0.3), transparent);
}
.practice-caption {
  position: absolute;
  inset: auto 20px 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: #dbe6df;
}
.practice-caption span {
  color: var(--gold);
  font: 500 0.56rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.practice-caption strong {
  font: italic 1.65rem/1 var(--serif);
  text-align: right;
}
.practice-data {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: #a9beb4;
  font: 500 0.57rem var(--mono);
  letter-spacing: 0.08em;
}
.practice-data i {
  width: 45px;
  height: 1px;
  background: var(--gold);
}
.practice-data b {
  margin-left: auto;
  color: var(--gold);
  font-weight: 500;
}
.map-section {
  padding: 120px 0 140px;
  border-top: 1px solid #c9cec6;
}
.light-map-section {
  background: var(--paper);
  color: var(--ink);
}
.map-section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}
.map-section-head h2 {
  font: 500 clamp(3rem, 5vw, 5.4rem)/0.98 var(--serif);
  letter-spacing: -0.065em;
  margin: 0;
}
.map-section-head .eyebrow {
  color: var(--pine);
}
.map-section-head h2 i {
  color: var(--pine);
  font-style: italic;
}
.map-section-head > p {
  max-width: 320px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.map-destination .hero-map-scene {
  position: relative;
  inset: auto;
  min-height: 520px;
  width: 100%;
  border-color: #c5cbc3;
  background: radial-gradient(circle at 50% 45%, #e2e9e1, transparent 62%);
  box-shadow:
    inset 0 0 90px rgba(22, 33, 31, 0.08),
    0 24px 60px rgba(22, 33, 31, 0.08);
}
.light-map-section .hero-map-scene::before,
.light-map-section .hero-map-scene::after {
  border-color: rgba(14, 48, 40, 0.18);
}
.light-map-section .map-topline,
.light-map-section .map-hint {
  color: var(--muted);
}
.light-map-section .map-grid path {
  stroke: rgba(14, 48, 40, 0.14);
}
.light-map-section .map-label {
  color: var(--pine);
}
.light-map-section .map-label span {
  color: var(--muted);
}
.light-map-section .map-label-us {
  padding: 6px 9px;
  border-left: 2px solid var(--gold);
  background: rgba(247, 245, 239, 0.92);
  box-shadow: 0 6px 16px rgba(22, 33, 31, 0.1);
}
.light-map-section .map-label-uk {
  padding: 6px 9px;
  border-right: 2px solid var(--gold);
  background: rgba(247, 245, 239, 0.92);
  box-shadow: 0 6px 16px rgba(22, 33, 31, 0.1);
  width: max-content;
  white-space: nowrap;
}
.light-map-section .map-label:hover,
.light-map-section .map-label:focus-visible,
.light-map-section .map-label[aria-pressed="true"] {
  color: var(--gold);
}
.light-map-section .map-info {
  border-color: var(--gold);
}
.light-map-section .map-info strong {
  color: var(--pine);
}
.light-map-section .map-info-copy {
  color: var(--muted);
}
.light-map-section .map-insight {
  border-color: rgba(14, 48, 40, 0.2);
  background: rgba(247, 245, 239, 0.7);
}
.light-map-section .map-insight span {
  color: var(--muted);
}
.light-map-section .map-insight strong {
  color: var(--pine);
}
.light-map-section .map-marker > circle:first-child {
  stroke: var(--pine);
}
.light-map-section .map-marker-uk > circle:first-child {
  fill: var(--gold);
  stroke: var(--pine);
}
.light-map-section .route-trace {
  stroke: var(--pine);
}
.light-map-section .hero-map-scene[data-focus="us"] .route-trace-secondary,
.light-map-section .hero-map-scene[data-focus="uk"] .route-trace {
  opacity: 0.12;
}
.light-map-section .hero-map-scene[data-focus="us"] .route-trace,
.light-map-section .hero-map-scene[data-focus="uk"] .route-trace-secondary {
  opacity: 0.9;
}
.light-map-section .map-us-geo,
.light-map-section .map-uk-geo,
.light-map-section .map-us-fallback,
.light-map-section .map-uk-fallback {
  fill: rgba(14, 48, 40, 0.18);
  stroke: var(--pine);
  stroke-width: 2.2;
}
.light-map-section .hero-map-scene[data-focus="us"] .map-us-geo,
.light-map-section .hero-map-scene[data-focus="us"] .map-us-fallback,
.light-map-section .hero-map-scene[data-focus="uk"] .map-uk-geo,
.light-map-section .hero-map-scene[data-focus="uk"] .map-uk-fallback {
  fill: rgba(213, 163, 61, 0.72) !important;
  stroke: var(--pine) !important;
}
.map-section {
  padding: 96px 0 112px;
}
.light-map-section .map-section-head {
  margin-bottom: 38px;
}
.light-map-section .map-destination .hero-map-scene {
  min-height: 480px;
}
.scroll-story {
  background: var(--paper-dark);
  min-height: 320vh;
  padding: 0;
  border-top: 1px solid #c9cec6;
}
.scroll-story-grid {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: start;
  padding: 90px 0;
}
.scroll-story-copy h2 {
  font: 500 clamp(3rem, 5vw, 5.4rem)/0.98 var(--serif);
  letter-spacing: -0.065em;
  margin: 0;
}
.scroll-story-copy h2 i {
  color: var(--pine);
  font-style: italic;
}
.scroll-story-intro {
  max-width: 360px;
  margin: 24px 0 60px;
  color: var(--muted);
  line-height: 1.7;
}
.story-steps {
  border-top: 1px solid #bfc6bf;
}
.story-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid #bfc6bf;
  cursor: pointer;
  min-height: 112px;
  opacity: 0.42;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.story-steps {
  position: relative;
  height: 570px;
  overflow: hidden;
}
.story-step {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-bottom: 0;
  padding: 24px 0;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}
.story-step > span {
  color: var(--gold);
  font: 500 0.68rem var(--mono);
}
.story-step h3 {
  margin: 0;
  color: var(--ink);
  font: 500 1.35rem/1.15 var(--serif);
}
.story-step p {
  max-width: 430px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.story-step.is-active {
  opacity: 1;
  transform: translateX(8px);
  pointer-events: auto;
}
.story-step.is-active p {
  opacity: 1;
}
.story-visual-wrap {
  position: sticky;
  top: 90px;
  height: 560px;
}
.story-visual {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 24px 28px;
  background: var(--pine);
  color: var(--paper);
  box-shadow: 18px 22px 0 rgba(14, 48, 40, 0.12);
}
.story-visual::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border: 1px solid rgba(213, 163, 61, 0.35);
  transform: rotate(-9deg) skewX(-8deg);
}
.story-visual-top,
.story-visual-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #a9beb4;
  font: 500 0.58rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-hex-nav {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.story-hex-nav button {
  width: 32px;
  height: 36px;
  border: 1px solid rgba(247, 245, 239, 0.35);
  background: transparent;
  color: #a9beb4;
  cursor: pointer;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  font: 500 0.62rem var(--mono);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.story-hex-nav button:hover,
.story-hex-nav button:focus-visible,
.story-hex-nav button.is-active {
  color: var(--pine);
  background: var(--gold);
  outline: none;
  transform: translateY(-3px);
}
.story-geometry {
  position: absolute;
  inset: 24% 12%;
  transition: transform 0.5s ease;
}
.story-geometry svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.story-art {
  opacity: 0;
  transform: scale(0.88);
  transform-origin: center;
  transition:
    opacity 0.5s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.story-geometry[data-story-geometry="0"] .story-art-0,
.story-geometry[data-story-geometry="1"] .story-art-1,
.story-geometry[data-story-geometry="2"] .story-art-2,
.story-geometry[data-story-geometry="3"] .story-art-3,
.story-geometry[data-story-geometry="4"] .story-art-4 {
  opacity: 1;
  transform: scale(1);
}
.money-outline,
.money-inner,
.money-seal,
.money-line,
.money-fold,
.world-line,
.ledger-outline,
.ledger-line,
.compass-ring,
.compass-line,
.shield-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.world-line,
.ledger-line,
.compass-line,
.shield-line {
  stroke: var(--paper);
}
.world-line {
  stroke-width: 2.5;
}
.money-dot {
  fill: var(--gold);
}
.ledger-outline {
  stroke-width: 2.5;
}
.ledger-accent {
  stroke: var(--gold);
}
.compass-ring {
  stroke-width: 2.5;
}
.compass-arrow {
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linejoin: round;
}
.compass-center {
  fill: var(--gold);
  stroke: var(--pine);
  stroke-width: 2;
}
.shield-line {
  stroke-width: 2.5;
}
.shield-check {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.money-inner {
  stroke: var(--paper);
  opacity: 0.6;
}
.money-seal {
  stroke-width: 3;
}
.money-line {
  stroke: var(--paper);
  opacity: 0.62;
  stroke-linecap: round;
}
.money-fold {
  stroke: var(--gold);
  opacity: 0.7;
  stroke-dasharray: 5 8;
}
.money-dot {
  fill: var(--gold);
}
.story-geometry[data-story-geometry="1"] {
  transform: rotate(3deg) scale(1.04);
}
.story-geometry[data-story-geometry="2"] {
  transform: rotate(-3deg) scale(0.96);
}
.story-geometry[data-story-geometry="3"] {
  transform: rotate(5deg) scale(1.08);
}
.story-geometry[data-story-geometry="4"] {
  transform: rotate(-5deg) scale(0.92);
}
.story-geometry[data-story-geometry] .story-art.is-redrawing,
.story-geometry[data-story-geometry] .story-art {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}
.story-geometry[data-story-geometry="0"] .story-art-0,
.story-geometry[data-story-geometry="1"] .story-art-1,
.story-geometry[data-story-geometry="2"] .story-art-2,
.story-geometry[data-story-geometry="3"] .story-art-3,
.story-geometry[data-story-geometry="4"] .story-art-4 {
  animation: lineArtDraw 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes lineArtDraw {
  to {
    stroke-dashoffset: 0;
  }
}
.ledger-bar {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
}
.compass-north {
  fill: var(--gold);
  font: 500 10px var(--mono);
  letter-spacing: 2px;
}
.calendar-line {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}
.story-visual > strong {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 92px;
  max-width: 320px;
  font: 500 2rem/1.02 var(--serif);
}
.story-visual > small {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 58px;
  color: #b9cec3;
  font-size: 0.78rem;
}
.story-visual-footer {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
}
.hero-map-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(213, 163, 61, 0.18);
  background: radial-gradient(
    circle at 50% 45%,
    rgba(35, 89, 73, 0.62),
    transparent 58%
  );
  box-shadow:
    inset 0 0 90px rgba(7, 29, 24, 0.34),
    0 30px 80px rgba(0, 0, 0, 0.12);
}
.hero-map-scene::before,
.hero-map-scene::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(213, 163, 61, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.hero-map-scene::before {
  inset: 13% 9%;
  transform: rotate(-24deg) skewX(-9deg);
}
.hero-map-scene::after {
  inset: 5% 20%;
  transform: rotate(31deg) skewX(12deg);
  opacity: 0.45;
}
.map-topline {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  color: #91a89f;
  font: 500 0.55rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.atlantic-map {
  position: absolute;
  inset: 33px 0 0;
  width: 100%;
  height: calc(100% - 33px);
  overflow: visible;
  transform: translate3d(var(--map-shift-x, 0px), var(--map-shift-y, 0px), 0)
    scale(0.88);
  transform-origin: center;
  transition: transform 0.35s ease-out;
}
.map-grid path {
  fill: none;
  stroke: rgba(194, 213, 204, 0.11);
  stroke-width: 0.7;
  stroke-dasharray: 2 8;
}
.map-continent {
  fill: rgba(216, 227, 220, 0.12);
  stroke: rgba(216, 227, 220, 0.8);
  stroke-width: 1.2;
  transition:
    fill 0.5s ease,
    stroke 0.5s ease,
    transform 0.5s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.map-us-fallback,
.map-uk-fallback {
  fill: rgba(213, 163, 61, 0.3);
}
.map-us-geo,
.map-uk-geo {
  fill: rgba(213, 163, 61, 0.28);
  stroke: rgba(247, 245, 239, 0.72);
  stroke-width: 1.6;
}
.map-us-geo:hover,
.map-uk-geo:hover {
  fill: rgba(213, 163, 61, 0.66);
}
.map-us-fallback.is-hidden,
.map-uk-fallback.is-hidden {
  display: none;
}
.map-northern-ireland {
  opacity: 0.82;
}
.route-line {
  fill: none;
  stroke: url(#route-gradient);
  stroke-width: 1.8;
  opacity: 0;
}
.route-line-secondary {
  opacity: 0;
}
.hero-map-scene[data-focus="us"] .route-line {
  opacity: 0.82;
}
.hero-map-scene[data-focus="us"] .route-line-secondary {
  opacity: 0.12;
}
.hero-map-scene[data-focus="uk"] .route-line {
  opacity: 0.12;
}
.hero-map-scene[data-focus="uk"] .route-line-secondary {
  opacity: 0.82;
}
.route-trace {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 12 88;
  opacity: 0.82;
  animation: routeTrace 4.8s linear infinite;
}
.route-trace-secondary {
  opacity: 0.42;
  animation-duration: 6.5s;
  animation-direction: reverse;
}
@keyframes routeTrace {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.map-marker {
  cursor: pointer;
}
.map-marker > circle:first-child {
  fill: var(--gold);
  stroke: var(--paper);
  stroke-width: 2;
}
.map-marker-uk > circle:first-child {
  fill: var(--paper);
}
.marker-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0;
  animation: markerPulse 2.5s ease-out infinite;
}
@keyframes markerPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}
.map-label {
  position: absolute;
  z-index: 3;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--paper);
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
  text-align: left;
}
.map-label strong {
  display: block;
  font: 500 0.75rem var(--mono);
  letter-spacing: 0.12em;
}
.map-label span {
  display: block;
  margin-top: 5px;
  color: #b9cec3;
  font-size: 0.52rem;
  letter-spacing: 0.05em;
}
.map-label-us {
  left: 24%;
  top: 46%;
}
.map-label-uk {
  right: 12%;
  top: 32%;
  text-align: right;
}
.map-label:hover,
.map-label:focus-visible,
.map-label[aria-pressed="true"] {
  color: var(--gold);
  transform: scale(1.08);
  outline: none;
}
.map-label:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.map-info {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  max-width: 230px;
  padding-top: 12px;
  border-top: 1px solid rgba(213, 163, 61, 0.55);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}
.map-info-kicker {
  display: block;
  color: var(--gold);
  font: 500 0.55rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.map-info strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font: 500 1.08rem/1.05 var(--serif);
}
.map-info-copy {
  display: block;
  margin-top: 7px;
  color: #b7ccc1;
  font-size: 0.67rem;
  line-height: 1.45;
}
.map-insights {
  position: absolute;
  z-index: 3;
  top: 62px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.map-insight {
  min-width: 124px;
  padding: 11px 13px;
  border: 1px solid rgba(194, 213, 204, 0.22);
  background: rgba(7, 29, 24, 0.52);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    opacity 0.35s ease;
}
.map-insight-uk {
  text-align: right;
}
.map-insight span,
.map-insight small {
  display: block;
  color: #91a89f;
  font: 500 0.5rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.map-insight strong {
  display: block;
  margin: 5px 0 2px;
  color: var(--paper);
  font: 500 0.95rem/1 var(--serif);
}
.map-insight small {
  color: var(--gold);
  letter-spacing: 0.03em;
  text-transform: none;
}
.hero-map-scene[data-focus="us"] .map-insight-us,
.hero-map-scene[data-focus="uk"] .map-insight-uk {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.hero-map-scene[data-focus="us"] .map-insight-uk,
.hero-map-scene[data-focus="uk"] .map-insight-us {
  opacity: 0.45;
}
.map-hint {
  position: absolute;
  right: 19px;
  bottom: 20px;
  z-index: 2;
  color: #91a89f;
  font: 500 0.56rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.map-hint span {
  color: var(--gold);
  font-size: 0.9rem;
  margin-left: 5px;
}
.hero-map-scene[data-focus="us"] .map-us-geo {
  fill: rgba(213, 163, 61, 0.58);
  stroke: var(--gold);
}
.hero-map-scene[data-focus="us"] .map-us-fallback {
  fill: rgba(213, 163, 61, 0.58);
  stroke: var(--gold);
  transform: scale(1.04);
}
.hero-map-scene[data-focus="uk"] .map-uk-geo {
  fill: rgba(247, 245, 239, 0.62);
  stroke: var(--paper);
  transform: scale(1.12);
}
.hero-map-scene[data-focus="us"] .map-label-uk,
.hero-map-scene[data-focus="uk"] .map-label-us {
  opacity: 0.45;
}
.hero-map-scene[data-focus="us"] .route-line-secondary,
.hero-map-scene[data-focus="uk"] .route-line-secondary {
  opacity: 0.75;
}
.hero-map-scene[data-focus="us"] .map-info,
.hero-map-scene[data-focus="uk"] .map-info {
  transform: translateY(-4px);
}
@media (min-width: 1100px) {
  .hero {
    padding-top: 104px;
    padding-bottom: 30px;
  }
  .hero h1 {
    font-size: clamp(4rem, 6vw, 6.7rem);
  }
  .hero-lede {
    margin-top: 22px;
  }
  .hero-actions {
    margin-top: 28px;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 64px;
    align-items: center;
  }
  .hero-copy {
    padding-bottom: 28px;
  }
  .hero-aside {
    min-height: 330px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marker-pulse,
  .route-trace,
  .story-art {
    animation: none;
  }
  .site-header,
  .nav-wrap,
  .site-header.scrolled .brand img,
  .site-header.scrolled .site-nav {
    transition: none;
    animation: none;
  }
  .atlantic-map {
    transform: none;
    transition: none;
  }
}

@media (min-width: 901px) and (max-height: 800px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 72px;
  }
  .hero h1 {
    font-size: clamp(3.8rem, 6.2vw, 6.4rem);
  }
  .hero-lede {
    margin-top: 22px;
    line-height: 1.55;
  }
  .hero-actions {
    margin-top: 28px;
  }
}
.orbital {
  position: absolute;
  border: 1px solid rgba(213, 163, 61, 0.45);
  border-radius: 50%;
  width: 450px;
  height: 450px;
  right: -5%;
  top: 0;
  transform: rotate(-28deg);
  animation: orbit 18s linear infinite;
}
.orbital-two {
  width: 310px;
  height: 310px;
  right: 18%;
  top: 65px;
  border-color: rgba(213, 163, 61, 0.19);
  animation-duration: 24s;
  animation-direction: reverse;
}
@keyframes orbit {
  to {
    transform: rotate(332deg);
  }
}
.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: calc((100% - min(1160px, calc(100% - 72px))) / 2);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #91a89f;
  font: 500 0.59rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.scroll-cue i {
  display: block;
  width: 47px;
  height: 1px;
  background: var(--gold);
}
.ledger-section {
  padding: 128px 0 150px;
}
.split-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 0.8fr;
  gap: 35px;
  align-items: end;
}
.section-intro h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
}
.section-intro > p:last-child {
  font-size: 0.95rem;
  color: #aac0b5;
  max-width: 320px;
  margin: 0 0 7px;
  line-height: 1.7;
}
.ledger {
  margin-top: 76px;
  border-top: 1px solid var(--pine-line);
}
.ledger-labels,
.ledger-row {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1fr;
  column-gap: 36px;
}
.evidence-band {
  padding: 92px 0;
  border-top: 1px solid rgba(49, 86, 75, 0.7);
}
.evidence-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.evidence-intro h2 {
  margin: 0;
  font: 500 clamp(2.8rem, 5vw, 5rem)/0.98 var(--serif);
  letter-spacing: -0.06em;
}
.evidence-intro h2 i {
  color: var(--gold);
  font-style: italic;
}
.evidence-intro > p:last-child {
  max-width: 300px;
  margin-top: 22px;
  color: #aac0b5;
  line-height: 1.65;
}
.evidence-images {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
  align-items: end;
}
.evidence-image {
  position: relative;
  height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 245, 239, 0.2);
}
.evidence-image:nth-child(2) {
  height: 190px;
}
.evidence-image:nth-child(3) {
  height: 155px;
}
.evidence-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.08);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}
.evidence-image:hover img {
  transform: scale(1.06);
  filter: saturate(0.85) contrast(1.08);
}
.evidence-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 29, 24, 0.8), transparent 55%);
  pointer-events: none;
}
.evidence-image figcaption {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: var(--paper);
  font: 500 0.58rem var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.evidence-image figcaption span {
  color: var(--gold);
  margin-right: 6px;
}
.route-tools-section {
  padding: 104px 0 116px;
  background: var(--paper);
  border-top: 1px solid #c9cec6;
}
.route-tools-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: end;
}
.route-tools-heading h2 {
  margin: 0;
  font: 500 clamp(3rem, 5vw, 5.2rem)/0.98 var(--serif);
  letter-spacing: -0.065em;
}
.route-tools-heading h2 i {
  color: var(--pine);
  font-style: italic;
}
.route-tools-heading > p {
  max-width: 340px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}
.route-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.tool-panel {
  min-height: 410px;
  padding: 24px;
  border: 1px solid #c2cbc2;
  background: #f1f0e9;
  box-shadow: 8px 10px 0 rgba(14, 48, 40, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.tool-panel:hover {
  border-color: #9eafa2;
  box-shadow: 12px 14px 0 rgba(14, 48, 40, 0.08);
  transform: translateY(-3px);
}
.tool-panel-top {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font: 500 0.58rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tool-panel h3 {
  margin: 42px 0 22px;
  color: var(--pine);
  font: 500 1.8rem/1.05 var(--serif);
}
.quiz-options {
  display: grid;
  gap: 10px;
}
.quiz-options button {
  padding: 14px 16px;
  border: 1px solid #b9c5bb;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.quiz-options button::after {
  content: "↗";
  float: right;
  color: var(--gold);
  opacity: 0.65;
}
.quiz-options button:hover,
.quiz-options button:focus-visible {
  border-color: var(--gold);
  background: rgba(213, 163, 61, 0.12);
  transform: translateX(5px);
  outline: none;
}
.is-hidden {
  display: none !important;
}
.quiz-result {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #b9c5bb;
}
.quiz-result > span,
.fee-output > span {
  display: block;
  color: var(--gold);
  font: 500 0.58rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quiz-result strong {
  display: block;
  margin-top: 8px;
  color: var(--pine);
  font: 500 1.55rem var(--serif);
}
.quiz-result p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.quiz-reset {
  display: block;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pine);
  cursor: pointer;
  font: 500 0.66rem var(--mono);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.quiz-reset:hover {
  color: var(--gold);
}
.fee-choice {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font: 500 0.64rem var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fee-choice + .fee-choice {
  margin-top: 26px;
}
.fee-choice select {
  padding: 13px;
  border: 1px solid #b9c5bb;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}
.fee-choice input {
  accent-color: var(--gold);
  width: 100%;
  cursor: pointer;
}
.range-labels {
  display: flex;
  justify-content: space-between;
  color: #7c8a80;
  font-size: 0.56rem;
  text-transform: none;
  letter-spacing: 0;
}
.fee-factors {
  display: grid;
  gap: 9px;
  margin: 25px 0 0;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid #b9c5bb;
}
.fee-factors legend {
  padding: 0;
  color: var(--gold);
  font: 500 0.58rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fee-factors label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.78rem;
}
.fee-factors input {
  accent-color: var(--gold);
}
.fee-output {
  margin: 27px 0;
  padding: 17px 0;
  border-top: 1px solid #b9c5bb;
  border-bottom: 1px solid #b9c5bb;
}
.fee-output strong {
  display: block;
  margin: 7px 0;
  color: var(--pine);
  font: 500 2.7rem var(--serif);
}
.fee-output small {
  color: var(--muted);
  font-size: 0.72rem;
}
.situation-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin-top: 28px;
  border: 1px solid #b8c4bb;
  color: var(--pine);
}
.situation-icon::before,
.situation-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.icon-move::before {
  width: 20px;
  height: 1px;
  left: 10px;
  top: 20px;
  transform: rotate(-35deg);
}
.icon-move::after {
  width: 7px;
  height: 7px;
  right: 7px;
  top: 12px;
  border: 1px solid var(--pine);
  background: transparent;
  border-radius: 50%;
}
.icon-catchup::before {
  width: 20px;
  height: 1px;
  left: 10px;
  top: 14px;
  box-shadow:
    0 7px 0 var(--gold),
    0 14px 0 var(--gold);
}
.icon-catchup::after {
  width: 7px;
  height: 7px;
  left: 9px;
  top: 8px;
  border: 1px solid var(--pine);
  background: transparent;
  border-radius: 50%;
}
.icon-invest::before {
  width: 20px;
  height: 1px;
  left: 10px;
  top: 25px;
  transform: rotate(-45deg);
}
.icon-invest::after {
  width: 7px;
  height: 7px;
  left: 10px;
  top: 17px;
  border: 1px solid var(--pine);
  background: transparent;
  border-radius: 50%;
  box-shadow:
    10px -8px 0 -1px var(--paper),
    10px -8px 0 0 var(--pine);
}
.icon-citizenship::before {
  width: 20px;
  height: 20px;
  left: 10px;
  top: 10px;
  border: 1px solid var(--gold);
  background: transparent;
  border-radius: 50%;
}
.icon-citizenship::after {
  width: 1px;
  height: 24px;
  left: 20px;
  top: 8px;
  transform: rotate(45deg);
}
.ledger-labels {
  padding: 17px 0 14px;
  font: 500 0.63rem var(--mono);
  color: #93a99f;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.ledger-row {
  padding: 22px 0;
  border-top: 1px solid rgba(49, 86, 75, 0.7);
  font-size: 0.83rem;
  line-height: 1.55;
}
.ledger-row strong {
  color: #fff;
  font-weight: 600;
}
.ledger-row span:nth-child(2) {
  color: var(--gold);
}
.ledger-row span:nth-child(3) {
  color: #c4d5cc;
}
.light-section {
  background: var(--paper);
  padding: 140px 0;
}
.dark-eyebrow {
  color: var(--pine);
}
.dark-eyebrow:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.section-intro > p:last-child {
  color: var(--muted);
}
.situations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 75px;
  border-top: 1px solid #cdd1c9;
}
.situation-card {
  padding: 25px 24px 0 0;
  margin-right: 24px;
  border-right: 1px solid #cdd1c9;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}
.situation-card:last-child {
  border: 0;
  margin: 0;
}
.card-number,
.fee-type {
  font: 500 0.65rem var(--mono);
  color: var(--gold);
  letter-spacing: 0.08em;
}
.situation-card h3 {
  font: 500 1.48rem/1.12 var(--serif);
  letter-spacing: -0.04em;
  margin: 50px 0 22px;
}
.situation-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.situation-card a,
.fee-card a,
.article-card a {
  margin-top: auto;
  padding-top: 29px;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 10px;
}
.situation-card a:hover,
.fee-card a:hover,
.article-card a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.expertise-section {
  padding: 135px 0;
  background: var(--paper-dark);
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.expertise-art {
  padding-left: 7%;
}
.art-frame {
  position: relative;
  width: 85%;
  height: 480px;
  transform: rotate(-3deg);
}
.art-frame:before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid #b7c0b8;
}
.art-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.62);
}
.stamp {
  position: absolute;
  right: -30px;
  top: 45px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--pine);
  display: grid;
  place-content: center;
  text-align: center;
  font: 500 0.85rem/0.95 var(--mono);
  transform: rotate(13deg);
}
.stamp span {
  font-size: 1.3rem;
}
.art-caption {
  display: flex;
  justify-content: space-between;
  width: 85%;
  padding-top: 25px;
  font: 500 0.62rem var(--mono);
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.expertise-copy h2 {
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  color: var(--pine);
}
.expertise-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 500px;
  font-size: 0.96rem;
  margin-top: 24px;
}
.credential-list {
  list-style: none;
  padding: 0;
  margin: 38px 0 0;
  border-top: 1px solid #bdc7bf;
  max-width: 500px;
}
.credential-list li {
  padding: 12px 0;
  border-bottom: 1px solid #bdc7bf;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
}
.credential-list span {
  font: 500 0.63rem var(--mono);
  color: var(--gold);
}
.team-section {
  padding: 140px 0;
  background: var(--pine);
  color: var(--paper);
  overflow: hidden;
  scroll-margin-top: 0;
}
.team-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 90px;
  align-items: end;
}
.team-heading .eyebrow {
  color: var(--gold);
}
.team-heading h2 {
  margin: 0;
  font: 500 clamp(3rem, 5vw, 5.4rem)/0.98 var(--serif);
  letter-spacing: -0.065em;
}
.team-heading h2 i {
  color: var(--gold);
  font-style: italic;
}
.team-heading > p {
  max-width: 320px;
  margin: 0 0 8px;
  color: #b7ccc1;
  line-height: 1.7;
}
.team-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  min-height: 500px;
  margin-top: 72px;
  border-top: 1px solid var(--pine-line);
  border-bottom: 1px solid var(--pine-line);
}
.team-portrait-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #183e34;
}
.team-portrait-panel::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(213, 163, 61, 0.35);
  pointer-events: none;
  transform: rotate(-3deg);
}
.team-portrait-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(213, 163, 61, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 80px rgba(213, 163, 61, 0.12);
}
.team-portrait {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: min(72%, 390px);
  height: 88%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72) contrast(1.04);
  mix-blend-mode: screen;
  transition: opacity 0.18s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateX(-50%);
}
.team-portrait.is-switching {
  opacity: 0;
  transform: translateX(-50%) translateY(12px) scale(0.97);
}
.team-portrait-index,
.team-portrait-caption {
  position: absolute;
  z-index: 2;
  font: 500 0.62rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-portrait-index {
  left: 28px;
  top: 26px;
  color: var(--gold);
}
.team-portrait-caption {
  right: 28px;
  bottom: 26px;
  color: #b7ccc1;
}
.team-details {
  display: flex;
  flex-direction: column;
  padding: 38px 42px;
  background: var(--paper);
  color: var(--ink);
}
.team-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.team-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  align-items: center;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #bdc7bf;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}
.team-tab > span {
  grid-row: span 2;
  color: var(--gold);
  font: 500 0.62rem var(--mono);
}
.team-tab strong {
  font: 500 1.25rem/1 var(--serif);
  color: var(--ink);
}
.team-tab small {
  font: 500 0.55rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-tab.is-active {
  border-color: var(--gold);
  color: var(--pine);
}
.team-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}
.team-profile {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 0 20px;
}
.team-profile-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font: 500 0.64rem var(--mono);
  letter-spacing: 0.1em;
}
.team-profile h3 {
  margin: 0;
  font: 500 clamp(3rem, 5vw, 5rem)/0.95 var(--serif);
  letter-spacing: -0.06em;
}
.team-profile > p:not(.team-profile-kicker) {
  max-width: 350px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.team-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--pine);
  font: 500 0.62rem var(--mono);
  text-transform: uppercase;
}
.team-profile .text-link {
  margin-top: 38px;
}
.team-stage-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  min-height: 0;
  border: 0;
}
.team-member {
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 0 rgba(7, 29, 24, 0.18);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease;
}
.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 0 rgba(7, 29, 24, 0.18);
}
.team-member-portrait {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: #183e34;
}
.team-member-portrait::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(213, 163, 61, 0.4);
  pointer-events: none;
  transform: rotate(-3deg);
}
.team-member-portrait .team-portrait-glow {
  width: 300px;
  height: 300px;
}
.team-member-portrait img {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: min(78%, 320px);
  height: 94%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72) contrast(1.04);
  mix-blend-mode: screen;
  transform: translateX(-50%);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.team-member:hover .team-member-portrait img {
  transform: translateX(-50%) scale(1.04);
}
.team-member-portrait > span {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 22px;
  color: var(--gold);
  font: 500 0.62rem var(--mono);
  letter-spacing: 0.1em;
}
.team-member-copy {
  padding: 24px 26px 28px;
}
.team-member-copy > p:first-child {
  margin: 0;
  color: var(--gold);
  font: 500 0.62rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-member-copy h3 {
  margin: 10px 0 6px;
  font: 500 2.5rem/1 var(--serif);
}
.team-member-copy > span {
  color: var(--pine);
  font: 500 0.62rem var(--mono);
  text-transform: uppercase;
}
.team-member-copy > p:last-child {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}
.team-together {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  align-items: center;
  margin-top: 86px;
  padding-top: 34px;
  border-top: 1px solid var(--pine-line);
}
.team-together-copy h3 {
  margin: 0;
  font: 500 clamp(2.4rem, 4vw, 4.4rem)/0.98 var(--serif);
  letter-spacing: -0.06em;
}
.team-together-copy h3 i {
  color: var(--gold);
  font-style: italic;
}
.team-together-copy > p:last-child {
  max-width: 290px;
  margin: 24px 0 0;
  color: #b7ccc1;
  line-height: 1.7;
}
.team-together-images {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 16px;
  align-items: end;
}
.team-together-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #183e34;
  border: 1px solid rgba(213, 163, 61, 0.28);
}
.team-together-image-main {
  height: 250px;
}
.team-together-image-secondary {
  height: 190px;
}
.team-together-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.04);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}
.team-together-image:hover img,
.team-together-image:focus-within img {
  transform: scale(1.05);
  filter: saturate(0.85) contrast(1.04);
}
.team-together-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  color: var(--paper);
  font: 500 0.58rem var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(7, 29, 24, 0.8);
}
.both-sides-section,
.process-section {
  padding: 140px 0;
  background: #f1f0e9;
}
.difference-list {
  margin-top: 70px;
  border-top: 1px solid #bfc6bf;
}
.difference-row {
  display: grid;
  grid-template-columns: 8% 32% 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #bfc6bf;
  align-items: start;
}
.difference-row > span,
.process-no {
  font: 500 0.7rem var(--mono);
  color: var(--gold);
}
.difference-row h3,
.process-list h3 {
  font: 500 1.35rem var(--serif);
  margin: 0;
  letter-spacing: -0.03em;
}
.difference-row p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  max-width: 450px;
}
.process-section {
  background: var(--paper);
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 70px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.process-list li {
  border-top: 1px solid #bfc6bf;
  padding: 20px 22px 0 0;
}
.process-list h3 {
  margin-top: 48px;
}
.process-list p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 16px;
}
.fees-section {
  padding: 140px 0 115px;
}
.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
}
.fee-card {
  padding: 22px 30px 0 0;
  margin-right: 30px;
  border-top: 1px solid var(--pine-line);
  min-height: 330px;
  display: flex;
  flex-direction: column;
}
.fee-card.featured {
  border-top: 2px solid var(--gold);
}
.fee-card h3 {
  font: 500 1.42rem var(--serif);
  margin: 48px 0 0;
}
.fee-card strong {
  color: var(--gold);
  font: 500 2.4rem var(--serif);
  letter-spacing: -0.05em;
  margin-top: 15px;
}
.fee-card p {
  font-size: 0.84rem;
  color: #b8c9c0;
  line-height: 1.65;
  margin: 15px 0;
}
.fee-card a {
  border-color: var(--pine-line);
  color: var(--paper);
}
.fee-note {
  margin-top: 45px;
  color: #8fa89e;
  font-size: 0.8rem;
}
.writing-section {
  padding: 140px 0;
  background: var(--paper);
}
.writing-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.writing-head h2 {
  font: 500 clamp(3rem, 5vw, 5.5rem)/0.98 var(--serif);
  letter-spacing: -0.065em;
}
.writing-head h2 i {
  color: var(--pine);
  font-style: italic;
}
.dark-link {
  color: var(--pine);
  border-bottom: 1px solid var(--pine);
  padding-bottom: 8px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 75px;
}
.article-card {
  display: flex;
  flex-direction: column;
}
.article-image {
  height: 210px;
  margin-bottom: 25px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.55);
}
.image-one {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=900&q=80");
}
.image-two {
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=900&q=80");
}
.image-three {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=80");
}
.article-card > span {
  font: 500 0.62rem var(--mono);
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.article-card h3 {
  font: 500 1.5rem/1.15 var(--serif);
  letter-spacing: -0.04em;
  margin: 15px 0 0;
}
.article-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 14px 0 0;
}
.article-card a {
  margin-top: 25px;
}
.closing-section {
  padding: 155px 0;
}
.closing-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.closing-inner h2 {
  font-size: clamp(3.8rem, 7vw, 7rem);
}
.closing-inner > p:not(.eyebrow) {
  max-width: 490px;
  color: #c4d5cc;
  margin: 28px 0 0;
}
.closing-inner .hero-actions {
  justify-content: center;
}
.animated-form-line {
  position: relative;
  display: inline-block;
  color: var(--gold);
  isolation: isolate;
}
.animated-form-line::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -7px;
  left: -5px;
  z-index: -1;
  height: 2px;
  border-radius: 0;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: formUnderline 7s 0.4s ease-in-out infinite;
}
@keyframes formUnderline {
  0%,
  18% {
    opacity: 0;
    transform: scaleX(0);
  }
  38%,
  66% {
    opacity: 0.95;
    transform: scaleX(1);
  }
  82%,
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}
.closing-primary-cta {
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 0 rgba(7, 29, 24, 0.24);
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.2s ease;
}
.closing-primary-cta:hover {
  box-shadow: 0 16px 0 rgba(7, 29, 24, 0.24);
}
.site-footer {
  background: var(--pine-deep);
  color: #aec0b7;
  padding: 76px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 50px;
}
.footer-brand {
  color: #fff;
}
.footer-grid p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 25px;
}
.footer-grid h4 {
  font: 500 0.65rem var(--mono);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 4px 0 22px;
}
.footer-grid a,
.footer-grid span {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 10px;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid var(--pine-line);
  margin-top: 75px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font: 500 0.61rem var(--mono);
  color: #799287;
}
.footer-bottom a:hover {
  color: #fff;
}
.cursor-glow {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(213, 163, 61, 0.11),
    transparent 68%
  );
  pointer-events: none;
  z-index: 20;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
@media (max-width: 900px) {
  .container {
    width: min(100% - 42px, 680px);
  }
  .site-nav {
    gap: 16px;
    margin-right: 20px;
  }
  .hero-inner,
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .hero {
    padding-top: 150px;
  }
  .hero-aside {
    min-height: 450px;
    width: 100%;
  }
  .hero-map-scene {
    inset: 0;
  }
  .map-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .map-section {
    padding: 90px 0 105px;
  }
  .split-intro {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .split-intro > p:last-child {
    margin-top: 12px;
  }
  .situations-grid {
    grid-template-columns: 1fr 1fr;
  }
  .situation-card {
    min-height: 300px;
    margin: 0;
    padding: 25px 20px 25px 0;
  }
  .situation-card:nth-child(2) {
    border-right: 0;
    margin-left: 15px;
  }
  .situation-card:nth-child(3),
  .situation-card:nth-child(4) {
    border-top: 1px solid #cdd1c9;
    padding-top: 35px;
  }
  .expertise-art {
    padding-left: 5%;
    max-width: 560px;
  }
  .team-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-stage {
    grid-template-columns: 1fr;
  }
  .team-stage-pair {
    gap: 28px;
  }
  .team-portrait-panel {
    min-height: 390px;
  }
  .team-details {
    min-height: 420px;
  }
  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }
  .fees-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fee-card {
    min-height: 0;
    padding-bottom: 0;
  }
  .articles-grid {
    gap: 20px;
  }
  .article-image {
    height: 170px;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 36px);
  }
  .team-section {
    padding: 90px 0;
    scroll-margin-top: 0;
  }
  .team-heading h2 {
    font-size: 3.05rem;
  }
  .team-heading > p {
    font-size: 0.9rem;
  }
  .team-stage {
    margin-top: 28px;
  }
  .team-stage-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .team-member-portrait {
    height: 190px;
  }
  .team-member-portrait img {
    width: 92%;
  }
  .team-member-copy {
    padding: 16px 12px 18px;
  }
  .team-member-copy h3 {
    font-size: 1.65rem;
  }
  .team-member-copy > span,
  .team-member-copy > p:last-child {
    font-size: 0.68rem;
  }
  .team-member-portrait > span {
    top: 12px;
    left: 12px;
    font-size: 0.5rem;
  }
  .team-together {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 64px;
  }
  .team-together-copy h3 {
    font-size: 2.8rem;
  }
  .team-together-copy > p:last-child {
    font-size: 0.88rem;
  }
  .team-together-images {
    display: none;
  }
  .team-together-images {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
  }
  .team-together-image-main {
    height: 170px;
  }
  .team-together-image-secondary {
    height: 132px;
  }
  .team-together-image figcaption {
    right: 9px;
    bottom: 9px;
    left: 9px;
    font-size: 0.46rem;
  }
  .team-together-images {
    display: none;
  }
  .team-portrait-panel {
    min-height: 330px;
  }
  .team-portrait {
    width: 76%;
    height: 92%;
  }
  .team-portrait-panel::after {
    inset: 18px;
  }
  .team-portrait-index {
    left: 18px;
    top: 18px;
  }
  .team-portrait-caption {
    right: 18px;
    bottom: 18px;
    font-size: 0.52rem;
  }
  .team-details {
    min-height: 430px;
    padding: 24px 18px;
  }
  .team-tabs {
    gap: 18px;
  }
  .team-tab {
    min-height: 58px;
  }
  .team-tab strong {
    font-size: 1.08rem;
  }
  .team-tab small {
    font-size: 0.48rem;
  }
  .team-profile {
    padding: 38px 0 10px;
  }
  .team-profile h3 {
    font-size: 3.5rem;
  }
  .team-profile .text-link {
    margin-top: 30px;
  }
  .booking-modal {
    padding: 20px 16px 14px;
  }
  .calendly-inline-widget {
    height: 680px;
    min-width: 0;
    margin: 4px -6px 0;
  }
  .booking-header h2 {
    font-size: 1.85rem;
  }
  .booking-fields {
    grid-template-columns: 1fr;
  }
  .booking-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .booking-footer .button {
    justify-content: space-between;
  }
  .nav-wrap {
    min-height: 74px;
  }
  .site-header.scrolled .nav-wrap {
    width: calc(100% - 24px);
    min-height: 62px;
    margin-top: 10px;
    padding: 0 14px;
    border-radius: 16px;
  }
  .site-header.scrolled .brand img {
    width: 132px;
  }
  .site-nav {
    position: absolute;
    display: none;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--pine-deep);
    padding: 25px 18px;
    flex-direction: column;
    margin: 0;
    gap: 18px;
    border-bottom: 1px solid var(--pine-line);
  }
  .site-header.scrolled .site-nav {
    top: 61px;
    left: 0;
    right: 0;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.95rem;
  }
  .site-nav a:after {
    bottom: 6px;
  }
  .mobile-nav-call {
    display: flex !important;
    justify-content: space-between;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--pine-line);
    color: var(--gold);
    font: 500 0.72rem var(--mono);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .mobile-nav-call span {
    font-size: 1rem;
  }
  .phone-link {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: 34px;
  }
  .hero h1 {
    max-width: 340px;
    font-size: 3.25rem;
    line-height: 0.98;
  }
  .hero-lede {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding-inline: 18px;
  }
  .hero-aside {
    min-height: 300px;
  }
  .hero-map-scene {
    inset: 0;
    min-height: 390px;
  }
  .hero-visual {
    padding: 18px 15px;
  }
  .practice-image-frame {
    height: 215px;
    margin-top: 14px;
  }
  .practice-caption strong {
    font-size: 1.25rem;
  }
  .dossier-stage {
    grid-template-columns: 1fr 28px 1fr;
    min-height: 275px;
  }
  .dossier {
    min-height: 220px;
    padding: 18px 13px;
  }
  .dossier strong {
    margin-top: 35px;
    font-size: 1.25rem;
  }
  .dossier-code {
    font-size: 0.52rem;
  }
  .dossier small {
    font-size: 0.59rem;
  }
  .map-section {
    padding: 82px 0 95px;
  }
  .route-tools-section {
    padding: 86px 0 100px;
  }
  .route-tools-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .route-tools-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }
  .tool-panel {
    min-height: 0;
    padding: 20px;
  }
  .tool-panel h3 {
    margin-top: 38px;
  }
  .evidence-band {
    padding: 78px 0;
  }
  .evidence-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .evidence-images {
    grid-template-columns: 1fr 1fr;
  }
  .evidence-image {
    height: 170px;
  }
  .evidence-image:first-child {
    grid-column: 1 / -1;
    height: 210px;
  }
  .evidence-image:nth-child(2),
  .evidence-image:nth-child(3) {
    height: 145px;
  }
  .scroll-story {
    min-height: auto;
    padding: 86px 0 100px;
  }
  .scroll-story-grid {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .scroll-story-intro {
    margin-bottom: 38px;
  }
  .story-steps {
    height: auto;
    overflow: visible;
  }
  .story-step {
    position: relative;
    inset: auto;
    min-height: 112px;
    opacity: 0.42;
    transform: none;
    border-bottom: 1px solid #bfc6bf;
    border-left: 3px solid transparent;
    padding: 24px 14px 24px 12px;
    pointer-events: auto;
    transition:
      opacity 0.3s ease,
      background 0.3s ease,
      border-color 0.3s ease,
      padding 0.3s ease;
  }
  .story-step.is-active {
    transform: none;
    opacity: 1;
    border-left-color: var(--gold);
    background: rgba(255, 255, 255, 0.42);
    padding-left: 17px;
  }
  .story-step.is-active > span {
    color: var(--pine);
  }
  .story-step.is-active h3 {
    color: var(--pine);
  }
  .story-visual-wrap {
    display: none;
  }
  .story-visual {
    padding: 18px;
  }
  .story-hex-nav {
    display: none;
  }
  .story-visual > strong {
    left: 18px;
    bottom: 70px;
    font-size: 1.55rem;
  }
  .story-visual > small {
    left: 18px;
    bottom: 42px;
    font-size: 0.7rem;
  }
  .story-visual-footer {
    left: 18px;
    right: 18px;
    bottom: 17px;
  }
  .story-geometry {
    inset: 25% 23%;
  }
  .map-section-head {
    margin-bottom: 38px;
  }
  .map-section-head h2 {
    font-size: 2.85rem;
    line-height: 1;
  }
  .light-map-section .map-destination .hero-map-scene {
    min-height: 420px;
    height: 420px;
  }
  .atlantic-map {
    transform: translate3d(calc(var(--map-shift-x, 0px) - 24px), var(--map-shift-y, 0px), 0)
      scale(0.98);
  }
  .map-label-us {
    left: 18%;
    top: 43%;
  }
  .map-label-uk {
    right: 8%;
    top: 29%;
  }
  .map-label-us,
  .map-label-uk {
    z-index: 4;
    white-space: nowrap;
  }
  .map-info {
    left: 15px;
    bottom: 16px;
    max-width: 190px;
  }
  .map-insights {
    top: 55px;
  }
  .map-insight {
    min-width: 112px;
    padding: 9px 10px;
  }
  .map-info strong {
    font-size: 0.98rem;
  }
  .map-hint {
    right: 15px;
    bottom: 16px;
  }
  .scroll-cue {
    left: 18px;
    bottom: 22px;
  }
  .ledger-section,
  .light-section,
  .expertise-section,
  .both-sides-section,
  .process-section,
  .fees-section,
  .writing-section {
    padding: 90px 0;
  }
  .ledger-labels {
    display: none;
  }
  .ledger-row {
    display: block;
    padding: 22px 0;
  }
  .ledger-row strong,
  .ledger-row span {
    display: block;
  }
  .ledger-row strong {
    margin-bottom: 10px;
  }
  .ledger-row span:nth-child(2),
  .ledger-row span:nth-child(3) {
    margin-top: 5px;
  }
  .ledger-row span:nth-child(2):before {
    content: "IRS · ";
    color: #8fa89e;
  }
  .ledger-row span:nth-child(3):before {
    content: "HMRC · ";
    color: #8fa89e;
  }
  .situations-grid {
    grid-template-columns: 1fr;
  }
  .situation-card,
  .situation-card:nth-child(2),
  .situation-card:nth-child(3),
  .situation-card:nth-child(4) {
    border-right: 0;
    border-top: 1px solid #cdd1c9;
    margin: 0;
    padding: 27px 0;
    min-height: 0;
  }
  .situation-card h3 {
    margin: 28px 0 15px;
  }
  .art-frame {
    height: 340px;
    width: 90%;
  }
  .expertise-copy h2 {
    font-size: 3rem;
  }
  .difference-row {
    grid-template-columns: 13% 1fr;
    gap: 10px;
    padding: 27px 12px 27px 0;
    border-left: 3px solid transparent;
    opacity: 0.48;
    transition:
      opacity 0.3s ease,
      background 0.3s ease,
      border-color 0.3s ease,
      padding 0.3s ease;
  }
  .difference-row p {
    grid-column: 2;
  }
  .difference-row.is-mobile-active {
    border-left-color: var(--gold);
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    padding-left: 12px;
  }
  .process-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-list li {
    padding-right: 0;
  }
  .process-list h3 {
    margin-top: 30px;
  }
  .fees-grid {
    margin-top: 55px;
  }
  .fee-card {
    margin: 0;
  }
  .writing-head {
    display: block;
  }
  .writing-head .text-link {
    margin-top: 28px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .article-image {
    height: 230px;
  }
  .closing-section {
    padding: 100px 0;
  }
  .closing-inner h2 {
    font-size: 3.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
    line-height: 2.2;
    margin-top: 50px;
  }
  .footer-bottom span {
    display: block;
  }
  .footer-grid a,
  .footer-grid span,
  .footer-bottom span {
    overflow-wrap: anywhere;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .orbital {
    animation: none;
  }
  .cursor-glow {
    display: none;
  }
  .hero-map-scene {
    display: none;
  }
  .animated-form-line::after {
    animation: none;
    opacity: 1;
    transform: scaleX(1);
  }
  .closing-primary-cta {
    transform: none;
    transition: none;
  }
  .calendly-loading i {
    animation: none;
  }
}
@media (min-width: 901px) and (max-height: 800px) {
  .scroll-cue {
    display: none;
  }
}
