:root {
    color-scheme: light;
    --red: #ed1c24;
    --red-deep: #c90f17;
    --ice: #f5f6f3;
    --bg: #f5f6f3;
    --surface: #ffffff;
    --surface-soft: #eceeea;
    --text: #101112;
    --muted: #5f6262;
    --line: #d9dbd7;
    --line-strong: #b9bcb7;
    --inverse: #0b0b0c;
    --inverse-text: #f7f7f4;
    --success: #17633a;
    --error: #a31621;
    --container: 1200px;
    --font: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
    --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0a0a0b;
    --surface: #111112;
    --surface-soft: #181819;
    --text: #f4f5f1;
    --muted: #a5a7a2;
    --line: #2b2c2d;
    --line-strong: #4c4d4e;
    --inverse: #f2f3ef;
    --inverse-text: #0a0a0b;
    --success: #72c990;
    --error: #ff8188;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    transition: background-color 180ms ease, color 180ms ease;
}
body.menu-open { overflow: hidden; }
.site-loader { position: fixed; z-index: 1200; top: 0; right: 0; left: 0; height: 3px; overflow: hidden; pointer-events: none; opacity: 0; transition: opacity 160ms ease; }
.site-loader span { display: block; width: 38%; height: 100%; background: var(--red); transform: translateX(-110%); }
.js.is-loading .site-loader { opacity: 1; }
.js.is-loading .site-loader span { animation: kaihen-loading 900ms cubic-bezier(.65,0,.35,1) infinite; }
.js.is-ready .site-loader { opacity: 0; }
@keyframes kaihen-loading { 0% { transform: translateX(-110%); } 55% { width: 52%; } 100% { width: 38%; transform: translateX(285%); } }
@media (prefers-reduced-motion: reduce) { .site-loader { display: none; } .js.is-loading .site-loader span { animation: none; } }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { margin-bottom: .5em; color: var(--text); font-weight: 570; line-height: 1.04; letter-spacing: -.045em; }
h1 { font-size: clamp(3.5rem, 7.5vw, 7.6rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h3 { font-size: 1.3rem; letter-spacing: -.025em; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; top: 12px; left: 16px; z-index: 1000; transform: translateY(-160%); padding: 11px 17px; background: var(--red); color: #fff; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; color: var(--red); font-family: var(--mono); font-size: .69rem; font-weight: 650; letter-spacing: .15em; line-height: 1.4; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
.eyebrow-on-dark { color: #ff5258; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px; padding: 13px 22px; border: 1px solid transparent; border-radius: 0; cursor: pointer; font-family: var(--mono); font-size: .73rem; font-weight: 650; letter-spacing: .045em; line-height: 1; text-transform: uppercase; transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease; }
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg, .mobile-nav svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.button-red, .button-gold { background: var(--red); color: #fff; }
.button-red:hover, .button-gold:hover { background: var(--red-deep); }
.button-navy { background: var(--text); color: var(--bg); }
.button-navy:hover { background: var(--red); color: #fff; }
.button-ghost { border-color: var(--line-strong); background: transparent; color: var(--text); }
.button-ghost:hover { border-color: var(--red); color: var(--red); }
.button-small { min-height: 42px; padding: 10px 15px; font-size: .66rem; }
.text-link { display: inline-flex; align-items: center; gap: 11px; border-bottom: 1px solid var(--line-strong); padding-bottom: 6px; color: var(--text); font-family: var(--mono); font-size: .7rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; transition: gap 150ms ease, border-color 150ms ease, color 150ms ease; }
.text-link:hover { gap: 16px; border-color: var(--red); color: var(--red); }
.text-link-on-dark { border-color: #555; color: #fff; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 92%, transparent); color: var(--text); backdrop-filter: blur(18px); }
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; }
.brand-mark { width: 40px; height: 40px; object-fit: contain; }
.brand-name { font-size: .78rem; font-weight: 370; letter-spacing: .105em; text-transform: uppercase; white-space: nowrap; }
.brand-name strong { font-weight: 760; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 38px); margin-left: auto; }
.desktop-nav a { position: relative; padding: 27px 0 25px; color: var(--muted); font-size: .76rem; font-weight: 520; letter-spacing: .02em; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 150ms ease; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.language-switch, .theme-toggle, .menu-toggle { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--text); cursor: pointer; }
.language-switch { font-family: var(--mono); font-size: .65rem; font-weight: 700; letter-spacing: .08em; }
.language-switch:hover, .theme-toggle:hover, .menu-toggle:hover { border-color: var(--red); color: var(--red); }
.theme-toggle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.theme-icon { display: grid; place-items: center; }
.theme-icon-moon, :root[data-theme="dark"] .theme-icon-sun { display: none; }
:root[data-theme="dark"] .theme-icon-moon { display: grid; }
.menu-toggle { display: none; flex-direction: column; gap: 6px; }
.menu-toggle span { width: 17px; height: 1px; background: currentColor; transition: transform 150ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { border-top: 1px solid var(--line); background: var(--bg); }
.mobile-nav[hidden] { display: none; }
.mobile-nav-inner { display: grid; padding: 16px 0 28px; }
.mobile-nav-inner > a:not(.button) { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 16px 0; font-size: .9rem; }
.mobile-nav .button { margin-top: 20px; }

.home-hero, .page-hero, .legal-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--bg); color: var(--text); }
.home-hero { min-height: 720px; padding: 95px 0 0; }
.hero-grid, .page-hero-grid { position: absolute; inset: 0; opacity: .48; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, transparent 0%, #000 58%, #000 100%); }
.hero-glow { display: none; }
.home-hero-inner { position: relative; display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: clamp(60px, 8vw, 125px); }
.hero-copy { padding-bottom: 88px; }
.hero-copy h1 { max-width: 820px; margin-bottom: 30px; }
.hero-lead { max-width: 650px; margin-bottom: 36px; color: var(--muted); font-size: clamp(1.03rem, 1.45vw, 1.25rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-object { position: relative; display: grid; min-height: 500px; grid-template-rows: auto 1fr auto auto; border: 1px solid var(--line-strong); background: var(--surface); }
.hero-object::before { position: absolute; top: -1px; bottom: -1px; left: -8px; width: 7px; background: var(--red); content: ""; }
.hero-object-index { padding: 17px 19px; border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; text-align: right; }
.hero-object-system { position: relative; display: grid; min-height: 270px; grid-template-columns: auto 1fr auto; align-items: center; gap: 23px; padding: 45px; overflow: hidden; }
.hero-object-system span { color: var(--text); font-size: clamp(3.3rem,6vw,6.2rem); font-weight: 600; letter-spacing: -.07em; line-height: 1; }
.hero-object-system i { height: 1px; background: var(--line-strong); }
.hero-object-system i::after { display: block; width: 36%; height: 5px; margin-top: -2px; background: var(--red); content: ""; }
.hero-object-system small { position: absolute; right: 45px; bottom: 28px; color: var(--muted); font-family: var(--mono); font-size: .57rem; letter-spacing: .13em; }
.hero-object-axis { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }
.hero-object-axis span { padding: 13px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: .57rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-object-axis span:nth-child(2n) { border-right: 0; }
.hero-object > p { margin: 0; padding: 16px 19px; color: var(--text); font-family: var(--mono); font-size: .63rem; font-weight: 700; letter-spacing: .16em; }
.capability-band { position: relative; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.capability-band span { padding: 20px 25px; border-right: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: .61rem; font-weight: 600; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.capability-band span:last-child { border-right: 0; }

.section { position: relative; padding: 128px 0; }
.section-light { background: var(--bg); }
.section-white { background: var(--surface); }
.split-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 11vw, 155px); align-items: start; }
.split-intro h2 { max-width: 610px; }
.split-intro-copy { padding-top: 42px; }
.split-intro-copy p, .section-heading-row > p, .large-copy { color: var(--muted); font-size: 1.08rem; line-height: 1.85; }
.split-intro-copy .text-link { margin-top: 22px; }
.statement-panel { display: grid; grid-template-columns: 145px 1fr; align-items: stretch; margin-top: 95px; border: 1px solid var(--line-strong); background: var(--surface); }
.statement-mark { display: grid; min-height: 230px; place-items: center; background: var(--red); color: #fff; font-size: 5.2rem; font-weight: 760; letter-spacing: -.08em; }
.statement-panel blockquote { max-width: 900px; margin: 0; padding: 52px 62px; align-self: center; font-size: clamp(1.45rem, 2.65vw, 2.45rem); font-weight: 430; line-height: 1.45; letter-spacing: -.032em; }

.portfolio-section, .model-section, .process-section, .openings-section { background: #0b0b0c; color: #f6f6f3; }
.portfolio-grid { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(#333 1px, transparent 1px), linear-gradient(90deg, #333 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to left, #000, transparent 64%); }
.portfolio-layout { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 105px; align-items: end; }
.portfolio-layout h2, .model-layout h2, .process-section h2, .openings-panel h2 { color: #f6f6f3; }
.section-lead-on-dark { max-width: 700px; margin: 28px 0 36px; color: #aaa; font-size: 1.06rem; }
.portfolio-note { border-top: 3px solid var(--red); padding-top: 27px; }
.portfolio-note h3 { margin-bottom: 15px; color: #fff; }
.portfolio-note p { margin: 0; color: #aaa; }

.section-heading-row { display: grid; grid-template-columns: 1.25fr .75fr; gap: 85px; align-items: end; }
.section-heading-row h2 { max-width: 800px; }
.service-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 74px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 330px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); transition: background-color 150ms ease; }
.service-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--red); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 150ms ease; }
.service-card:hover { background: var(--surface-soft); }
.service-card:hover::after { transform: scaleX(1); }
.icon-box { display: grid; width: 49px; height: 49px; place-items: center; border: 1px solid var(--line-strong); background: transparent; color: var(--red); }
.icon-box svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.service-card h3 { margin: 65px 0 14px; }
.service-card p { color: var(--muted); }
.section-link-row { margin-top: 42px; text-align: right; }

.principles-section { background: var(--surface-soft); }
.principles-section h2 { max-width: 820px; }
.principle-list { margin-top: 70px; border-top: 1px solid var(--line-strong); }
.principle-list article { display: grid; grid-template-columns: 90px 1fr 1.2fr; gap: 40px; align-items: start; border-bottom: 1px solid var(--line-strong); padding: 35px 0; }
.principle-list article > span, .value-grid article > span, .product-approach-grid article > span { color: var(--red); font-family: var(--mono); font-size: .67rem; font-weight: 700; letter-spacing: .12em; }
.principle-list h3, .principle-list p { margin: 0; }
.principle-list p { color: var(--muted); }

.cta-section { background: var(--bg); }
.cta-panel { display: flex; align-items: end; justify-content: space-between; gap: 70px; padding: 72px; background: var(--red); color: #fff; }
.cta-panel h2 { max-width: 760px; margin-bottom: 20px; color: #fff; }
.cta-panel p { max-width: 760px; margin: 0; color: rgba(255,255,255,.82); }
.cta-panel .eyebrow { color: #fff; }
.cta-panel .button { flex: 0 0 auto; border-color: #fff; background: #fff; color: #111; }
.cta-panel .button:hover { background: #111; color: #fff; }

.page-hero { min-height: 510px; display: flex; align-items: center; }
.page-hero::after { position: absolute; top: 0; right: max(24px,calc((100vw - var(--container))/2)); width: clamp(90px,14vw,210px); height: 8px; background: var(--red); content: ""; }
.page-hero-inner { position: relative; z-index: 1; padding: 98px 0 105px; }
.page-hero h1 { max-width: 1020px; margin-bottom: 27px; }
.page-hero-lead { max-width: 790px; margin: 0; color: var(--muted); font-size: 1.13rem; line-height: 1.8; }
.purpose-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 105px; }
.purpose-cards { display: grid; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.purpose-cards article { padding: 43px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.purpose-cards span { color: var(--red); font-family: var(--mono); font-size: .67rem; font-weight: 700; }
.purpose-cards h3 { margin: 39px 0 15px; }
.purpose-cards p { margin: 0; color: var(--muted); font-size: 1.03rem; }
.model-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.model-layout > div:first-child > p:last-child { color: #aaa; font-size: 1.05rem; }
.model-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid #303032; border-left: 1px solid #303032; }
.model-cards article { padding: 32px; border-right: 1px solid #303032; border-bottom: 1px solid #303032; background: #101011; }
.icon-box-dark { border-color: #444; color: #ff5258; }
.model-cards h3 { margin: 58px 0 14px; color: #f6f6f3; }
.model-cards p { color: #aaa; }
.leadership-layout { display: grid; grid-template-columns: 270px 1fr; gap: 105px; align-items: center; }
.leadership-symbol { display: grid; aspect-ratio: 1; place-items: center; border: 1px solid var(--line-strong); background: var(--surface); color: var(--red); font-size: clamp(3rem,8vw,6.4rem); font-weight: 760; letter-spacing: -.1em; }
.leadership-layout h2 { max-width: 770px; }
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 66px; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.value-grid article { min-height: 245px; padding: 35px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.value-grid h3 { margin: 54px 0 13px; }
.value-grid p { color: var(--muted); }
.compact-cta-section { padding: 0 0 125px; background: var(--surface-soft); }
.compact-cta { display: flex; align-items: center; justify-content: space-between; gap: 45px; border-top: 1px solid var(--line-strong); padding-top: 52px; }
.compact-cta h2 { max-width: 760px; margin: 0; font-size: clamp(2rem,3.7vw,3.4rem); }
.compact-cta-stacked p { margin: 15px 0 0; color: var(--muted); }

.private-panel { display: grid; grid-template-columns: .55fr 1.45fr; gap: 80px; padding: 64px; border: 1px solid var(--line-strong); background: var(--surface); }
.private-label { display: flex; align-items: flex-start; gap: 12px; color: var(--red); font-family: var(--mono); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; margin-top: 5px; background: var(--red); box-shadow: 0 0 0 5px color-mix(in srgb,var(--red) 14%,transparent); }
.private-panel h2 { max-width: 720px; }
.private-panel p { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.06rem; }
.section-title-narrow { max-width: 760px; }
.product-approach-grid { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 70px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-approach-grid article { min-height: 275px; padding: 37px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-approach-grid h3 { margin: 72px 0 13px; }
.product-approach-grid p { color: var(--muted); }
.announcement-section { background: var(--bg); }
.announcement-panel { display: grid; grid-template-columns: .45fr 1.55fr; gap: 100px; align-items: center; padding: 76px; border: 1px solid var(--line-strong); background: var(--surface); }
.announcement-panel h2 { color: var(--text); }
.announcement-panel p:last-child { color: var(--muted); font-size: 1.06rem; }
.announcement-mark { position: relative; aspect-ratio: 1; border: 1px solid var(--line-strong); background-image: linear-gradient(var(--line) 1px, transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px); background-size: 25% 25%; }
.announcement-mark::before, .announcement-mark::after { position: absolute; content: ""; }
.announcement-mark::before { inset: 25%; border: 8px solid var(--red); }
.announcement-mark::after { top: 50%; right: 0; left: 0; height: 1px; background: var(--red); }
.announcement-mark span { display: none; }

.service-detail-list { display: grid; border-top: 1px solid var(--line-strong); }
.service-detail { display: grid; grid-template-columns: .35fr 1fr .7fr; gap: 70px; padding: 76px 0; border-bottom: 1px solid var(--line-strong); }
.service-detail-index { display: flex; align-items: flex-start; gap: 28px; color: var(--red); font-family: var(--mono); font-size: .67rem; font-weight: 700; }
.service-detail-copy h2 { margin-bottom: 23px; font-size: clamp(2rem,3.4vw,3.25rem); }
.service-detail-copy > p:last-child { margin: 0; color: var(--muted); font-size: 1.04rem; }
.service-points { display: grid; align-content: start; gap: 17px; margin: 48px 0 0; padding: 0; list-style: none; }
.service-points li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); }
.service-points li span { width: 18px; height: 2px; margin-top: 12px; flex: 0 0 auto; background: var(--red); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 65px; border-top: 1px solid #303032; border-left: 1px solid #303032; }
.process-grid article { min-height: 255px; padding: 30px; border-right: 1px solid #303032; border-bottom: 1px solid #303032; }
.process-grid article > span { color: #ff5258; font-family: var(--mono); font-size: .67rem; font-weight: 700; }
.process-grid h3 { margin: 72px 0 13px; color: #f6f6f3; }
.process-grid p { color: #aaa; }

.careers-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 105px; }
.career-values { border-top: 1px solid var(--line-strong); }
.career-values article { display: grid; grid-template-columns: 55px 1fr; gap: 25px; border-bottom: 1px solid var(--line-strong); padding: 28px 0; }
.career-values article > span { color: var(--red); font-family: var(--mono); font-size: .67rem; font-weight: 700; }
.career-values h3 { margin-bottom: 7px; }
.career-values p { margin: 0; color: var(--muted); }
.openings-panel { max-width: 900px; color: #f6f6f3; text-align: center; }
.openings-panel .icon-box { margin: 0 auto 35px; }
.openings-panel .eyebrow { justify-content: center; }
.openings-panel > p:not(.eyebrow) { max-width: 650px; margin: 0 auto; color: #aaa; font-size: 1.06rem; }
.openings-note { margin-top: 48px; padding-top: 28px; border-top: 1px solid #303032; color: #fff; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-direct h2 { max-width: 500px; }
.contact-methods { display: grid; gap: 0; margin-top: 48px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-methods > a, .contact-address { display: flex; align-items: center; gap: 19px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.contact-methods > a:hover { background: var(--surface-soft); }
.contact-methods small, .contact-methods strong { display: block; }
.contact-address strong { line-height: 1.55; }
.contact-methods small { color: var(--muted); font-family: var(--mono); font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
.contact-methods strong { font-size: .96rem; font-weight: 600; }
.contact-form-card { padding: 50px; border: 1px solid var(--line-strong); background: var(--surface); }
.contact-form-card h2 { margin-bottom: 36px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-family: var(--mono); font-size: .67rem; font-weight: 650; letter-spacing: .05em; text-transform: uppercase; }
.form-group input, .form-group textarea { display: block; width: 100%; border: 1px solid var(--line-strong); border-radius: 0; background: var(--bg); color: var(--text); padding: 14px 15px; }
.form-group input { min-height: 52px; }
.form-group textarea { resize: vertical; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 2px color-mix(in srgb,var(--red) 18%,transparent); }
.character-count { display: block; margin-top: 5px; color: var(--muted); font-family: var(--mono); font-size: .62rem; text-align: right; }
.button-submit { width: 100%; }
.form-privacy { margin: 18px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.6; }
.form-privacy a { text-decoration: underline; text-underline-offset: 2px; }
.privacy-check { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; margin: 4px 0 24px; color: var(--muted); font-size: .76rem; line-height: 1.6; }
.privacy-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--red); }
.privacy-check a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.honeypot { position: absolute; left: -9999px; }
.form-alert { display: flex; gap: 13px; margin-bottom: 25px; padding: 16px; border-left: 3px solid currentColor; font-size: .85rem; }
.form-alert svg { width: 22px; height: 22px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; }
.form-alert p { margin: 0; }
.form-alert ul { margin: 6px 0 0; padding-left: 20px; }
.form-success { background: color-mix(in srgb,var(--success) 12%,var(--surface)); color: var(--success); }
.form-error { display: block; background: color-mix(in srgb,var(--error) 11%,var(--surface)); color: var(--error); }

.legal-hero { padding: 100px 0; }
.legal-hero::after { position: absolute; top: 0; right: max(24px,calc((100vw - var(--container))/2)); width: 180px; height: 8px; background: var(--red); content: ""; }
.legal-hero h1 { margin-bottom: 18px; }
.legal-hero-inner > p:last-child { margin: 0; color: var(--muted); }
.legal-layout { display: grid; grid-template-columns: 230px 1fr; gap: 100px; align-items: start; }
.legal-layout aside { position: sticky; top: 105px; display: grid; border-top: 1px solid var(--line); }
.legal-layout aside a { padding: 14px 5px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.legal-layout aside a[aria-current="page"] { border-left: 3px solid var(--red); padding-left: 12px; color: var(--text); font-weight: 700; }
.legal-intro { margin-bottom: 60px; font-size: 1.3rem; line-height: 1.7; }
.legal-content { max-width: 800px; }
.legal-content section { position: relative; padding: 35px 0 35px 55px; border-top: 1px solid var(--line); }
.legal-content section > span { position: absolute; top: 40px; left: 0; color: var(--red); font-family: var(--mono); font-size: .64rem; font-weight: 700; }
.legal-content h2 { margin-bottom: 13px; font-size: 1.5rem; }
.legal-content p { margin: 0; color: var(--muted); }

.site-footer { background: #080809; color: #f6f6f3; }
.footer-main { display: grid; grid-template-columns: 1.65fr repeat(3,1fr); gap: 70px; padding: 85px 0 65px; }
.footer-brand > a { display: inline-flex; align-items: center; gap: 15px; margin-bottom: 22px; border-left: 4px solid var(--red); padding-left: 14px; color: #fff; }
.footer-brand-name { font-family: var(--mono); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-brand p { max-width: 330px; color: #929292; }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column h2 { margin-bottom: 16px; color: #fff; font-family: var(--mono); font-size: .63rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { color: #999; font-size: .83rem; }
.footer-column a:hover { color: #fff; }
.footer-column address { max-width: 220px; color: #777; font-size: .76rem; font-style: normal; line-height: 1.7; }
.footer-link-button { width: max-content; border: 0; background: transparent; color: #999; padding: 0; font-size: .83rem; text-align: left; }
.footer-link-button:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; border-top: 1px solid #2d2d2f; color: #777; font-family: var(--mono); font-size: .61rem; }
.footer-bottom p { margin: 0; }
.footer-signature { letter-spacing: .12em; text-transform: uppercase; }

.cookie-panel[hidden] { display: none; }
.cookie-panel { position: fixed; z-index: 1200; right: 24px; bottom: 24px; display: grid; grid-template-columns: 1fr auto; gap: 32px; width: min(720px,calc(100% - 48px)); padding: 28px; border: 1px solid var(--line-strong); border-left: 5px solid var(--red); background: var(--surface); color: var(--text); box-shadow: 0 24px 70px rgba(0,0,0,.22); }
.cookie-panel .eyebrow { margin-bottom: 12px; }
.cookie-panel h2 { margin-bottom: 9px; font-size: 1.45rem; }
.cookie-panel-copy > p:not(.eyebrow) { max-width: 510px; margin: 0 0 9px; color: var(--muted); font-size: .82rem; }
.cookie-panel-copy > a { color: var(--text); font-size: .76rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cookie-panel-actions { display: flex; align-items: flex-start; gap: 8px; }
.cookie-panel .button { white-space: nowrap; }
.cookie-close { width: 40px; height: 40px; border: 1px solid var(--line-strong); background: transparent; color: var(--text); font-size: 1.35rem; line-height: 1; }
.legal-preferences { margin-top: 35px; }

@media (max-width: 1060px) {
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { display: inline-flex; }
    .home-hero-inner { grid-template-columns: 1.05fr .75fr; gap: 45px; }
    .hero-object { min-height: 450px; }
    .portfolio-layout, .model-layout { gap: 60px; }
    .footer-main { grid-template-columns: 1.4fr repeat(2,1fr); }
    .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 32px),var(--container)); }
    .home-hero { min-height: auto; padding-top: 72px; }
    .home-hero-inner { grid-template-columns: 1fr; }
    .hero-copy { padding-bottom: 24px; }
    .hero-object { width: min(100%,560px); justify-self: end; }
    .capability-band { margin-top: 55px; }
    .section { padding: 92px 0; }
    .split-intro, .section-heading-row, .portfolio-layout, .purpose-layout, .model-layout, .leadership-layout, .private-panel, .announcement-panel, .careers-intro, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .split-intro-copy { padding-top: 0; }
    .statement-panel { grid-template-columns: 105px 1fr; }
    .statement-panel blockquote { padding: 42px; }
    .service-card-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    .service-card h3 { margin-top: 40px; }
    .principle-list article { grid-template-columns: 55px 1fr; }
    .principle-list article p { grid-column: 2; }
    .cta-panel { align-items: flex-start; flex-direction: column; padding: 50px; }
    .page-hero { min-height: 450px; }
    .model-cards { grid-template-columns: 1fr 1fr; }
    .leadership-symbol { width: 215px; }
    .service-detail { grid-template-columns: 120px 1fr; gap: 40px; }
    .service-points { grid-column: 2; margin-top: 0; }
    .process-grid { grid-template-columns: repeat(2,1fr); }
    .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-column:last-child { grid-column: auto; }
    .legal-layout { grid-template-columns: 1fr; gap: 45px; }
    .legal-layout aside { position: static; grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 580px) {
    h1 { font-size: clamp(3rem,15vw,4.8rem); }
    h2 { font-size: clamp(2.1rem,11vw,3.2rem); }
    .header-inner { min-height: 68px; }
    .brand-name { display: none; }
    .brand-mark { width: 35px; height: 35px; }
    .header-actions { gap: 6px; }
    .language-switch, .theme-toggle, .menu-toggle { width: 37px; height: 37px; }
    .home-hero { padding-top: 62px; }
    .hero-lead { font-size: 1rem; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-object { min-height: 400px; }
    .hero-object-system { min-height: 220px; padding: 28px; }
    .hero-object-system small { right: 28px; bottom: 22px; }
    .capability-band { grid-template-columns: 1fr; }
    .capability-band span { border-right: 0; border-bottom: 1px solid var(--line); padding: 15px; }
    .section { padding: 74px 0; }
    .statement-panel { grid-template-columns: 1fr; }
    .statement-mark { min-height: 100px; font-size: 3.4rem; }
    .statement-panel blockquote { padding: 31px 25px; font-size: 1.32rem; }
    .service-card { padding: 28px; }
    .principle-list article { grid-template-columns: 42px 1fr; gap: 18px; }
    .cta-panel { padding: 38px 25px; }
    .cta-panel .button { width: 100%; }
    .page-hero { min-height: 410px; }
    .page-hero-inner { padding: 70px 0 75px; }
    .page-hero-lead { font-size: 1rem; }
    .purpose-cards article, .private-panel, .announcement-panel { padding: 31px 24px; }
    .model-cards, .value-grid, .product-approach-grid, .process-grid { grid-template-columns: 1fr; }
    .leadership-symbol { width: 160px; }
    .compact-cta, .compact-cta-stacked { align-items: flex-start; flex-direction: column; }
    .compact-cta .button { width: 100%; }
    .announcement-mark { width: 190px; }
    .service-detail { grid-template-columns: 1fr; gap: 25px; padding: 55px 0; }
    .service-detail-index { justify-content: space-between; }
    .service-points { grid-column: auto; }
    .contact-form-card { padding: 34px 22px; }
    .contact-methods strong { font-size: .8rem; overflow-wrap: anywhere; }
    .legal-hero { padding: 75px 0; }
    .legal-content section { padding-left: 38px; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 28px; padding: 65px 0 50px; }
    .footer-brand { grid-column: 1/-1; }
    .footer-column:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .cookie-panel { right: 12px; bottom: 12px; grid-template-columns: 1fr; gap: 20px; width: calc(100% - 24px); padding: 23px 20px; }
    .cookie-panel-actions { align-items: stretch; }
    .cookie-panel .button { width: 100%; white-space: normal; }
}

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

@media print {
    .site-header, .site-footer, .cta-section, .compact-cta-section { display: none; }
    body { background: #fff; color: #000; }
    .section { padding: 30px 0; }
}
