/* Sincero Global */
:root {
  --paper: #f4f7f3;
  --paper-2: #e9f1ea;
  --ink: #0e1a17;
  --ink-2: #3c4a45;
  --ink-3: #5d6b66;
  --rule: #d5ded7;
  --green: #4dae4b;
  --leaf: #12b26b;
  --teal: #00b5b2;
  --teal-deep: #0b6e66;
  --action: #237a36;
  --action-hover: #1b6329;
  --evergreen: #0b4a40;
  --evergreen-2: #0f5a4e;
  --on-dark: #eef6f0;
  --on-dark-2: #b9d6c9;
  --mint: #cfe9d6;
  --radius: 6px;
  --gutter: clamp(16px, 4vw, 48px);
  --max: 1280px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font: "M PLUS 1", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: .03em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="en"] body { letter-spacing: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; text-decoration-thickness: 1px; }
::selection { background: var(--green); color: #fff; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
html { scrollbar-color: var(--teal-deep) var(--paper-2); }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
:lang(ja) :is(h1, h2, h3, p, dd, li, blockquote, .flow b, .flow span, .tab, .v, .who, .t) { word-break: keep-all; overflow-wrap: anywhere; }
@supports (word-break: auto-phrase) { :lang(ja) :is(h1, h2, h3, p, dd, li, blockquote, .flow b, .flow span, .tab, .v, .who, .t) { word-break: auto-phrase; } }
p { text-wrap: pretty; }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -64px; z-index: 100; background: var(--ink); color: #fff; padding: 8px 16px; border-radius: var(--radius); }
.skip:focus { top: 16px; }

/* Header */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: stretch; justify-content: space-between;
  height: 80px; padding-left: var(--gutter);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.hdr.is-solid { background: rgb(244 247 243 / .94); box-shadow: 0 1px 0 var(--rule), 0 8px 24px -16px rgb(14 26 23 / .25); }
@supports (backdrop-filter: blur(8px)) { .hdr.is-solid { background: rgb(244 247 243 / .8); backdrop-filter: blur(14px) saturate(1.2); } }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 200px; height: auto; }
.nav { display: flex; align-items: center; gap: 32px; margin-left: auto; padding-right: 32px; }
.nav a { text-decoration: none; font-size: 14px; font-weight: 700; position: relative; padding: 8px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:hover::after { transform: scaleX(1); }
.nav .lang { font-size: 12px; font-weight: 700; letter-spacing: .08em; border: 1px solid var(--rule); border-radius: 99px; padding: 8px 12px; line-height: 1; }
.nav .lang::after { display: none; }
.hdr-cta { display: grid; grid-template-rows: 1fr 1fr; width: 176px; }
.hdr-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; text-decoration: none; font-size: 13px; font-weight: 800; transition: background .25s; }
.hdr-cta .c1 { background: var(--evergreen); }
.hdr-cta .c1:hover { background: var(--evergreen-2); }
.hdr-cta .c2 { background: var(--action); }
.hdr-cta .c2:hover { background: var(--action-hover); }
.hdr-cta svg { width: 14px; height: 14px; }
.menu-btn { display: none; }

