:root {
  --navy: #0F2A4E;
  --navy-deep: #081B34;
  --navy-mid: #173F6D;
  --gold: #BC9E5E;
  --gold-light: #D8C18D;
  --cream: #f5f2ea;
  --white: #fff;
  --ink: #162238;
  --muted: #667187;
  --line: rgba(15,42,78),.13);
  --shadow: 0 26px 75px rgba(7,20,45,.14);
  --radius: 22px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--white);
  font-family: "Noto Sans JP","Yu Gothic","Hiragino Kaku Gothic ProN","Segoe UI",sans-serif;
  font-feature-settings: "palt"; line-height: 1.8; letter-spacing: .02em;
}
a { color: inherit; }
svg { display: block; max-width: 100%; }
::selection { color: var(--navy-deep); background: var(--gold-light); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 9999;
  padding: 10px 16px; color: var(--navy); background: var(--white);
  transform: translateY(-150%); transition: .2s;
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled {
  background: rgba(8,21,42,.95); border-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 35px rgba(0,0,0,.13); backdrop-filter: blur(14px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--white); text-decoration: none; }
.brand-name { font-size: .92rem; font-weight: 700; letter-spacing: .18em; }
.brand-mark { position: relative; display: inline-block; width: 30px; height: 32px; }
.brand-mark > span {
  position: absolute; top: 1px; display: block; width: 5px;
  background: var(--gold); border-radius: 2px; transform: skew(-27deg);
}
.brand-mark > span:nth-child(1) { left: 4px; height: 30px; }
.brand-mark > span:nth-child(2) { left: 13px; height: 21px; }
.brand-mark > span:nth-child(3) { left: 22px; height: 13px; }
.brand-mark.small { width: 24px; transform: scale(.72); transform-origin: left center; }
.global-nav { display: flex; align-items: center; gap: 28px; }
.global-nav a {
  color: rgba(255,255,255,.78); text-decoration: none;
  font-size: .78rem; font-weight: 650; letter-spacing: .09em;
}
.global-nav a:hover, .global-nav a:focus-visible { color: var(--gold-light); }
.global-nav .nav-contact {
  padding: 10px 17px; color: var(--gold-light);
  border: 1px solid rgba(188,158,94,.65); border-radius: 999px;
}
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--white); }

/* Shared */
.eyebrow, .section-label, .panel-label {
  margin: 0 0 18px; color: var(--gold); font-size: .76rem;
  font-weight: 800; letter-spacing: .18em;
}
.section-heading h2 {
  margin: 0; color: var(--navy); font-size: clamp(2.2rem,4.3vw,3.85rem);
  line-height: 1.34; letter-spacing: .01em;
}
.section-heading.centered { max-width: 790px; margin: 0 auto 52px; text-align: center; }
.section-heading.centered > p:last-child { max-width: 690px; margin: 17px auto 0; color: var(--muted); }
.section-heading-light h2 { color: var(--white); }
.section-heading-light > p:last-child { color: rgba(255,255,255,.67) !important; }
.button {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 25px; border-radius: 999px; text-decoration: none;
  font-size: .9rem; font-weight: 750; letter-spacing: .05em;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-deep); background: var(--gold); }
