:root {
  --ink: #172a29;
  --teal: #0d3b3a;
  --teal-deep: #082d2c;
  --coral: #e8715c;
  --coral-dark: #ca5846;
  --paper: #f7f2e9;
  --paper-warm: #efe7da;
  --white: #fffdf8;
  --mint: #b8d8cf;
  --line: rgba(23, 42, 41, 0.16);
  --muted: #5f6c69;
  --shadow: 0 28px 80px rgba(13, 59, 58, 0.13);
  --sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --serif: "Shippori Mincho", "Yu Mincho", serif;
  --container: min(1320px, calc(100vw - 96px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

html.font-large { font-size: 112.5%; }
html.font-large body { zoom: 1.1; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
address { font-style: normal; }

::selection { background: var(--coral); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

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

.utility-bar {
  min-height: 34px;
  background: var(--teal-deep);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  letter-spacing: .06em;
}

.utility-inner {
  width: var(--container);
  margin: auto;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p { margin: 0; }

.display-tools { display: flex; align-items: center; gap: 6px; }

.display-tools button {
  min-width: 31px;
  height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
}

.display-tools button[aria-pressed="true"] { background: #fff; color: var(--teal); }

.contrast-button { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; }
.contrast-dot { width: 12px; height: 12px; border: 1px solid currentColor; border-radius: 50%; background: linear-gradient(90deg, currentColor 50%, transparent 50%); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 88px;
  background: rgba(247, 242, 233, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled { height: 76px; border-color: var(--line); box-shadow: 0 10px 40px rgba(13,59,58,.06); }

.header-inner {
  width: var(--container);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; line-height: 1.15; }
.brand img { width: 50px; height: 50px; }
.brand-copy { display: flex; flex-direction: column; }
.brand-name { font-size: 23px; font-weight: 800; letter-spacing: .04em; }
.brand-sub { margin-top: 4px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .18em; }

.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -10px; width: 100%; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--coral); transition: transform .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-contact {
  height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.header-contact:hover { background: var(--coral-dark); transform: translateY(-2px); }
.header-contact svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.menu-button { display: none; width: 46px; height: 46px; border: 0; background: var(--teal); cursor: pointer; }
.menu-button span { display: block; width: 20px; height: 1.5px; margin: 6px auto; background: #fff; transition: transform .2s; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu { position: fixed; z-index: -1; top: 76px; left: 0; width: 100%; height: calc(100vh - 76px); padding: 8vh 8vw; background: var(--teal); color: #fff; }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 18px 0; display: flex; gap: 24px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.15); font-family: var(--serif); font-size: clamp(22px, 6vw, 34px); }
.mobile-menu nav span { color: var(--coral); font: 500 10px var(--sans); letter-spacing: .12em; }
.mobile-contact { margin-top: 36px; display: inline-flex; padding: 14px 20px; background: var(--coral); font-weight: 700; }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 80px));
  display: grid;
  grid-template-columns: minmax(430px, .88fr) minmax(560px, 1.12fr);
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(86px, 9vw, 142px) clamp(32px, 3.8vw, 72px) 145px clamp(48px, 6.8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker { margin: 0 0 34px; display: flex; align-items: center; gap: 14px; color: var(--coral-dark); font-size: 10px; font-weight: 800; letter-spacing: .21em; }
.hero-kicker span { width: 36px; height: 1px; background: currentColor; }

.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 3.8vw, 64px); font-weight: 600; line-height: 1.35; letter-spacing: .015em; }
.hero h1 em { position: relative; display: inline-block; color: var(--teal); font-style: normal; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: -.1em; height: .1em; background: var(--coral); opacity: .42; }
.hero-lead { max-width: 620px; margin: 34px 0 0; color: #4c5c59; font-size: clamp(15px, 1.15vw, 18px); line-height: 2.15; }
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 32px; }

.button { min-height: 60px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: space-between; gap: 44px; font-size: 14px; font-weight: 700; }
.button-primary { background: var(--teal); color: #fff; box-shadow: 8px 8px 0 var(--mint); transition: transform .2s, box-shadow .2s, background .2s; }
.button-primary:hover { transform: translate(4px,4px); box-shadow: 4px 4px 0 var(--mint); background: var(--teal-deep); }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.text-link span { color: var(--coral); font-size: 16px; }

.hero-visual { position: relative; min-height: 650px; margin: 0; overflow: hidden; background: #d8ded9; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,59,58,.18), transparent 32%), linear-gradient(0deg, rgba(8,45,44,.24), transparent 35%); pointer-events: none; }
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; }
.hero-visual img { object-fit: cover; object-position: 57% center; }
.hero-visual figcaption { position: absolute; z-index: 3; right: 22px; bottom: 16px; color: rgba(255,255,255,.84); font-size: 9px; letter-spacing: .08em; }

.hero-quote { position: absolute; z-index: 3; left: 34px; bottom: 66px; width: 248px; padding: 24px 26px; background: rgba(255,253,248,.92); backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.hero-quote span { color: var(--coral-dark); font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.hero-quote p { margin: 10px 0 0; font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1.7; }
.hero-index { position: absolute; z-index: 3; left: 0; bottom: 0; width: 50%; height: 44px; padding: 0 42px; display: flex; align-items: center; justify-content: space-between; background: var(--paper-warm); color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .2em; }

.signal-bar { min-height: 126px; padding-left: max(48px, calc((100vw - 1320px)/2)); display: grid; grid-template-columns: 1.1fr repeat(3, 1fr) 90px; align-items: stretch; background: var(--white); border-bottom: 1px solid var(--line); }
.signal-intro, .signal-item { display: flex; align-items: center; border-right: 1px solid var(--line); }
.signal-intro { gap: 13px; padding-right: 32px; }
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px rgba(232,113,92,.13); }
.signal-intro p { margin: 0; line-height: 1.45; }
.signal-intro b { display: block; font-size: 13px; }
.signal-intro small { color: var(--muted); font-size: 10px; }
.signal-item { gap: 17px; padding: 22px clamp(18px, 2.5vw, 40px); }
.signal-item strong { color: var(--teal); font-family: var(--serif); font-size: clamp(33px, 3vw, 49px); font-weight: 600; letter-spacing: -.04em; }
.signal-item p { margin: 0; font-size: 12px; font-weight: 700; line-height: 1.55; }
.signal-item span { color: var(--muted); font-size: 10px; font-weight: 400; }
.signal-link { display: grid; place-items: center; background: var(--coral); color: #fff; transition: background .2s; }
.signal-link:hover { background: var(--coral-dark); }
.signal-link svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.section { padding: clamp(105px, 11vw, 174px) 0; }
.section-grid { width: var(--container); margin: auto; display: grid; grid-template-columns: 105px 1fr; gap: clamp(36px, 5vw, 76px); }
.section-rail { border-right: 1px solid var(--line); }
.section-number { display: block; color: var(--coral-dark); font-family: var(--serif); font-size: 31px; }
.section-rail p { margin: 30px 0 0; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .22em; writing-mode: vertical-rl; }
.eyebrow { margin: 0 0 20px; color: var(--coral-dark); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.eyebrow::before { content: ""; width: 24px; height: 1px; margin-right: 10px; display: inline-block; vertical-align: middle; background: currentColor; }

.intro-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(42px, 7vw, 100px); align-items: start; }
.intro-heading h2, .consult-title-row h2, .records-header h2, .about-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 4.4vw, 66px); font-weight: 600; line-height: 1.45; letter-spacing: .02em; }
.intro-copy { padding-top: 14px; }
.intro-copy p { margin: 0 0 20px; color: #4f5f5c; line-height: 2.1; }
.intro-copy p:first-child { color: var(--ink); font-size: 18px; font-weight: 600; }

.role-cards { margin-top: 84px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.role-card { min-height: 352px; padding: clamp(28px, 3vw, 46px); background: var(--white); transition: background .25s, transform .25s; }
.role-card:hover { position: relative; z-index: 2; transform: translateY(-8px); background: #fff; box-shadow: var(--shadow); }
.role-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: var(--paper-warm); color: var(--teal); }
.role-icon svg { width: 37px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.role-card > span { margin-top: 34px; display: block; color: var(--coral-dark); font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.role-card h3 { margin: 4px 0 14px; font-family: var(--serif); font-size: 30px; font-weight: 600; }
.role-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }

.activity-section { padding: clamp(100px, 10vw, 160px) 0; overflow: hidden; background: var(--teal); color: #fff; }
.activity-wrap { width: var(--container); margin: auto; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 7vw, 110px); align-items: start; }
.eyebrow-light { color: #f09b87; }
.activity-heading { position: sticky; top: 130px; }
.activity-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4.3vw, 65px); font-weight: 500; line-height: 1.45; }
.activity-heading > p:not(.eyebrow) { max-width: 520px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 2.1; }
.activity-stamp { position: relative; width: 156px; height: 156px; margin-top: 55px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; text-align: center; }
.activity-stamp::before { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(255,255,255,.18); border-radius: 50%; }
.activity-stamp span { position: absolute; top: 25px; color: var(--mint); font-size: 8px; letter-spacing: .2em; }
.activity-stamp strong { margin-top: 8px; font: 500 46px var(--serif); }
.activity-stamp small { position: absolute; bottom: 25px; font-size: 9px; letter-spacing: .13em; }

.activity-flow { position: relative; }
.activity-flow::before { content: ""; position: absolute; left: 40px; top: 0; bottom: 0; border-left: 1px dashed rgba(255,255,255,.18); }
.flow-card { position: relative; min-height: 245px; margin-bottom: 18px; padding: 38px 42px 34px 106px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); transition: background .25s, transform .25s; }
.flow-card:hover { transform: translateX(8px); background: rgba(255,255,255,.095); }
.flow-top span { position: absolute; left: 25px; top: 38px; width: 31px; height: 31px; display: grid; place-items: center; background: var(--coral); border-radius: 50%; color: #fff; font-size: 9px; font-weight: 800; }
.flow-top small { color: var(--mint); font-size: 8px; letter-spacing: .22em; }
.flow-card h3 { margin: 7px 0 12px; font: 600 27px var(--serif); }
.flow-card p { max-width: 560px; margin: 0; color: rgba(255,255,255,.67); font-size: 13px; }
.flow-foot { margin-top: 26px; display: flex; align-items: center; gap: 15px; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.flow-foot i { flex: 1; height: 1px; background: rgba(255,255,255,.14); }

.consult-section { background: var(--white); }
.consult-title-row { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.consult-title-row > p { margin: 0 0 8px; color: var(--muted); line-height: 2.05; }
.concern-grid { margin-top: 74px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.concern-card { min-height: 160px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); border-top: 3px solid var(--teal); }
.concern-card span { color: var(--coral-dark); font-size: 9px; font-weight: 800; }
.concern-card p { margin: 18px 0 0; font-family: var(--serif); font-size: 17px; font-weight: 600; line-height: 1.7; }

.consult-ticket { margin-top: 62px; display: grid; grid-template-columns: 140px 1fr 180px; background: var(--paper-warm); box-shadow: var(--shadow); }
.ticket-label { padding: 35px 22px; display: flex; flex-direction: column; align-items: center; background: var(--teal); color: #fff; }
.ticket-label span { font-size: 8px; letter-spacing: .18em; text-align: center; line-height: 1.7; }
.ticket-label i { flex: 1; margin: 20px 0; border-left: 1px dashed rgba(255,255,255,.32); }
.ticket-label small { font: 500 15px var(--serif); writing-mode: vertical-rl; letter-spacing: .16em; }
.ticket-main { padding: 42px 50px; }
.ticket-kicker { margin: 0; color: var(--coral-dark); font-size: 10px; font-weight: 800; letter-spacing: .17em; }
.ticket-main h3 { margin: 2px 0 24px; font: 600 38px var(--serif); }
.ticket-main h3 span { margin: 0 5px; color: var(--coral); font-size: 62px; }
.ticket-main dl { margin: 0; display: flex; gap: 48px; }
.ticket-main dl div { display: flex; gap: 12px; align-items: baseline; }
.ticket-main dt { color: var(--muted); font-size: 10px; font-weight: 700; }
.ticket-main dd { margin: 0; font-size: 13px; font-weight: 700; }
.ticket-note { margin: 24px 0 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.ticket-action { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 35px 30px; background: var(--coral); color: #fff; transition: background .2s; }
.ticket-action:hover { background: var(--coral-dark); }
.ticket-action::before, .ticket-action::after { content: ""; position: absolute; left: -9px; width: 18px; height: 18px; border-radius: 50%; background: var(--white); }
.ticket-action::before { top: -9px; }
.ticket-action::after { bottom: -9px; }
.ticket-action span { font: 600 17px var(--serif); line-height: 1.65; }
.ticket-action svg { align-self: flex-end; width: 34px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.privacy-note { margin-top: 40px; padding: 26px 30px; display: flex; gap: 22px; background: rgba(184,216,207,.26); border-left: 4px solid var(--mint); }
.privacy-note svg { flex: 0 0 auto; width: 34px; fill: none; stroke: var(--teal); stroke-width: 1.5; }
.privacy-note h3 { margin: 0 0 5px; font-size: 14px; }
.privacy-note p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.8; }

.training-section { min-height: 650px; display: grid; grid-template-columns: 1fr 1fr; background: var(--coral); color: #fff; overflow: hidden; }
.training-copy { padding: clamp(90px, 10vw, 160px) clamp(48px, 8vw, 130px) clamp(90px, 10vw, 160px) max(48px, calc((100vw - 1320px)/2)); display: flex; flex-direction: column; justify-content: center; }
.training-copy .eyebrow { color: #fff; opacity: .82; }
.training-copy h2 { margin: 0; font: 600 clamp(44px, 4.8vw, 72px)/1.4 var(--serif); }
.training-copy > p:not(.eyebrow) { max-width: 550px; margin: 28px 0; color: rgba(255,255,255,.8); font-size: 14px; line-height: 2.05; }
.dark-link { align-self: flex-start; margin-top: 8px; }
.dark-link span { color: var(--teal); }
.training-graphic { position: relative; min-height: 650px; background: var(--paper-warm); }
.training-graphic::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(13,59,58,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(13,59,58,.07) 1px, transparent 1px); background-size: 48px 48px; }
.orbit { position: absolute; border: 1px solid rgba(13,59,58,.27); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--coral); }
.orbit span { position: absolute; padding: 5px 10px; background: var(--paper-warm); color: var(--teal); font: 600 12px var(--serif); }
.orbit-one { width: 520px; height: 520px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.orbit-one::before { left: 74px; top: 54px; }
.orbit-one span { left: 43px; top: 84px; }
.orbit-two { width: 360px; height: 360px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.orbit-two::before { right: 22px; bottom: 96px; background: var(--teal); }
.orbit-two span { right: 7px; bottom: 123px; }
.orbit-three { width: 210px; height: 210px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.orbit-three::before { left: 13px; bottom: 51px; }
.orbit-three span { left: -5px; bottom: 78px; }
.orbit-center { position: absolute; left: 50%; top: 50%; width: 130px; height: 130px; transform: translate(-50%,-50%); display: grid; place-content: center; background: var(--teal); color: #fff; border-radius: 50%; text-align: center; box-shadow: 0 16px 50px rgba(13,59,58,.25); }
.orbit-center strong { font: 500 48px/1 var(--serif); }
.orbit-center small { margin-top: 8px; color: var(--mint); font-size: 7px; letter-spacing: .17em; }

.records-section { background: var(--paper); }
.records-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.official-link { padding-bottom: 5px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 700; }
.official-link svg { width: 18px; fill: none; stroke: var(--coral-dark); stroke-width: 1.5; }
.records-list { margin-top: 64px; border-top: 1px solid var(--ink); }
.record-item { min-height: 134px; display: grid; grid-template-columns: 115px 94px 1fr 40px; gap: 24px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .2s, background .2s; }
a.record-item:hover { padding: 0 20px; background: var(--white); }
.record-item time { color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.record-type { justify-self: start; padding: 5px 10px; background: var(--teal); color: #fff; font-size: 9px; font-weight: 700; }
.record-type.coral { background: var(--coral); }
.record-type.mint { background: var(--mint); color: var(--teal); }
.record-item h3 { margin: 0 0 7px; font: 600 19px var(--serif); }
.record-item p { margin: 0; color: var(--muted); font-size: 11px; }
.record-arrow { justify-self: end; color: var(--coral-dark); font-size: 19px; }
.source-note { margin: 20px 0 0; color: var(--muted); font-size: 10px; }

.contact-section { position: relative; padding: clamp(90px, 9vw, 145px) max(48px, calc((100vw - 1320px)/2)); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(64px, 8vw, 130px); align-items: start; overflow: hidden; background: var(--teal); color: #fff; }
.contact-section::before { content: ""; position: absolute; width: 540px; height: 540px; left: -230px; bottom: -300px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.contact-intro { position: relative; z-index: 1; padding-top: 14px; }
.contact-kicker { margin: 0 0 18px; color: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.contact-intro h2 { margin: 0; font: 600 clamp(42px, 4.5vw, 68px)/1.42 var(--serif); }
.contact-intro > p:not(.contact-kicker) { max-width: 520px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 2.05; }
.contact-address { max-width: 500px; margin-top: 42px; padding: 20px 0; display: grid; grid-template-columns: 1fr auto; border-top: 1px solid rgba(255,255,255,.23); border-bottom: 1px solid rgba(255,255,255,.23); }
.contact-address small { grid-column: 1 / -1; color: var(--mint); font-size: 8px; letter-spacing: .2em; }
.contact-address span { margin-top: 6px; font-size: clamp(14px, 1.4vw, 19px); }
.contact-address svg { width: 24px; fill: none; stroke: var(--coral); stroke-width: 1.6; }

.mail-form { position: relative; z-index: 1; padding: clamp(30px, 4vw, 58px); background: var(--white); color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.19); }
.mail-form-head { margin-bottom: 34px; padding-bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--ink); }
.mail-form-head span { color: var(--coral-dark); font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.mail-form-head small { color: var(--muted); font-size: 9px; }
.mail-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mail-field { margin-bottom: 23px; display: grid; gap: 8px; }
.mail-field > span { font-size: 10px; font-weight: 700; letter-spacing: .05em; }
.mail-field i { margin-left: 6px; color: var(--coral-dark); font-size: 8px; font-style: normal; }
.mail-field input, .mail-field select, .mail-field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(23,42,41,.28); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font: 500 14px/1.7 var(--sans); transition: border-color .2s, background .2s; }
.mail-field input, .mail-field select { min-height: 48px; }
.mail-field textarea { min-height: 116px; padding: 11px 0; resize: vertical; }
.mail-field input:focus, .mail-field select:focus, .mail-field textarea:focus { border-color: var(--coral); background: rgba(232,113,92,.035); }
.mail-field input::placeholder, .mail-field textarea::placeholder { color: #8b9693; font-weight: 400; }
.mail-form-foot { margin-top: 10px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.mail-form-foot p { max-width: 420px; margin: 0; color: var(--muted); font-size: 9px; line-height: 1.75; }
.mail-form-foot button { min-width: 190px; height: 58px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: space-between; gap: 25px; border: 0; background: var(--coral); color: #fff; font-size: 12px; font-weight: 700; cursor: pointer; transition: background .2s, transform .2s; }
.mail-form-foot button:hover { background: var(--coral-dark); transform: translateY(-2px); }
.mail-form-foot button svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.mail-status { min-height: 1.6em; margin: 16px 0 0; color: var(--teal); font-size: 10px; font-weight: 700; }

.about-section { background: var(--white); }
.roots-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(46px, 8vw, 115px); align-items: end; }
.roots-intro h2 { margin: 0; font: 600 clamp(40px, 4.4vw, 66px)/1.45 var(--serif); letter-spacing: .02em; }
.roots-intro > p { margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 2.05; }
.roots-layout { margin-top: 72px; display: grid; grid-template-columns: 1.14fr .86fr; gap: 24px; }
.roots-map { position: relative; min-height: 470px; overflow: hidden; background: var(--paper-warm); border: 1px solid var(--line); }
.roots-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(13,59,58,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(13,59,58,.055) 1px, transparent 1px); background-size: 42px 42px; }
.roots-map-kicker { position: absolute; z-index: 2; top: 27px; left: 30px; color: var(--coral-dark); font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.roots-map svg { position: absolute; inset: 50px 5% 25px; width: 90%; height: calc(100% - 75px); fill: none; stroke: rgba(13,59,58,.25); stroke-width: 1.4; stroke-dasharray: 7 7; }
.roots-map svg circle { fill: var(--coral); stroke: var(--paper-warm); stroke-width: 5; stroke-dasharray: none; }
.roots-center { position: absolute; z-index: 2; left: 50%; top: 52%; width: 126px; height: 126px; transform: translate(-50%,-50%); display: grid; place-content: center; background: var(--teal); color: #fff; border-radius: 50%; text-align: center; box-shadow: 0 18px 45px rgba(13,59,58,.2); }
.roots-center strong { font: 600 29px var(--serif); }
.roots-center small { margin-top: 3px; color: var(--mint); font-size: 7px; letter-spacing: .09em; }
.roots-node { position: absolute; z-index: 2; padding: 7px 10px; background: var(--white); color: var(--teal); border: 1px solid var(--line); font-size: 9px; font-weight: 700; box-shadow: 0 8px 24px rgba(13,59,58,.08); }
.roots-node.node-one { left: 11%; bottom: 22%; }
.roots-node.node-two { right: 9%; top: 38%; }
.roots-node.node-three { left: 48%; top: 17%; }
.roots-notes { border-top: 1px solid var(--ink); }
.root-note { min-height: 156px; padding: 26px 4px; display: grid; grid-template-columns: 54px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.root-note > span { color: var(--coral-dark); font-size: 9px; font-weight: 800; }
.root-note h3 { margin: 0 0 8px; font: 600 20px var(--serif); }
.root-note p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.9; }
.roots-closing { margin-top: 54px; padding: 28px 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.roots-closing p { margin: 0; font: 600 clamp(20px, 2.1vw, 29px) var(--serif); }
.roots-closing span { color: var(--muted); font-size: 10px; }

.site-footer { padding: 74px max(48px, calc((100vw - 1320px)/2)) 28px; background: #071f1f; color: #fff; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 60px; align-items: center; padding-bottom: 58px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 58px; }
.footer-brand div { display: flex; flex-direction: column; line-height: 1.25; }
.footer-brand strong { font-size: 24px; letter-spacing: .05em; }
.footer-brand span { margin-top: 5px; color: rgba(255,255,255,.57); font-size: 10px; letter-spacing: .15em; }
.footer-top > p { margin: 0; color: rgba(255,255,255,.58); font-family: var(--serif); font-size: 14px; line-height: 1.8; }
.footer-mail { padding: 22px 0; display: grid; grid-template-columns: 1fr auto; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.footer-mail small { grid-column: 1 / -1; color: var(--mint); font-size: 8px; letter-spacing: .2em; }
.footer-mail span { margin-top: 6px; font-size: clamp(13px, 1.3vw, 18px); }
.footer-mail svg { width: 22px; fill: none; stroke: var(--coral); stroke-width: 1.6; }
.footer-bottom { padding-top: 25px; display: grid; grid-template-columns: 1fr auto auto; gap: 50px; align-items: center; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: 9px; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom p { margin: 0; }

.floating-contact { position: fixed; z-index: 80; right: 22px; bottom: 22px; width: 86px; height: 86px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: var(--coral); color: #fff; border-radius: 50%; box-shadow: 0 14px 40px rgba(202,88,70,.3); font-size: 11px; font-weight: 700; transition: transform .2s, background .2s; }
.floating-contact:hover { transform: translateY(-4px); background: var(--coral-dark); }
.floating-contact svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.reveal-enabled .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s ease var(--reveal-delay, 0ms); }
.reveal-enabled .reveal.is-visible { opacity: 1; transform: translateY(0); }

.high-contrast {
  --ink: #000;
  --teal: #003b3b;
  --teal-deep: #001f1f;
  --coral: #c23b27;
  --coral-dark: #a82e1d;
  --paper: #fff;
  --paper-warm: #f1f1f1;
  --white: #fff;
  --muted: #303030;
  --line: rgba(0,0,0,.42);
}

@media (max-width: 1180px) {
  :root { --container: min(100% - 56px, 1100px); }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 11px; }
  .header-contact { padding: 0 13px; }
  .hero { grid-template-columns: .95fr 1.05fr; }
  .hero-copy { padding-left: 48px; padding-right: 38px; }
  .signal-bar { padding-left: 28px; grid-template-columns: .8fr repeat(3, 1fr) 70px; }
  .signal-item { padding: 18px; gap: 10px; }
  .signal-item strong { font-size: 34px; }
  .signal-item p { font-size: 10px; }
  .training-copy { padding-left: 48px; }
  .orbit-one { width: 440px; height: 440px; }
  .footer-top { grid-template-columns: 1fr 1.3fr; }
  .footer-top > p { display: none; }
}

@media (max-width: 1280px) {
  .utility-bar { display: none; }
  .site-header, .site-header.is-scrolled { height: 72px; }
  .desktop-nav, .header-contact { display: none; }
  .menu-button { display: block; }
  .mobile-menu { top: 72px; height: calc(100vh - 72px); }
  .hero-copy { padding-left: 48px; padding-right: 24px; }
}

@media (max-width: 980px) {
  :root { --container: calc(100vw - 44px); }
  .utility-bar { display: none; }
  .site-header, .site-header.is-scrolled { height: 72px; }
  .desktop-nav, .header-contact { display: none; }
  .menu-button { display: block; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 20px; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 92px 28px 72px; }
  .hero-visual { min-height: 560px; }
  .hero-index { display: none; }
  .signal-bar { padding: 0; grid-template-columns: repeat(3, 1fr); }
  .signal-intro { grid-column: 1 / -1; min-height: 68px; padding: 0 28px; border-bottom: 1px solid var(--line); }
  .signal-item { min-height: 108px; justify-content: center; }
  .signal-link { display: none; }
  .section-grid { grid-template-columns: 62px 1fr; gap: 30px; }
  .intro-heading, .consult-title-row, .roots-intro, .roots-layout { grid-template-columns: 1fr; gap: 32px; }
  .role-cards { grid-template-columns: 1fr; }
  .role-card { min-height: auto; }
  .activity-wrap { grid-template-columns: 1fr; }
  .activity-heading { position: relative; top: auto; }
  .activity-stamp { display: none; }
  .concern-grid { grid-template-columns: 1fr 1fr; }
  .consult-ticket { grid-template-columns: 100px 1fr; }
  .ticket-action { grid-column: 1 / -1; min-height: 110px; flex-direction: row; align-items: center; }
  .ticket-action::before, .ticket-action::after { display: none; }
  .training-section { grid-template-columns: 1fr; }
  .training-graphic { min-height: 530px; }
  .record-item { grid-template-columns: 100px 84px 1fr 30px; }
  .contact-section { grid-template-columns: 1fr; gap: 54px; }
  .contact-intro { max-width: 720px; }
  .roots-map { min-height: 430px; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom nav { display: none; }
}

@media (max-width: 680px) {
  :root { --container: calc(100vw - 32px); }
  body { font-size: 15px; }
  html.font-large { font-size: 106.25%; }
  html.font-large body { zoom: 1.06; }
  .header-inner { gap: 12px; }
  .brand-sub { letter-spacing: .12em; }
  .hero-copy { padding: 72px 20px 58px; }
  .hero-kicker { margin-bottom: 24px; font-size: 8px; }
  .hero h1 { font-size: clamp(38px, 11.5vw, 53px); line-height: 1.48; }
  .hero h1 em { white-space: normal; }
  .hero-lead { margin-top: 26px; font-size: 14px; }
  .hero-actions { margin-top: 32px; align-items: flex-start; flex-direction: column; gap: 23px; }
  .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-visual img { object-position: 58% center; }
  .hero-quote { left: 16px; bottom: 42px; width: 215px; padding: 18px 20px; }
  .hero-quote p { font-size: 15px; }
  .hero-visual figcaption { right: 12px; bottom: 10px; max-width: 180px; text-align: right; font-size: 7px; }
  .signal-bar { grid-template-columns: 1fr; }
  .signal-item { min-height: 90px; justify-content: flex-start; padding: 18px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .signal-item strong { min-width: 86px; }
  .section { padding: 88px 0; }
  .section-grid { grid-template-columns: 1fr; }
  .section-rail { display: flex; align-items: center; gap: 14px; border: 0; }
  .section-number { font-size: 22px; }
  .section-rail p { margin: 0; writing-mode: initial; }
  .intro-heading h2, .consult-title-row h2, .records-header h2, .roots-intro h2 { font-size: clamp(36px, 10.5vw, 50px); }
  .intro-copy p:first-child { font-size: 16px; }
  .role-cards { margin-top: 54px; }
  .activity-section { padding: 88px 0; }
  .activity-heading h2 { font-size: 40px; }
  .activity-flow::before { left: 24px; }
  .flow-card { min-height: 0; padding: 30px 24px 30px 72px; }
  .flow-top span { left: 9px; top: 31px; }
  .flow-card h3 { font-size: 23px; }
  .concern-grid { margin-top: 48px; grid-template-columns: 1fr; }
  .concern-card { min-height: 125px; }
  .consult-ticket { margin-top: 45px; grid-template-columns: 1fr; }
  .ticket-label { padding: 18px 22px; flex-direction: row; justify-content: space-between; }
  .ticket-label span { text-align: left; }
  .ticket-label i { flex: 1; margin: 0 18px; border-left: 0; border-top: 1px dashed rgba(255,255,255,.32); }
  .ticket-label small { writing-mode: initial; }
  .ticket-main { padding: 32px 24px; }
  .ticket-main h3 { font-size: 31px; }
  .ticket-main h3 span { font-size: 50px; }
  .ticket-main dl { flex-direction: column; gap: 12px; }
  .ticket-action { min-height: 100px; }
  .privacy-note { padding: 22px 20px; }
  .training-section { min-height: 0; }
  .training-copy { padding: 84px 24px; }
  .training-copy h2 { font-size: 47px; }
  .training-graphic { min-height: 440px; }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 260px; height: 260px; }
  .orbit-three { width: 175px; height: 175px; }
  .orbit-center { width: 110px; height: 110px; }
  .records-header { align-items: flex-start; flex-direction: column; }
  .records-list { margin-top: 45px; }
  .record-item { padding: 24px 0; grid-template-columns: 1fr auto; gap: 10px 18px; }
  a.record-item:hover { padding: 24px 12px; }
  .record-item time { grid-column: 1; }
  .record-type { grid-column: 2; grid-row: 1; }
  .record-item > div { grid-column: 1 / -1; }
  .record-arrow { display: none; }
  .contact-section { padding: 80px 20px; gap: 44px; }
  .contact-intro h2 { font-size: 43px; }
  .contact-address span { font-size: 13px; }
  .mail-form { padding: 30px 20px; }
  .mail-form-head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .mail-field-grid { grid-template-columns: 1fr; gap: 0; }
  .mail-form-foot { grid-template-columns: 1fr; }
  .mail-form-foot button { width: 100%; }
  .roots-layout { margin-top: 48px; }
  .roots-map { min-height: 380px; }
  .roots-center { width: 105px; height: 105px; }
  .roots-center strong { font-size: 25px; }
  .roots-node.node-one { left: 5%; bottom: 16%; }
  .roots-node.node-two { right: 4%; top: 35%; }
  .roots-node.node-three { left: 43%; top: 16%; }
  .root-note { min-height: 0; }
  .roots-closing { align-items: flex-start; flex-direction: column; gap: 12px; }
  .site-footer { padding: 60px 20px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 10px; }
  .floating-contact { right: 14px; bottom: 14px; width: 70px; height: 70px; font-size: 10px; }
  .floating-contact svg { width: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media print {
  .utility-bar, .site-header, .floating-contact, .hero-actions, .contact-section { display: none !important; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { padding: 40px; }
  .hero-visual { min-height: 360px; }
  .section, .activity-section { padding: 50px 0; }
}