/* Buttons */
.btn {
  --bg: var(--action); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: space-between; gap: 24px;
  min-width: 248px; min-height: 56px; padding: 8px 8px 8px 24px;
  background: var(--bg); color: var(--fg); border-radius: 99px;
  font-weight: 800; font-size: 15px; text-decoration: none; border: 0; cursor: pointer; font-family: inherit;
  box-shadow: 0 10px 24px -14px rgb(35 122 54 / .8);
  transition: background .25s, transform .4s var(--ease), box-shadow .4s var(--ease);
}
.btn .dot { width: 40px; height: 40px; border-radius: 50%; background: rgb(255 255 255 / .18); display: grid; place-items: center; transition: transform .4s var(--ease), background .25s; }
.btn .dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; transition: transform .4s var(--ease); }
.btn:hover { background: var(--action-hover); transform: translateY(-2px); box-shadow: 0 16px 28px -14px rgb(35 122 54 / .8); }
.btn:hover .dot { transform: translateX(4px); background: rgb(255 255 255 / .28); }
.btn:hover .dot::before { transform: scale(1.5); }
.btn.ghost { --bg: #fff; --fg: var(--ink); box-shadow: 0 0 0 1px var(--rule), 0 10px 24px -18px rgb(14 26 23 / .5); }
.btn.ghost .dot { background: var(--paper-2); color: var(--action); }
.btn.ghost:hover { background: #fff; }
.btn.light { --bg: #fff; --fg: var(--evergreen); box-shadow: 0 10px 24px -14px rgb(0 0 0 / .4); }
.btn.light .dot { background: var(--mint); color: var(--evergreen); }
.btn.light:hover { background: #fff; }
.link-arrow { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; font-size: 15px; }
.link-arrow .dot { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--green); display: grid; place-items: center; transition: background .25s, transform .4s var(--ease); }
.link-arrow .dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); transition: background .25s; }
.link-arrow:hover .dot { background: var(--green); transform: translateX(4px); }
.link-arrow:hover .dot::before { background: #fff; }

/* Hero */
.hero { position: relative; padding-top: 80px; min-height: 100svh; overflow: hidden; }
.ghost-row { position: absolute; left: 0; top: 13%; width: 100%; pointer-events: none; overflow: hidden; }
.ghost-track { display: flex; width: max-content; animation: drift 60s linear infinite; }
.ghost-track span {
  font-size: clamp(88px, 11vw, 168px); font-weight: 800; line-height: 1; white-space: nowrap; padding-right: .6em;
  color: transparent; -webkit-text-stroke: 2px #c3d2c8;
}
@keyframes drift { to { transform: translateX(-50%); } }
.stage { position: relative; width: 100%; }
.stage svg { width: 100%; height: auto; overflow: visible; }
.stage.m { display: none; }
.ribbon { fill: none; stroke-linecap: round; }
.orb { animation: bob 7s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes bob { 50% { transform: translateY(-14px); } }
.hero-copy { position: absolute; left: 0; right: 0; bottom: max(40px, 5vh); z-index: 3; }
.hero-copy .wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 32px; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 6rem); line-height: 1.08; font-weight: 800; letter-spacing: -.01em; }
html[lang="en"] .hero h1 { letter-spacing: -.03em; line-height: 1.06; font-size: clamp(2.4rem, 3.6vw, 3.4rem); }
.hero h1 .ln { display: block; overflow: hidden; padding-bottom: .16em; margin-bottom: -.16em; }
.hero.done h1 .ln { overflow: visible; }
.hero h1 .ln > span { display: block; }
.hero .lede { max-width: 34em; margin-top: 24px; color: var(--ink-2); font-size: 15px; font-weight: 500; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.scroll-cue { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-decoration: none; padding-bottom: 8px; }
.scroll-cue .dot { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--green); display: grid; place-items: center; }
.scroll-cue .dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: fall 2.2s var(--ease) infinite; }
@keyframes fall { 0% { transform: translateY(-6px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(6px); opacity: 0; } }

/* License strip */
.license { background: #fff; border-block: 1px solid var(--rule); }
.license .wrap { display: grid; grid-template-columns: auto repeat(4, minmax(0, 1fr)); }
.license .cell { padding: 24px 24px; border-left: 1px solid var(--rule); display: grid; gap: 4px; align-content: center; }
.license .cell:first-child { border-left: 0; padding-left: 0; }
.license .k { font-size: 12px; color: var(--ink-3); font-weight: 700; }
.license .v { font-size: 20px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.license .seal { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 14px; line-height: 1.15; }
.license .seal svg { width: 36px; height: 36px; flex: none; }

/* Sections */
.sec { padding-block: clamp(80px, 11vw, 160px); position: relative; }
.sec > .wrap { position: relative; z-index: 1; }
.thread { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; clip-path: inset(0 0 calc((1 - var(--p, 1)) * 100%) 0); }
.h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.15; font-weight: 800; letter-spacing: 0; }
html[lang="en"] .h2 { letter-spacing: -.02em; line-height: 1.08; }
.body { color: var(--ink-2); font-size: 16px; line-height: 1.45; max-width: 36em; }
.body + .body { margin-top: 16px; }

/* About */
.about .wrap { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 0 24px; align-items: start; }
.about .copy { grid-column: 1 / span 6; }
.about .copy .body { margin-top: 32px; }
.about .copy .link-arrow { margin-top: 40px; }
.about .quote + .link-arrow { margin-top: 40px; }
.about .visual { grid-column: 8 / -1; }
.frame { position: relative; }
.frame::before { content: ""; position: absolute; inset: 20px -20px -20px 20px; background: var(--mint); border-radius: var(--radius); }
.frame img { position: relative; border-radius: var(--radius); width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: 64% 50%; }
.quote { margin: 56px 0 0; padding: 0; }
.quote blockquote { margin: 0; font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; line-height: 1.45; letter-spacing: .02em; }
.quote blockquote::before { content: ""; display: block; width: 48px; height: 8px; border-radius: 99px; background: linear-gradient(90deg, var(--green), var(--teal)); margin-bottom: 24px; }
.quote figcaption { margin-top: 24px; display: grid; gap: 4px; }
.quote .who { font-weight: 800; font-size: 18px; }
.quote .role { color: var(--ink-3); font-size: 13px; font-weight: 600; }
.quote .council { margin-top: 16px; font-size: 14px; color: var(--ink-2); max-width: 32em; }

/* Reasons */
.reasons { background: #fff; }
.reasons .wrap { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 0 24px; }
.reasons .head { grid-column: 1 / span 4; }
.reasons .head .body { margin-top: 24px; }
.reasons ol { grid-column: 6 / -1; list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.reasons li { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--rule); position: relative; }
.reasons li::before { content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 100%; background: linear-gradient(90deg, var(--green), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease); }
.reasons li.in::before { transform: none; }
.reasons h3 { font-size: 20px; font-weight: 800; line-height: 1.15; display: flex; gap: 12px; align-items: baseline; }
.reasons h3 i { flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--green); transform: translateY(-2px); }
.reasons li:nth-child(2) h3 i { background: var(--leaf); }
.reasons li:nth-child(3) h3 i { background: #3ab87e; }
.reasons li:nth-child(4) h3 i { background: var(--teal); }
.reasons li p { color: var(--ink-2); }

/* Services */
.services { background: var(--evergreen); color: var(--on-dark); overflow: hidden; }
.services::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 20% 70%, rgb(18 178 107 / .22), transparent 70%); pointer-events: none; }
.services .wrap { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 0 24px; align-items: end; }
.services .people { grid-column: 1 / span 6; margin-left: calc(-1 * var(--gutter)); }
.services .people svg { width: 100%; height: auto; overflow: visible; }
.services .people image { transition: transform 1.2s var(--ease); }
.panel { grid-column: 7 / -1; position: relative; z-index: 2; background: #fff; color: var(--ink); border-radius: 8px; padding: clamp(24px, 3.4vw, 48px); box-shadow: 0 40px 80px -40px rgb(0 0 0 / .55); }
.panel .h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.panel .intro { margin-top: 16px; color: var(--ink-2); }
.tabs { display: flex; gap: 8px; margin-top: 32px; padding: 4px; background: var(--paper-2); border-radius: 99px; }
.tab { flex: 1; border: 0; background: transparent; font: inherit; font-weight: 800; font-size: 14px; letter-spacing: .02em; padding: 12px 4px; border-radius: 99px; color: var(--ink-2); white-space: nowrap; cursor: pointer; transition: background .3s var(--ease), color .3s, box-shadow .3s; }
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { background: #fff; color: var(--action); box-shadow: 0 6px 16px -10px rgb(14 26 23 / .45); }
.tabpanel { margin-top: 24px; }
.tabpanel[hidden] { display: none; }
.tabpanel.show { animation: rise .6s var(--ease); }
@keyframes rise { from { opacity: 0; transform: translateY(8px); filter: blur(4px); } }
.tabpanel .desc { color: var(--ink-2); }
.tabpanel .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; padding: 0; list-style: none; }
.tabpanel .tags li { font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 99px; background: var(--paper-2); color: var(--teal-deep); }
.flow { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; counter-reset: step; position: relative; }
.flow::before { content: ""; position: absolute; left: 12px; right: 12px; top: 11px; height: 2px; background: linear-gradient(90deg, var(--green), var(--teal)); border-radius: 2px; }
.flow li { counter-increment: step; position: relative; padding-top: 36px; }
.flow li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 2px solid var(--green); display: grid; place-items: center; font-size: 11px; font-weight: 800; color: var(--action); }
.flow b { display: block; font-size: 14px; line-height: 1.15; }
.flow span { display: block; margin-top: 4px; font-size: 12px; line-height: 1.45; color: var(--ink-3); }
.checks { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.checks li { display: flex; gap: 12px; align-items: baseline; font-weight: 700; font-size: 15px; }
.checks li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--green); transform: translateY(-2px); }
.panel .note { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--rule); font-size: 13px; color: var(--ink-3); }