.button-primary:hover, .button-gold:hover { background: var(--gold-light); }
.button-secondary { color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.button-secondary:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* Hero */
.hero {
  position: relative; overflow: hidden; min-height: 920px; color: var(--white);
  background:
    radial-gradient(circle at 80% 24%, rgba(45,88,145,.37), transparent 32%),
    linear-gradient(137deg, var(--navy-deep), var(--navy) 58%, #15385f);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .19;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, #000 60%);
}
.hero::after {
  content: ""; position: absolute; right: -220px; bottom: -330px; width: 670px; height: 670px;
  border: 1px solid rgba(188,158,94,.15); border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 2; min-height: 730px; padding-top: 118px;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 62px; align-items: center;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  margin: 0; font-size: clamp(3rem,5.45vw,5.25rem);
  line-height: 1.17; letter-spacing: .015em;
}
.hero h1 span { color: var(--gold-light); }
.hero-definition {
  max-width: 700px; margin: 27px 0 0; color: rgba(255,255,255,.92);
  font-size: clamp(1.13rem,1.8vw,1.4rem); line-height: 1.75;
}
.hero-definition strong { color: var(--gold-light); }
.hero-detail {
  max-width: 690px; margin: 14px 0 0;
  color: rgba(255,255,255,.67); font-size: .96rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 31px; }
.hero-note { margin: 17px 0 0; color: rgba(255,255,255,.59); font-size: .82rem; }

/* Hero roadmap */
.hero-roadmap {
  position: relative; padding: 27px;
  border: 1px solid rgba(216,193,141,.28); border-radius: 26px;
  background: linear-gradient(155deg, rgba(255,255,255,.08), rgba(255,255,255,.018));
  box-shadow: 0 30px 80px rgba(0,0,0,.22); backdrop-filter: blur(10px);
}
.hero-roadmap::before, .hero-roadmap::after {
  content: ""; position: absolute; width: 78px; height: 78px;
}
.hero-roadmap::before {
  left: 12px; top: 12px; border-left: 1px solid rgba(188,158,94,.58);
  border-top: 1px solid rgba(188,158,94,.58); border-radius: 16px 0 0;
}
.hero-roadmap::after {
  right: 12px; bottom: 12px; border-right: 1px solid rgba(188,158,94,.58);
  border-bottom: 1px solid rgba(188,158,94,.58); border-radius: 0 0 16px;
}
.roadmap-heading { position: relative; z-index: 1; padding: 4px 5px 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.roadmap-heading span {
  display: block; color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .17em;
}
.roadmap-heading strong { display: block; margin-top: 5px; font-size: 1.2rem; }
.roadmap-list { position: relative; z-index: 1; margin: 0; padding: 13px 0; list-style: none; }
.roadmap-list::before {
  content: ""; position: absolute; left: 35px; top: 37px; bottom: 37px;
  width: 1px; background: linear-gradient(var(--gold), rgba(188,158,94,.18));
}
.roadmap-list li {
  position: relative; display: grid; grid-template-columns: 25px 52px 1fr;
  gap: 11px; align-items: center; min-height: 84px; padding: 9px 4px;
}
.roadmap-number { color: rgba(255,255,255,.26); font-family: Georgia,serif; font-size: .78rem; }
.roadmap-icon {
  position: relative; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center;
  color: var(--gold-light); border: 1px solid rgba(188,158,94,.47); border-radius: 14px;
  background: var(--navy-deep); box-shadow: 0 0 24px rgba(20,54,96,.8);
}
.roadmap-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.roadmap-list strong { display: block; color: var(--white); font-size: .98rem; }
.roadmap-list div > span { color: rgba(255,255,255,.58); font-size: .78rem; }
.roadmap-foundation {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 11px;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12);
  color: var(--gold-light); font-size: .65rem; font-weight: 800; letter-spacing: .12em;
}
.roadmap-foundation i { width: 18px; height: 1px; background: rgba(255,255,255,.23); }
.hero-summary {
  position: relative; z-index: 2; display: grid; grid-template-columns: 220px 1fr;
  gap: 35px; align-items: center; padding: 27px 33px;
  border: 1px solid rgba(255,255,255,.11); border-radius: 19px;
  background: rgba(6,18,38,.52); backdrop-filter: blur(10px);
}
.summary-title { margin: 0; color: var(--gold-light); font-size: .78rem; font-weight: 800; letter-spacing: .19em; }
.hero-summary > p:last-child { margin: 0; color: rgba(255,255,255,.67); }
.hero { padding-bottom: 58px; }

/* Support */
.support { background: var(--cream); }
.support-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; align-items: stretch; }
.target-panel, .outcomes-panel {
  padding: 37px; border-radius: var(--radius); background: var(--white);
  border: 1px solid rgba(15,42,78),.08); box-shadow: 0 17px 55px rgba(15,42,78),.06);
}
.target-panel h3, .outcomes-panel h3 {
  margin: 0 0 25px; color: var(--navy); font-size: clamp(1.45rem,2.5vw,2rem);
}
.target-list { margin: 0; padding: 0; list-style: none; }
.target-list li {
  display: grid; grid-template-columns: 52px 1fr; gap: 15px; align-items: start;
  padding: 17px 0; border-top: 1px solid var(--line);
}
.target-list li:first-child { border-top: 0; }
.target-icon {
  width: 46px; height: 46px; display: grid; place-items: center;
  color: var(--gold); border: 1px solid rgba(188,158,94,.34); border-radius: 13px;
  background: rgba(188,158,94,.07);
}
.target-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.target-list strong { display: block; color: var(--navy); font-size: .98rem; }
.target-list p { margin: 3px 0 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.outcome-list { display: grid; gap: 11px; }
.outcome-item {
  position: relative; display: grid; grid-template-columns: 1fr 30px 1.12fr; gap: 10px; align-items: center;
  min-height: 78px; padding: 14px 16px; border-radius: 15px;
  border: 1px solid rgba(15,42,78),.08); background: #fafbfc;
}
.outcome-before { color: var(--muted); font-size: .84rem; }
.outcome-arrow { color: var(--gold); text-align: center; font-size: 1.2rem; }
.outcome-item strong { color: var(--navy); font-size: .91rem; line-height: 1.55; }