/* Residence support */
.visa .wrap { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 48px 24px; }
.visa .head { grid-column: 1 / span 5; }
.visa .head .body { margin-top: 24px; }
.visa .supports { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.visa .supports li { padding: 8px 16px; border-radius: 99px; background: #fff; box-shadow: 0 0 0 1px var(--rule); font-weight: 700; font-size: 14px; }
.fees { grid-column: 7 / -1; background: #fff; border-radius: 8px; padding: clamp(24px, 3vw, 40px); box-shadow: 0 0 0 1px var(--rule), 0 30px 60px -40px rgb(11 74 64 / .45); }
.fees h3 { font-size: 20px; font-weight: 800; line-height: 1.15; }
.fees .sub { margin-top: 8px; font-size: 13px; color: var(--ink-3); }
.fees fieldset { border: 0; margin: 24px 0 0; padding: 0; }
.fees legend { font-size: 13px; font-weight: 800; margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { position: relative; }
.chips input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chips span { display: block; padding: 8px 16px; border-radius: 99px; background: var(--paper-2); font-size: 13px; font-weight: 700; transition: background .25s, color .25s, box-shadow .25s; cursor: pointer; }
.chips input:checked + span { background: var(--evergreen); color: #fff; }
.chips input:focus-visible + span { outline: 3px solid var(--teal); outline-offset: 2px; }
.chips label:hover span { box-shadow: 0 0 0 1px var(--green); }
.readout { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); }
.readout div { padding: 16px 0 0; }
.readout div + div { padding-left: 24px; border-left: 1px solid var(--rule); }
.readout .k { font-size: 12px; font-weight: 800; color: var(--ink-3); }
.readout .v { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1.1; margin-top: 4px; letter-spacing: -.01em; }
.readout .v small { font-size: .4em; font-weight: 700; margin-left: 4px; }
.pr { margin-top: 24px; padding: 16px 20px; border-radius: 6px; background: var(--evergreen); color: var(--on-dark); display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; }
.pr b { font-size: 14px; }
.pr .old { color: var(--on-dark-2); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.pr .new { font-size: 24px; font-weight: 800; font-variant-numeric: tabular-nums; }
.fees .src { margin-top: 16px; font-size: 12px; color: var(--ink-3); }
.fees .src a { color: var(--teal-deep); font-weight: 700; }

/* Jobs */
.jobs { background: var(--paper-2); }
.jobs .top { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.job { margin-top: 48px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 30px 60px -44px rgb(11 74 64 / .6); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.job:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -44px rgb(11 74 64 / .7); }
.job .main { padding: clamp(24px, 3.4vw, 48px); }
.badge { display: inline-block; font-size: 12px; font-weight: 800; color: #fff; background: #d8452b; padding: 4px 12px; border-radius: 99px; }
.job h3 { margin-top: 16px; font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800; line-height: 1.15; }
.job .pay { margin-top: 16px; display: flex; align-items: baseline; gap: 8px; }
.job .pay b { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--action); font-variant-numeric: tabular-nums; line-height: 1; }
.job .pay span { font-weight: 700; color: var(--ink-2); }
.job .desc { margin-top: 24px; color: var(--ink-2); max-width: 34em; }
.job .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.job dl { margin: 0; padding: clamp(24px, 3.4vw, 48px); background: var(--evergreen); color: var(--on-dark); display: grid; gap: 20px; align-content: start; }
.job dt { font-size: 12px; font-weight: 800; color: var(--on-dark-2); }
.job dd { margin: 4px 0 0; font-weight: 700; line-height: 1.45; }

/* News */
.news .top { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.news ul { list-style: none; padding: 0; margin: 48px 0 0; border-top: 1px solid var(--ink); }
.news li a { display: grid; grid-template-columns: 120px minmax(0, 1fr) 32px; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--rule); text-decoration: none; transition: background .3s; }
.news li a:hover { background: linear-gradient(90deg, var(--paper-2), transparent 60%); }
.news .t, .news time { transition: transform .4s var(--ease); }
.news li a:hover .t, .news li a:hover time { transform: translateX(12px); }
.news time { font-size: 14px; font-weight: 700; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.news .t { font-weight: 700; font-size: 17px; line-height: 1.45; }
.news .dot { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--green); display: grid; place-items: center; transition: background .3s; }
.news .dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.news li a:hover .dot { background: var(--green); }
.news li a:hover .dot::before { background: #fff; }

/* Contact */
.contact { background: var(--evergreen); color: var(--on-dark); overflow: hidden; }
.contact svg.tail { position: absolute; right: -150px; top: 0; height: 100%; width: auto; opacity: .95; pointer-events: none; }
.contact .wrap { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 40px 24px; }
.contact .h2 { grid-column: 1 / span 7; font-size: clamp(2.2rem, 5vw, 4.25rem); line-height: 1.1; }
.contact .lede { grid-column: 1 / span 6; color: var(--on-dark-2); }
.contact .ways { grid-column: 1 / span 8; display: grid; grid-template-columns: 1fr 1.25fr 1fr; border-top: 1px solid rgb(255 255 255 / .2); }
.contact .ways a { padding: 24px 24px 24px 0; text-decoration: none; display: grid; gap: 8px; transition: color .25s; }
.contact .ways a + a { padding-left: 24px; border-left: 1px solid rgb(255 255 255 / .2); }
.contact .ways .k { font-size: 12px; font-weight: 800; color: var(--on-dark-2); }
.contact .ways .v { font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 800; overflow-wrap: break-word; }
.contact .ways a:hover .v { color: #9fe2b5; }

/* Footer */
.ftr { background: #06332c; color: var(--on-dark-2); padding: 64px 0 32px; font-size: 14px; }
.ftr .wrap { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 32px 24px; }
.ftr .co { grid-column: 1 / span 5; display: grid; gap: 12px; align-content: start; }
.ftr .co img { width: 220px; }
.ftr .co b { color: #fff; font-size: 15px; }
.ftr nav { grid-column: 7 / span 3; display: grid; gap: 12px; align-content: start; }
.ftr .social { grid-column: 10 / -1; display: grid; gap: 12px; align-content: start; }
.ftr a { text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr .base { grid-column: 1 / -1; border-top: 1px solid rgb(255 255 255 / .12); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; }

/* Motion gating: content is visible without JS */
.js .hero h1 .ln > span { transform: translateY(105%); transition: transform 1.1s var(--ease); }
.js .hero.ready h1 .ln > span { transform: none; }
.js .hero.ready h1 .ln:nth-child(2) > span { transition-delay: .12s; }
.js .hero .lede, .js .hero .actions, .js .license { opacity: 0; transform: translateY(12px); transition: opacity .9s var(--ease) .5s, transform .9s var(--ease) .5s; }
.js .hero.ready .lede, .js .hero.ready .actions, .js .hero.ready ~ .license { opacity: 1; transform: none; }
.js .hero-photo { clip-path: inset(100% 0 0 0 round 6px); transition: clip-path 1.3s var(--ease) .15s; }
.js .hero.ready .hero-photo { clip-path: inset(0 0 0 0 round 6px); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .hero h1 .ln > span, .js .hero .lede, .js .hero .actions, .js .license { transform: none; opacity: 1; }
  .js .hero-photo { clip-path: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .nav { gap: 20px; padding-right: 20px; }
  .brand img { width: 170px; }
  .license .wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .license .cell { border-left: 0; border-top: 1px solid var(--rule); padding: 16px 0; }
  .license .cell.seal-cell { grid-column: 1 / -1; border-top: 0; }
  .license .cell:nth-child(even) { padding-right: 16px; }
}
@media (max-width: 900px) {
  .hdr { height: 64px; padding-right: 8px; }
  .hdr.is-solid { height: 64px; }
  .brand img { width: 168px; }
  .nav, .hdr-cta { display: none; }
  .menu-btn { display: grid; place-items: center; width: 48px; height: 48px; margin: auto 0; border: 0; background: transparent; cursor: pointer; }
  .menu-btn span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
  .menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: transform .35s var(--ease); }
  .menu-btn span::before { top: -7px; } .menu-btn span::after { top: 7px; }
  .menu-open .menu-btn span { background: transparent; }
  .menu-open .menu-btn span::before { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-btn span::after { transform: translateY(-7px) rotate(-45deg); }
  .menu-open .nav { display: flex; position: fixed; inset: 64px 0 0; flex-direction: column; align-items: stretch; gap: 0; padding: 16px var(--gutter) 32px; background: var(--paper); margin: 0; overflow: auto; }
  .menu-open .nav a { font-size: 22px; padding: 16px 0; border-bottom: 1px solid var(--rule); }
  .menu-open .nav a::after { display: none; }
  .menu-open .nav .lang { align-self: start; margin-top: 24px; font-size: 13px; border-bottom: 1px solid var(--rule); }
  .menu-open .nav .m-cta { display: grid; }
  .hero { padding-top: 64px; min-height: 0; }
  .stage.d { display: none; }
  .stage.m { display: block; }
  .ghost-row { top: 12%; }
  .hero-copy { position: relative; bottom: auto; margin-top: -8px; padding-bottom: 40px; }
  .hero-copy .wrap { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .about .wrap, .reasons .wrap, .services .wrap, .visa .wrap, .contact .wrap, .ftr .wrap { grid-template-columns: 1fr; }
  .about .copy, .about .visual, .reasons .head, .reasons ol, .services .people, .panel, .visa .head, .fees, .contact .h2, .contact .lede, .contact .ways, .ftr .co, .ftr nav, .ftr .social { grid-column: 1 / -1; }
  .thread { display: none; }
  .about .visual { margin-top: 56px; }
  .frame img { aspect-ratio: 3 / 2; }
  .reasons ol { margin-top: 40px; }
  .reasons li { grid-template-columns: 1fr; gap: 8px; }
  .services .people { margin: 0 calc(-1 * var(--gutter)); }
  .panel { margin-top: -24px; }
  .job { grid-template-columns: 1fr; }
  .contact .ways { grid-template-columns: 1fr; }
  .contact .ways a + a { padding-left: 0; border-left: 0; border-top: 1px solid rgb(255 255 255 / .2); }
  .contact svg.tail { display: none; }
}
@media (max-width: 560px) {
  .btn { min-width: 0; width: 100%; }
  .flow { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .flow::before { display: none; }
  .news li a { grid-template-columns: 1fr 32px; gap: 8px 16px; }
  .news time { grid-column: 1 / -1; }
  .readout div + div { padding-left: 16px; }
  .license .v { font-size: 17px; }
}
.m-cta { display: none; gap: 8px; margin-top: 24px; }
.m-cta a { border: 0 !important; justify-content: space-between; }