/* Services */
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  position: relative; min-height: 390px; padding: 34px 30px;
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: 0 14px 44px rgba(15,42,78),.055);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 5px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
}
.service-number {
  position: absolute; right: 25px; top: 17px;
  color: rgba(15,42,78),.08); font-size: 3.05rem; font-weight: 800;
}
.service-icon {
  width: 58px; height: 58px; display: grid; place-items: center;
  color: var(--gold-light); background: var(--navy); border-radius: 16px;
}
.service-icon svg { width: 33px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 24px 0 14px; color: var(--navy); font-size: 1.27rem; line-height: 1.55; }
.service-card > p { color: var(--muted); font-size: .92rem; }
.mini-flow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  margin-top: 22px; padding-top: 17px; border-top: 1px solid var(--line);
}
.mini-flow span {
  padding: 4px 8px; color: var(--navy); background: var(--cream);
  border-radius: 999px; font-size: .69rem; white-space: nowrap;
}
.mini-flow i { width: 9px; height: 1px; background: var(--gold); }

/* Integrated model */
.integrated-model {
  position: relative; margin-top: 37px; padding: 27px; color: var(--white);
  border: 1px solid rgba(188,158,94,.22); border-radius: 27px;
  background: linear-gradient(145deg,#071429,#10294c 58%,#091b34);
  box-shadow: 0 30px 80px rgba(7,20,45,.2);
}
.model-side {
  display: grid; grid-template-columns: 190px 1fr; gap: 20px; align-items: center;
  padding: 15px 21px; border: 1px solid rgba(188,158,94,.36);
  background: linear-gradient(90deg,rgba(188,158,94,.13),rgba(255,255,255,.025));
}
.model-side-top { border-radius: 16px 16px 7px 7px; }
.model-side-bottom { border-radius: 7px 7px 16px 16px; }
.model-side span { color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.model-side strong { color: rgba(255,255,255,.88); font-size: .91rem; }
.model-core {
  display: grid; grid-template-columns: 1fr 35px 1fr 35px 1fr 35px 1fr;
  align-items: center; padding: 23px 10px;
}
.model-core article {
  position: relative; min-height: 118px; padding: 23px 10px 17px; text-align: center;
  border: 1px solid rgba(255,255,255,.1); border-radius: 15px;
  background: rgba(255,255,255,.04);
}
.model-index {
  position: absolute; right: 11px; top: 6px; color: rgba(255,255,255,.15);
  font-family: Georgia,serif; font-size: 1.4rem;
}
.model-core strong { display: block; color: var(--gold-light); font-family: Georgia,serif; font-size: 1.15rem; }
.model-core small { display: block; margin-top: 9px; color: rgba(255,255,255,.58); font-size: .74rem; }
.model-core > i { position: relative; height: 1px; background: rgba(188,158,94,.48); }
.model-core > i::after {
  content: ""; position: absolute; right: -1px; top: -4px;
  border-left: 7px solid var(--gold); border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.model-note { margin: 16px auto 0; max-width: 830px; color: rgba(255,255,255,.56); text-align: center; font-size: .79rem; }

/* Approach */
.approach { color: var(--white); background: var(--navy); }
.working-style { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.style-card {
  position: relative; min-height: 275px; padding: 29px 26px;
  overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 20px;
  background: linear-gradient(155deg,rgba(255,255,255,.07),rgba(255,255,255,.015));
}
.style-index { position: absolute; right: 22px; top: 13px; color: rgba(255,255,255,.1); font-size: 2.7rem; font-weight: 800; }
.style-illustration { position: relative; width: 72px; height: 65px; margin-bottom: 18px; }
.style-card h3 { margin: 0 0 9px; color: var(--gold-light); font-size: 1.15rem; }
.style-card p { margin: 0; color: rgba(255,255,255,.64); font-size: .89rem; }
.style-dialogue span {
  position: absolute; border: 2px solid var(--gold); border-radius: 11px;
}
.style-dialogue span:first-child { left: 2px; top: 7px; width: 45px; height: 31px; }
.style-dialogue span:first-child::after {
  content: ""; position: absolute; left: 9px; bottom: -8px;
  border-top: 8px solid var(--gold); border-right: 8px solid transparent;
}
.style-dialogue span:last-child { right: 1px; bottom: 5px; width: 37px; height: 27px; border-color: var(--gold-light); }
.style-field span { position: absolute; border: 2px solid var(--gold); }
.style-field span:nth-child(1) { left: 6px; bottom: 7px; width: 60px; height: 38px; border-radius: 5px; }
.style-field span:nth-child(2) { left: 18px; top: 3px; width: 36px; height: 22px; border-radius: 4px; background: var(--navy); }
.style-field span:nth-child(3) { left: 28px; bottom: 15px; width: 16px; height: 10px; border: 0; background: var(--gold-light); }
.style-transfer span { position: absolute; border-radius: 50%; }
.style-transfer span:nth-child(1), .style-transfer span:nth-child(2) {
  top: 8px; width: 22px; height: 22px; border: 2px solid var(--gold);
}
.style-transfer span:nth-child(1) { left: 5px; }
.style-transfer span:nth-child(2) { right: 5px; border-color: var(--gold-light); }
.style-transfer span:nth-child(3) {
  left: 21px; bottom: 6px; width: 31px; height: 16px;
  border: 2px solid var(--gold); border-radius: 14px 14px 0 0; border-bottom: 0;
}
.experience-strip {
  display: grid; grid-template-columns: repeat(4,1fr); margin-top: 25px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 21px; overflow: hidden;
}
.experience-strip article {
  min-height: 245px; padding: 27px 23px; border-left: 1px solid rgba(255,255,255,.11);
  background: rgba(3,12,27,.26);
}
.experience-strip article:first-child { border-left: 0; }
.experience-value {
  display: block; color: var(--gold-light); font-family: "Noto Sans JP","Yu Gothic",sans-serif;
  font-size: 2.2rem; font-weight: 750; line-height: 1.2;
}
.experience-value.value-small { font-size: 1.83rem; }
.experience-value small { margin-left: .12em; font-size: .75rem; font-weight: 700; }
.experience-strip strong { display: block; margin-top: 16px; font-size: .95rem; }
.experience-strip p { margin: 7px 0 0; color: rgba(255,255,255,.58); font-size: .79rem; line-height: 1.7; }
.experience-note { margin: 17px 0 0; color: rgba(255,255,255,.47); text-align: right; font-size: .77rem; }

/* Profile */
.profile { background: #eef1f5; }
.profile-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: center; }
.profile-visual {
  position: relative; min-height: 515px; overflow: hidden;
  color: var(--gold-light); border-radius: 28px;
  background: linear-gradient(145deg,#081B34,#173F6D); box-shadow: var(--shadow);
}
.profile-visual::before, .profile-visual::after {
  content: ""; position: absolute; border: 1px solid rgba(188,158,94,.25); border-radius: 50%;
}
.profile-visual::before { width: 420px; height: 420px; right: -190px; top: -170px; }
.profile-visual::after { width: 230px; height: 230px; left: -140px; bottom: -130px; }
.profile-monogram {
  position: absolute; left: 50%; top: 45%; transform: translate(-50%,-50%);
  font-family: Georgia,serif; font-size: 8.6rem; letter-spacing: -.11em;
}
.profile-lines { position: absolute; left: 50%; bottom: 93px; width: 110px; height: 32px; transform: translateX(-50%); }
.profile-lines span { position: absolute; height: 3px; background: var(--gold); transform: skew(-26deg); }
.profile-lines span:nth-child(1) { width: 62px; left: 0; top: 0; }
.profile-lines span:nth-child(2) { width: 62px; left: 23px; top: 10px; }
.profile-lines span:nth-child(3) { width: 62px; left: 46px; top: 20px; }
.profile-visual p {
  position: absolute; left: 0; right: 0; bottom: 35px; margin: 0;
  color: rgba(255,255,255,.55); text-align: center; font-size: .67rem; letter-spacing: .17em; line-height: 1.7;
}
.profile-role { margin: 0 0 10px; color: var(--gold); font-size: .82rem; font-weight: 750; letter-spacing: .08em; }
.profile-content h2 { margin: 0; color: var(--navy); font-size: clamp(2.2rem,4vw,3.5rem); }
.profile-name-en { margin: 0 0 24px; color: var(--muted); letter-spacing: .11em; }
.profile-summary { color: #515d72; }
.philosophy-box {
  margin-top: 28px; padding: 26px 28px;
  border-left: 4px solid var(--gold); border-radius: 0 17px 17px 0;
  background: var(--white); box-shadow: 0 14px 40px rgba(15,42,78),.055);
}
.philosophy-box .panel-label { margin-bottom: 8px; }
.philosophy-box h3 { margin: 0 0 9px; color: var(--navy); font-size: 1.12rem; }
.philosophy-box p:last-child { margin: 0; color: var(--muted); font-size: .91rem; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.profile-tags span {
  padding: 7px 11px; color: var(--navy);
  border: 1px solid rgba(15,42,78),.16); border-radius: 999px; font-size: .72rem;
}
.linkedin-link { display: inline-block; margin-top: 19px; color: var(--navy); font-size: .84rem; text-underline-offset: 5px; }

/* Contact */
.contact-box {
  display: grid; grid-template-columns: 1.35fr .65fr; gap: 44px; align-items: center;
  margin-top: 63px; padding: 43px 48px; color: var(--white);
  border-radius: 27px; background: var(--navy-deep); box-shadow: 0 26px 70px rgba(7,20,45,.18);
}
.contact-copy .section-label { color: var(--gold-light); }
.contact-copy h2 { margin: 0; font-size: clamp(1.75rem,3.4vw,2.85rem); line-height: 1.42; }
.contact-copy > p:not(.section-label) { max-width: 690px; margin: 15px 0 0; color: rgba(255,255,255,.65); }
.contact-assurance { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.contact-assurance span {
  padding: 6px 11px; color: var(--gold-light);
  border: 1px solid rgba(188,158,94,.35); border-radius: 999px; font-size: .72rem;
}
.contact-action { text-align: center; }
.button-gold { min-width: 220px; color: var(--navy-deep); background: var(--gold); }
.contact-action p { margin: 14px 0 0; color: rgba(255,255,255,.52); font-size: .77rem; overflow-wrap: anywhere; }

/* Footer and privacy */
.site-footer { padding: 31px 0; color: rgba(255,255,255,.55); background: #081B34; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 36px; align-items: center; }
.footer-brand { display: inline-flex; align-items: center; color: rgba(255,255,255,.8); font-size: .76rem; font-weight: 700; letter-spacing: .14em; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: .74rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.site-footer p { margin: 0; font-size: .72rem; }

.privacy-page { min-height: 100vh; background: var(--cream); }
.privacy-header { position: static; background: var(--navy-deep); }
.privacy-main { padding: 80px 0 120px; }
.privacy-card {
  max-width: 880px; margin: 0 auto; padding: 60px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.privacy-card h1 { margin-top: 0; color: var(--navy); font-size: clamp(2rem,4vw,3.2rem); }
.privacy-card h2 { margin-top: 38px; color: var(--navy); font-size: 1.15rem; }
.privacy-card p, .privacy-card li { color: #515d72; }
.privacy-back { display: inline-block; margin-top: 30px; color: var(--navy); text-underline-offset: 5px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .68s ease,transform .68s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .menu-button { display: block; }
  .global-nav {
    position: fixed; inset: 82px 18px auto; display: grid; gap: 0;
    padding: 12px; opacity: 0; pointer-events: none; transform: translateY(-12px);
    background: rgba(8,21,42,.99); border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px; box-shadow: 0 25px 70px rgba(0,0,0,.3); transition: .2s;
  }
  .global-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .global-nav a { padding: 13px 12px; }
  .global-nav .nav-contact { margin-top: 6px; text-align: center; }

  .hero { min-height: auto; }
  .hero-inner { min-height: auto; padding-top: 145px; padding-bottom: 58px; grid-template-columns: 1fr; }
  .hero-roadmap { max-width: 620px; width: 100%; margin-inline: auto; }
  .hero-summary { grid-template-columns: 1fr; gap: 8px; }

  .support-layout, .profile-layout, .contact-box { grid-template-columns: 1fr; }
  .service-grid, .working-style { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .integrated-model { padding: 21px; }
  .model-core { grid-template-columns: 1fr 24px 1fr; gap: 0; }
  .model-core article:nth-of-type(3), .model-core article:nth-of-type(4) { margin-top: 14px; }
  .model-core > i:nth-of-type(2) { display: none; }
  .model-core article:nth-of-type(3) { grid-column: 1; }
  .model-core > i:nth-of-type(3) { grid-column: 2; }
  .model-core article:nth-of-type(4) { grid-column: 3; }
  .model-side { grid-template-columns: 1fr; gap: 5px; }

  .experience-strip { grid-template-columns: repeat(2,1fr); }
  .experience-strip article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.11); }
  .experience-strip article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.11); }
  .profile-visual { min-height: 380px; }
  .contact-action { text-align: left; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px),var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 72px; }
  .brand-name { font-size: .78rem; letter-spacing: .13em; }
  .global-nav { top: 72px; }
  .hero-inner { padding-top: 122px; padding-bottom: 49px; gap: 41px; }
  .hero h1 { font-size: clamp(2.42rem,11.5vw,3.85rem); }
  .hero-definition { font-size: 1.04rem; }
  .hero-actions .button { width: 100%; }
  .hero-roadmap { padding: 20px; }
  .roadmap-list li { grid-template-columns: 22px 48px 1fr; gap: 8px; }
  .hero-summary { padding: 23px; }
  .section-heading.centered { margin-bottom: 37px; }

  .target-panel, .outcomes-panel { padding: 28px 23px; }
  .outcome-item { grid-template-columns: 1fr 23px 1.1fr; padding: 13px 12px; }
  .outcome-before { font-size: .76rem; }
  .outcome-item strong { font-size: .82rem; }

  .service-card { padding: 29px 24px; }
  .mini-flow { gap: 4px; }
  .mini-flow span { font-size: .64rem; padding: 4px 7px; }

  .integrated-model { padding: 16px; border-radius: 21px; }
  .model-side { padding: 13px; }
  .model-core { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .model-core article:nth-of-type(n) { grid-column: 1; margin-top: 0; }
  .model-core > i:nth-of-type(n) {
    display: block; grid-column: 1; width: 1px; height: 23px; justify-self: center;
  }
  .model-core > i::after {
    right: -4px; top: auto; bottom: -1px;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 7px solid var(--gold); border-bottom: 0;
  }
  .model-note { text-align: left; }

  .style-card { min-height: 0; }
  .experience-strip { grid-template-columns: 1fr; }
  .experience-strip article:nth-child(n) {
    border-left: 0; border-top: 1px solid rgba(255,255,255,.11);
  }
  .experience-strip article:first-child { border-top: 0; }
  .experience-value { font-size: 2rem; }
  .profile-visual { min-height: 315px; }
  .profile-monogram { font-size: 6.4rem; }
  .philosophy-box { padding: 23px 21px; }
  .contact-box { margin-top: 48px; padding: 31px 23px; }
  .button-gold { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-brand, .footer-links { justify-content: center; }
  .privacy-card { padding: 36px 24px; }
}

/* V05b brand identity — matched to the approved business card V05 */
.brand-logo-mark {
  display: block;
  width: 37px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-name {
  color: var(--gold-light);
  font-weight: 650;
  letter-spacing: .20em;
}
.footer-logo-mark {
  width: 31px;
  height: 22px;
  object-fit: contain;
  margin-right: 10px;
}
.footer-brand {
  color: var(--gold-light);
  letter-spacing: .17em;
}
.profile-logo-mark {
  position: absolute;
  left: 50%;
  top: 39%;
  width: 176px;
  height: 120px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.22));
}
.profile-brand-name {
  position: absolute;
  left: 0;
  right: 0;
  top: 57%;
  color: var(--gold-light);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .22em;
}
.experience-strip article {
  min-height: 310px;
}
.experience-strip p {
  font-size: .77rem;
}
@media (max-width: 980px) {
  .experience-strip article { min-height: 280px; }
}
@media (max-width: 640px) {
  .brand-logo-mark { width: 33px; height: 23px; }
  .brand-name { font-size: .77rem; letter-spacing: .15em; }
  .profile-logo-mark { width: 128px; height: 88px; top: 37%; }
  .profile-brand-name { top: 55%; font-size: .82rem; }
  .experience-strip article { min-height: 0; }
}


/* =========================================================
   V05c — chapter navigation, visual image band, active nav
   ========================================================= */
section[id] { scroll-margin-top: 96px; }

.section-chapter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.section-chapter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: var(--gold);
  border: 1px solid rgba(188,158,94,.5);
  border-radius: 50%;
  font-size: .72rem;
  letter-spacing: .04em;
}
.section-chapter-light { color: var(--white); }
.section-chapter-light span {
  color: var(--gold-light);
  border-color: rgba(188,158,94,.62);
}
.section-chapter-left {
  justify-content: flex-start;
  margin-bottom: 40px;
}

/* Visual pause between Services and Approach */
.visual-break {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #0b213d;
}
.visual-break-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6,22,43,.94) 0%, rgba(10,35,66,.84) 38%, rgba(15,42,78,.43) 74%, rgba(15,42,78,.25) 100%),
    linear-gradient(180deg, rgba(8,24,45,.1) 0%, rgba(8,24,45,.38) 100%),
    url("https://images.unsplash.com/photo-1722863014099-41aa5eef450f?auto=format&fit=crop&w=2400&q=82")
    center 51% / cover no-repeat;
  transform: scale(1.015);
}
.visual-break::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(188,158,94,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188,158,94,.08) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.5), transparent 72%);
}
.visual-break-content {
  position: relative;
  padding-top: 102px;
  padding-bottom: 102px;
}
.visual-break-content > * { max-width: 650px; }
.visual-break-label {
  margin: 0 0 17px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
}
.visual-break-content h2 {
  margin: 0;
  font-size: clamp(2.2rem,4.6vw,4.4rem);
  line-height: 1.28;
  letter-spacing: .01em;
}
.visual-break-content > p:not(.visual-break-label) {
  margin: 21px 0 0;
  color: rgba(255,255,255,.73);
  font-size: 1rem;
  line-height: 2;
}
.visual-break-note {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding: 0;
  color: rgba(234,211,159,.92);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .11em;
}
.visual-break-note::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(188,158,94,.28);
}

/* Header navigation shows the reader's current chapter. */
.global-nav a {
  position: relative;
}
.global-nav a.current-section {
  color: var(--gold-light);
}
.global-nav a:not(.nav-contact).current-section::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -10px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.global-nav .nav-contact.current-section {
  color: var(--navy-deep);
  border-color: var(--gold);
  background: var(--gold);
}

@media (max-width: 980px) {
  .section-chapter-left { margin-bottom: 32px; }
  .visual-break { min-height: 420px; }
  .visual-break-photo {
    background-position: 58% 50%;
  }
  .global-nav a:not(.nav-contact).current-section::after {
    left: 12px;
    right: auto;
    bottom: 6px;
    width: 42px;
  }
}
@media (max-width: 640px) {
  section[id] { scroll-margin-top: 78px; }
  .section-chapter {
    justify-content: flex-start;
    margin-bottom: 13px;
    font-size: .8rem;
  }
  .section-chapter span {
    width: 31px;
    height: 31px;
    font-size: .66rem;
  }
  .section-chapter-left { margin-bottom: 27px; }
  .visual-break {
    min-height: 390px;
  }
  .visual-break-photo {
    background:
      linear-gradient(90deg, rgba(6,22,43,.78) 0%, rgba(10,35,66,.54) 100%),
      linear-gradient(180deg, rgba(8,24,45,.04) 0%, rgba(8,24,45,.30) 100%),
      url("https://images.unsplash.com/photo-1722863014099-41aa5eef450f?auto=format&fit=crop&w=1400&q=84")
      61% 46% / cover no-repeat;
    filter: saturate(1.05) brightness(1.07);
  }
  .visual-break::after { background-size: 62px 62px; }
  .visual-break-content {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .visual-break-content h2 {
    font-size: clamp(2rem,9.2vw,3rem);
    text-shadow: 0 2px 16px rgba(0,16,38,.42);
  }
  .visual-break-content > p:not(.visual-break-label) {
    color: rgba(255,255,255,.84);
    font-size: .9rem;
    line-height: 1.9;
    text-shadow: 0 1px 10px rgba(0,16,38,.36);
  }
  .visual-break-note {
    margin-top: 25px;
    font-size: .7rem;
    letter-spacing: .08em;
    text-shadow: 0 1px 8px rgba(0,16,38,.35);
  }
  .visual-break-note::before {
    width: 27px;
  }
}


/* =========================================================
   V05f — floating back-to-top button
   ========================================================= */
.floating-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 950;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold-light);
  background: rgba(8,27,52,.92);
  border: 1px solid rgba(188,158,94,.58);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(5,18,38,.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity .24s ease,
    visibility .24s ease,
    transform .24s ease,
    color .2s ease,
    background .2s ease,
    border-color .2s ease;
  backdrop-filter: blur(10px);
}
.floating-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-top:hover,
.floating-top:focus-visible {
  color: var(--navy-deep);
  background: var(--gold);
  border-color: var(--gold);
  outline: none;
}
.floating-top:focus-visible {
  box-shadow:
    0 0 0 4px rgba(216,193,141,.25),
    0 12px 32px rgba(5,18,38,.24);
}

@media (max-width: 640px) {
  .floating-top {
    right: 16px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
  .floating-top svg {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .floating-top { transition: none; }
}
