:root {
  --navy: #071a35;
  --navy-soft: #0c2649;
  --ink: #0b1d38;
  --ivory: #f7f5ef;
  --paper: #fffdf8;
  --gold: #d9a441;
  --gold-light: #f2c766;
  --gold-pale: #f5e4bc;
  --muted: #6a7484;
  --muted-dark: #b4becb;
  --line: rgba(11, 29, 56, 0.14);
  --line-light: rgba(247, 245, 239, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: min(1160px, calc(100% - 64px));
  --shadow: 0 18px 50px rgba(7, 26, 53, 0.11);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

button, input, textarea { font: inherit; }

button { color: inherit; }

button, a, input, textarea { -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

.shell { width: var(--shell); margin: 0 auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 2px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ivory);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(7, 26, 53, .94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  backdrop-filter: blur(16px);
}

.nav-shell { display: flex; align-items: center; min-height: 88px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }

.brand-mark { display: inline-flex; width: 34px; height: 34px; color: var(--gold-light); }
.brand-mark svg { width: 100%; height: 100%; overflow: visible; }
.mark-ring, .mark-arrow, .mark-dot { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.mark-ring { stroke-width: 1.4; opacity: .9; }
.mark-arrow { stroke-width: 1.8; }
.mark-dot { stroke-width: 1.3; opacity: .7; }

.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 22px; letter-spacing: .18em; text-transform: uppercase; }
.brand-subtitle { margin-top: 6px; color: rgba(247, 245, 239, .57); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); margin-left: auto; margin-right: clamp(25px, 4vw, 56px); }
.desktop-nav a { position: relative; color: rgba(247, 245, 239, .73); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: color .2s ease; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; content: ""; background: var(--gold-light); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--gold-light); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.language-picker { position: relative; }
.language-toggle { display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 9px 10px; color: rgba(247, 245, 239, .74); background: transparent; border: 1px solid transparent; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .13em; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.language-toggle:hover, .language-toggle[aria-expanded="true"] { color: var(--ivory); border-color: rgba(242,199,102,.45); background: rgba(247,245,239,.06); }
.language-globe { color: var(--gold-light); font-size: 19px; line-height: .6; }
.chevron { color: var(--gold-light); font-size: 15px; line-height: .6; transition: transform .2s ease; }
.language-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.language-menu { position: absolute; z-index: 30; top: calc(100% + 10px); right: 0; display: grid; min-width: 148px; padding: 7px; background: var(--paper); border: 1px solid rgba(217, 164, 65, .28); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease; }
.language-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.language-menu button { display: flex; align-items: center; justify-content: space-between; padding: 9px 10px; color: var(--ink); background: transparent; border: 0; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-align: left; }
.language-menu button:hover, .language-menu button[aria-pressed="true"] { color: #936916; background: #f6ecd6; }
.language-menu button span { margin-left: 10px; color: var(--muted); font-size: 10px; font-weight: 400; letter-spacing: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 11px 16px; color: var(--navy); background: var(--gold-light); border: 1px solid var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.nav-cta:hover { background: var(--ivory); transform: translateY(-2px); }
.nav-cta span { font-size: 16px; line-height: .5; }
.menu-toggle { display: none; width: 40px; padding: 10px 4px; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 28px; height: 1px; margin: 7px 0; background: var(--gold-light); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { position: relative; isolation: isolate; min-height: 760px; overflow: hidden; color: var(--ivory); background: var(--navy); }
.hero::before { position: absolute; inset: 0; z-index: -3; content: ""; background: radial-gradient(circle at 77% 38%, rgba(217, 164, 65, .16), transparent 23%), radial-gradient(circle at 12% 72%, rgba(33, 77, 127, .48), transparent 34%), linear-gradient(118deg, #071a35 0%, #081d3b 54%, #0c2a4b 100%); }
.hero::after { position: absolute; inset: 0; z-index: -2; content: ""; opacity: .2; background-image: linear-gradient(rgba(247,245,239,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(247,245,239,.06) 1px, transparent 1px); background-size: 100% 112px, 112px 100%; mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 76%); }
.hero-nebula { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; filter: blur(8px); mix-blend-mode: screen; }
.hero-nebula-one { top: 7%; right: 4%; width: min(47vw, 630px); aspect-ratio: 1; opacity: .58; background: radial-gradient(circle at 47% 44%, rgba(242,199,102,.34), rgba(217,164,65,.12) 20%, rgba(24,76,125,.18) 47%, transparent 70%); animation: nebula-drift-one 23s ease-in-out infinite alternate; }
.hero-nebula-two { right: 28%; bottom: -26%; width: min(38vw, 510px); aspect-ratio: 1; opacity: .42; background: radial-gradient(circle at 50% 48%, rgba(41,107,166,.45), rgba(18,57,100,.22) 42%, transparent 72%); animation: nebula-drift-two 29s ease-in-out infinite alternate; }
.hero-constellation { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; overflow: visible; opacity: .7; pointer-events: none; }
.nebula-line { fill: none; stroke: rgba(242,199,102,.31); stroke-width: 1; stroke-dasharray: 7 18; vector-effect: non-scaling-stroke; animation: nebula-line-flow 22s linear infinite; }
.nebula-line-two { stroke: rgba(247,245,239,.18); animation-duration: 27s; animation-delay: -7s; }
.nebula-line-three { stroke: rgba(242,199,102,.22); animation-duration: 31s; animation-delay: -13s; }
.nebula-line-four { stroke: rgba(247,245,239,.14); animation-duration: 25s; animation-delay: -17s; }
.nebula-dot { fill: var(--gold-light); filter: drop-shadow(0 0 7px rgba(242,199,102,.7)); animation: nebula-dot-pulse 6s ease-in-out infinite; }
.nebula-dot-two { animation-delay: -2s; }
.nebula-dot-three { animation-delay: -3.5s; }
.nebula-dot-four { animation-delay: -5s; }
.hero-grid-lines { position: absolute; top: 0; right: 12%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(217, 164, 65, .45) 42%, transparent 90%); opacity: .55; }
.hero-grid-lines::before, .hero-grid-lines::after { position: absolute; left: -13px; width: 27px; height: 1px; content: ""; background: var(--gold); }
.hero-grid-lines::before { top: 37%; }
.hero-grid-lines::after { top: 64%; }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); align-items: center; gap: clamp(50px, 7vw, 110px); min-height: 685px; padding-top: 110px; }
.hero-copy { max-width: 650px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .2em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-line { display: inline-block; width: 46px; height: 1px; background: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; text-wrap: balance; }
h1 { max-width: 720px; margin-bottom: 27px; font-family: var(--serif); font-size: clamp(47px, 5.7vw, 78px); letter-spacing: -.045em; line-height: .98; }
h1 em, h2 em { color: var(--gold-light); font-style: italic; font-weight: 400; }
.hero-lead { max-width: 490px; margin-bottom: 34px; color: rgba(247, 245, 239, .7); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 14px 20px; border: 1px solid transparent; cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-3px); }
.button span:last-child { font-size: 18px; line-height: .5; }
.button-gold { color: var(--navy); background: var(--gold-light); }
.button-gold:hover { background: var(--ivory); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--ivory); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.text-link span:last-child { color: var(--gold-light); font-size: 19px; transition: transform .2s ease; }
.text-link:hover span:last-child { transform: translateY(4px); }
.hero-signature { display: flex; align-items: center; gap: 12px; margin-top: 74px; color: rgba(247, 245, 239, .46); font-family: var(--serif); font-size: 16px; font-style: italic; }
.signature-rule { width: 38px; height: 1px; background: rgba(217, 164, 65, .7); }
.hero-visual { position: relative; min-height: 455px; }
.visual-caption { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; color: rgba(247, 245, 239, .52); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.visual-caption span:first-child { color: var(--gold-light); }
.visual-caption-top { top: 24px; left: 8px; }
.visual-caption-bottom { right: 0; bottom: 25px; }
.hero-wordmark-stage { position: absolute; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: min(540px, 100%); min-height: 360px; transform: translate(-50%, -50%); }
.wordmark-halo { position: absolute; width: 76%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(217,164,65,.2), rgba(33,77,127,.12) 37%, transparent 70%); filter: blur(9px); animation: halo-breathe 10s ease-in-out infinite alternate; }
.wordmark-orbit { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.wordmark-orbit ellipse, .wordmark-orbit path { fill: none; stroke: rgba(242,199,102,.3); stroke-width: 1; vector-effect: non-scaling-stroke; }
.wordmark-orbit ellipse:first-child { stroke-dasharray: 5 13; animation: orbit-drift 25s linear infinite; }
.wordmark-orbit ellipse:nth-child(2) { stroke: rgba(247,245,239,.16); stroke-dasharray: 2 18; animation: orbit-drift-reverse 31s linear infinite; }
.wordmark-orbit path { stroke: rgba(242,199,102,.2); stroke-dasharray: 1 12; animation: orbit-line-drift 22s linear infinite; }
.hero-wordmark { position: relative; display: flex; align-items: baseline; gap: clamp(3px, .7vw, 9px); color: var(--ivory); font-family: var(--serif); font-size: clamp(42px, 5.3vw, 76px); letter-spacing: .12em; line-height: 1; text-indent: .12em; text-shadow: 0 0 28px rgba(217,164,65,.18); white-space: nowrap; }
.hero-wordmark::after { position: absolute; top: -20%; left: -30%; width: 19%; height: 140%; content: ""; background: linear-gradient(90deg, transparent, rgba(242,199,102,.72), transparent); filter: blur(4px); transform: skewX(-18deg) translateX(-260%); animation: wordmark-sweep 9s 2.8s ease-in-out infinite; }
.hero-letter { display: inline-block; opacity: 0; transform: translateY(.35em); animation: letter-reveal .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-letter:nth-child(1) { animation-delay: .25s; }
.hero-letter:nth-child(2) { animation-delay: .35s; }
.hero-letter:nth-child(3) { animation-delay: .45s; }
.hero-letter:nth-child(4) { animation-delay: .55s; }
.hero-letter:nth-child(5) { animation-delay: .65s; }
.hero-letter:nth-child(6) { animation-delay: .75s; }
.wordmark-rule { position: relative; width: 124px; height: 1px; margin-top: 26px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); opacity: .75; }
.wordmark-caption { position: relative; margin: 13px 0 0; color: rgba(247,245,239,.53); font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.hero-foot { position: relative; z-index: 1; display: flex; align-items: center; gap: 17px; color: rgba(247,245,239,.42); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-foot > span:last-child { margin-left: auto; }
.scroll-line { width: 64px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

.section { position: relative; padding: 124px 0; scroll-margin-top: 96px; }
.paper-section { background: var(--paper); border-top: 1px solid rgba(217,164,65,.18); }
.section-intro { max-width: 640px; }
.section-kicker { margin-bottom: 24px; color: #9e762a; }
.section-kicker span:first-child { color: var(--gold); font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: 0; }
.section-intro h2 { margin-bottom: 24px; font-family: var(--serif); font-size: clamp(42px, 5.5vw, 69px); letter-spacing: -.045em; line-height: 1.03; }
.section-intro > p:last-child { max-width: 500px; margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.principles-section .section-intro { margin-bottom: 68px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.pillar-card { position: relative; display: flex; flex-direction: column; min-height: 282px; padding: 26px 25px 22px; background: var(--ivory); border: 1px solid rgba(11,29,56,.1); transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease; }
.pillar-card:hover { color: var(--ivory); background: var(--navy); box-shadow: 0 18px 38px rgba(7,26,53,.18); transform: translateY(-6px); }
.pillar-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 46px; }
.pillar-number, .solution-index, .step-number { color: #a77d2a; font-family: var(--serif); font-size: 17px; }
.pillar-icon { display: inline-flex; width: 36px; height: 36px; color: var(--gold); }
.pillar-icon svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.pillar-card h3 { max-width: 190px; margin-bottom: 11px; font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.pillar-card p { max-width: 215px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.pillar-card:hover p { color: rgba(247,245,239,.68); }
.pillar-arrow { position: absolute; right: 23px; bottom: 20px; color: var(--gold); font-size: 21px; transition: transform .2s ease; }
.pillar-card:hover .pillar-arrow { transform: translate(3px, -3px); }

.origin-section { position: relative; overflow: hidden; color: var(--ink); background: linear-gradient(112deg, var(--paper) 0%, #f4f0e7 100%); border-top: 1px solid rgba(217,164,65,.22); border-bottom: 1px solid rgba(217,164,65,.22); }
.origin-section::before { position: absolute; top: 0; right: 13%; width: 1px; height: 100%; content: ""; background: linear-gradient(to bottom, transparent, rgba(217,164,65,.36), transparent); }
.origin-ambient { position: absolute; border: 1px solid rgba(217,164,65,.12); border-radius: 50%; pointer-events: none; }
.origin-ambient-one { top: -280px; left: -250px; width: 620px; height: 620px; box-shadow: 0 0 0 36px rgba(217,164,65,.025), 0 0 0 72px rgba(217,164,65,.018); }
.origin-ambient-two { right: -210px; bottom: -360px; width: 700px; height: 700px; }
.origin-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); align-items: center; gap: clamp(50px, 8vw, 125px); }
.origin-visual { min-height: 320px; }
.origin-panel { position: relative; width: min(390px, 100%); height: 320px; margin: auto; overflow: hidden; color: var(--ivory); background: radial-gradient(circle at 53% 48%, rgba(217,164,65,.19), transparent 30%), linear-gradient(145deg, #0c2a4e, var(--navy) 72%); border: 1px solid rgba(217,164,65,.5); box-shadow: 0 24px 55px rgba(7,26,53,.15); }
.origin-panel::before { position: absolute; inset: 15px; content: ""; border: 1px solid rgba(242,199,102,.17); pointer-events: none; }
.origin-panel::after { position: absolute; top: 0; left: 50%; width: 1px; height: 43px; content: ""; background: var(--gold-light); opacity: .85; }
.origin-serial, .origin-panel-label, .origin-panel-caption { position: absolute; z-index: 3; color: rgba(247,245,239,.55); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.origin-serial { top: 27px; left: 28px; color: var(--gold-light); font-family: var(--serif); font-size: 14px; font-weight: 400; letter-spacing: .08em; text-transform: none; }
.origin-panel-label { top: 29px; right: 28px; }
.origin-panel-caption { right: 28px; bottom: 28px; color: rgba(247,245,239,.48); font-weight: 700; }
.origin-orbit { position: absolute; z-index: 1; border: 1px solid rgba(242,199,102,.24); border-radius: 50%; }
.origin-orbit-one { top: 99px; left: 48px; width: 294px; height: 112px; transform: rotate(-24deg); }
.origin-orbit-two { top: 78px; left: 29px; width: 329px; height: 165px; transform: rotate(30deg); border-color: rgba(247,245,239,.13); }
.origin-star { position: absolute; z-index: 2; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 15px var(--gold); }
.origin-star-one { top: 88px; left: 84px; }
.origin-star-two { right: 59px; bottom: 91px; width: 4px; height: 4px; background: var(--ivory); box-shadow: 0 0 14px rgba(247,245,239,.75); }
.origin-formula { position: absolute; z-index: 3; top: 142px; left: 50%; display: flex; align-items: baseline; gap: 13px; transform: translateX(-50%); white-space: nowrap; }
.origin-token { color: var(--ivory); font-family: var(--serif); font-size: 42px; letter-spacing: .12em; line-height: 1; }
.origin-token-accent { color: var(--gold-light); }
.origin-plus { color: rgba(247,245,239,.5); font-family: var(--serif); font-size: 27px; }
.origin-crest { position: absolute; z-index: 2; top: 83px; left: 50%; width: 126px; height: 143px; overflow: visible; fill: none; stroke: var(--gold-light); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.05; opacity: .27; transform: translateX(-50%); }
.origin-crest path:nth-child(2) { stroke-width: 1.6; }
.origin-crest circle { fill: var(--ivory); stroke: none; }
.origin-copy { max-width: 650px; }
.origin-copy h2 { max-width: 600px; margin-bottom: 24px; font-family: var(--serif); font-size: clamp(45px, 5.4vw, 72px); letter-spacing: -.05em; line-height: 1; }
.origin-copy h2 em { color: #b88629; }
.origin-lead { max-width: 590px; margin-bottom: 30px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.origin-callout { display: flex; align-items: flex-start; gap: 13px; max-width: 520px; margin: 0; padding-top: 18px; color: #8d6824; border-top: 1px solid rgba(217,164,65,.5); font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.35; }
.origin-callout > span:first-child { color: var(--gold); font-family: var(--sans); font-size: 18px; font-style: normal; line-height: 1.2; }

.dark-section { color: var(--ivory); background: var(--navy); border-top: 1px solid rgba(242,199,102,.16); }
.solutions-section { position: relative; overflow: hidden; }
.solutions-section::before { position: absolute; top: -260px; right: -140px; width: 620px; height: 620px; content: ""; border: 1px solid rgba(217,164,65,.13); border-radius: 50%; box-shadow: 0 0 0 42px rgba(217,164,65,.025), 0 0 0 84px rgba(217,164,65,.02); }
.solutions-section::after { position: absolute; right: 10%; bottom: 0; width: 1px; height: 55%; content: ""; background: linear-gradient(to bottom, transparent, rgba(242,199,102,.32)); }
.section-intro-dark { position: relative; z-index: 1; }
.section-intro-dark .section-kicker { color: var(--gold-light); }
.section-intro-dark .section-kicker span:first-child { color: var(--gold-light); }
.section-intro-dark h2 { max-width: 750px; }
.section-intro-dark > p:last-child { color: rgba(247,245,239,.62); }
.solutions-section .section-intro { margin-bottom: 67px; }
.solutions-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.solution-card { position: relative; display: flex; flex-direction: column; min-height: 460px; padding: 28px 28px 25px; background: rgba(247,245,239,.055); border: 1px solid rgba(247,245,239,.18); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.solution-card:hover { background: rgba(247,245,239,.1); border-color: rgba(242,199,102,.6); transform: translateY(-6px); }
.solution-card-featured { background: linear-gradient(160deg, rgba(217,164,65,.17), rgba(247,245,239,.05)); border-color: rgba(242,199,102,.48); }
.solution-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; }
.solution-index { color: var(--gold-light); }
.solution-icon { display: inline-flex; width: 44px; height: 44px; color: var(--gold-light); }
.solution-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.3; }
.solution-label { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.solution-label::before { display: inline-block; width: 23px; height: 1px; content: ""; background: currentColor; opacity: .7; }
.solution-card h3 { max-width: 260px; margin-bottom: 16px; font-family: var(--serif); font-size: 31px; line-height: 1.06; }
.solution-card > p:not(.solution-label) { max-width: 300px; margin-bottom: 24px; color: rgba(247,245,239,.64); font-size: 14px; line-height: 1.65; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 29px; }
.tag-list span { padding: 6px 9px; color: rgba(247,245,239,.78); border: 1px solid rgba(247,245,239,.18); font-size: 10px; line-height: 1; }
.card-link { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 18px; color: var(--gold-light); border-top: 1px solid rgba(247,245,239,.17); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.card-link span:last-child { font-size: 18px; transition: transform .2s ease; }
.card-link:hover span:last-child { transform: translate(3px, -3px); }
.solutions-note { position: relative; z-index: 1; display: flex; align-items: center; gap: 15px; max-width: 650px; margin: 45px auto 0; color: rgba(247,245,239,.55); font-family: var(--serif); font-size: 17px; font-style: italic; text-align: center; }
.note-mark { color: var(--gold-light); font-family: var(--sans); font-size: 22px; font-style: normal; }

.method-section .method-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(55px, 10vw, 145px); align-items: start; }
.method-section .section-intro { position: sticky; top: 130px; }
.method-steps { border-top: 1px solid var(--line); }
.method-step { display: grid; grid-template-columns: 52px 1fr 30px; gap: 22px; align-items: start; padding: 27px 0; border-bottom: 1px solid var(--line); transition: padding-left .2s ease; }
.method-step:hover { padding-left: 10px; }
.method-step .step-number { color: #a77d2a; }
.method-step h3 { margin-bottom: 7px; font-family: var(--serif); font-size: 27px; }
.method-step p { max-width: 440px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.step-arrow { color: var(--gold); font-size: 19px; transition: transform .2s ease; }
.method-step:hover .step-arrow { transform: translate(3px, -3px); }

.ink-section { color: var(--ivory); background: var(--ink); }
.why-section { padding-top: 136px; padding-bottom: 136px; }
.why-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(60px, 11vw, 160px); }
.why-visual { min-height: 480px; }
.why-frame { position: relative; width: min(360px, 100%); height: 450px; margin: auto; border: 1px solid rgba(242,199,102,.35); background: radial-gradient(circle at 50% 40%, rgba(217,164,65,.15), transparent 35%), linear-gradient(145deg, rgba(247,245,239,.05), rgba(247,245,239,.015)); }
.why-frame::before, .why-frame::after { position: absolute; content: ""; background: var(--gold); }
.why-frame::before { top: 0; left: 50%; width: 1px; height: 48px; }
.why-frame::after { bottom: 0; left: 50%; width: 1px; height: 48px; }
.frame-corner { position: absolute; width: 30px; height: 30px; border-color: var(--gold-light); border-style: solid; }
.corner-tl { top: 17px; left: 17px; border-width: 1px 0 0 1px; }
.corner-br { right: 17px; bottom: 17px; border-width: 0 1px 1px 0; }
.why-serial { position: absolute; top: 25px; right: 27px; color: rgba(247,245,239,.42); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.why-emblem { position: absolute; top: 47%; left: 50%; display: flex; align-items: center; justify-content: center; width: 210px; height: 236px; transform: translate(-50%, -50%); }
.why-emblem svg { position: absolute; width: 190px; height: 220px; fill: none; stroke: var(--gold-light); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.1; }
.why-emblem span { position: relative; margin-top: 176px; color: var(--ivory); font-family: var(--serif); font-size: 16px; letter-spacing: .35em; text-indent: .35em; }
.why-stamp { position: absolute; right: 23px; bottom: 26px; margin: 0; color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .16em; line-height: 1.5; text-align: right; }
.why-copy { max-width: 600px; }
.section-kicker-gold { color: var(--gold-light); }
.section-kicker-gold span:first-child { color: var(--gold-light); }
.why-copy h2 { margin-bottom: 24px; font-family: var(--serif); font-size: clamp(48px, 6vw, 76px); letter-spacing: -.05em; line-height: .98; }
.why-lead { max-width: 520px; margin-bottom: 46px; color: rgba(247,245,239,.7); font-size: 17px; line-height: 1.72; }
.why-points { border-top: 1px solid rgba(247,245,239,.17); }
.why-point { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid rgba(247,245,239,.17); }
.why-point > span { color: var(--gold-light); font-family: var(--serif); font-size: 17px; }
.why-point h3 { margin-bottom: 5px; font-family: var(--serif); font-size: 21px; }
.why-point p { max-width: 425px; margin-bottom: 0; color: rgba(247,245,239,.54); font-size: 13px; line-height: 1.6; }

.consultation-section { position: relative; overflow: hidden; background: var(--paper); border-top: 1px solid rgba(217,164,65,.2); }
.consultation-section::before { position: absolute; top: 0; left: 0; width: 100%; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .5; }
.consultation-orbit { position: absolute; top: -255px; right: -125px; width: 560px; height: 560px; border: 1px solid rgba(217,164,65,.14); border-radius: 50%; box-shadow: 0 0 0 38px rgba(217,164,65,.025), 0 0 0 76px rgba(217,164,65,.018); }
.consultation-orbit::after { position: absolute; top: 50%; left: -18px; width: 36px; height: 1px; content: ""; background: var(--gold); }
.consultation-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .84fr; align-items: center; gap: clamp(60px, 10vw, 145px); padding-top: 122px; padding-bottom: 122px; }
.consultation-copy { max-width: 650px; }
.consultation-copy h2 { max-width: 630px; margin-bottom: 26px; font-family: var(--serif); font-size: clamp(45px, 5.7vw, 72px); letter-spacing: -.05em; line-height: 1; }
.consultation-copy h2 em { color: #b88629; }
.consultation-lead { max-width: 540px; margin-bottom: 43px; color: var(--muted); font-size: 17px; line-height: 1.72; }
.consultation-points { max-width: 570px; border-top: 1px solid var(--line); }
.consultation-point { display: grid; grid-template-columns: 42px 1fr; gap: 17px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.consultation-point > span { color: #a77d2a; font-family: var(--serif); font-size: 17px; }
.consultation-point h3 { margin-bottom: 4px; font-family: var(--serif); font-size: 21px; line-height: 1.2; }
.consultation-point p { max-width: 470px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.consultation-card { position: relative; overflow: hidden; padding: 31px; color: var(--ivory); background: linear-gradient(145deg, #0d2a4e 0%, var(--navy) 70%); border: 1px solid rgba(242,199,102,.45); box-shadow: 0 25px 65px rgba(7,26,53,.18); }
.consultation-card::before { position: absolute; top: -115px; right: -105px; width: 280px; height: 280px; content: ""; border: 1px solid rgba(242,199,102,.22); border-radius: 50%; box-shadow: 0 0 0 23px rgba(242,199,102,.03), 0 0 0 46px rgba(242,199,102,.02); }
.consultation-card-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 47px; padding-bottom: 17px; color: var(--gold-light); border-bottom: 1px solid rgba(247,245,239,.18); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.consultation-card-top span:last-child { font-family: var(--serif); font-size: 14px; font-weight: 400; letter-spacing: .05em; }
.consultation-icon { position: relative; z-index: 1; display: inline-flex; width: 49px; height: 49px; margin-bottom: 21px; color: var(--gold-light); }
.consultation-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; }
.consultation-card h3 { position: relative; z-index: 1; max-width: 330px; margin-bottom: 15px; font-family: var(--serif); font-size: 32px; line-height: 1.06; }
.consultation-card > p:not(.consultation-note) { position: relative; z-index: 1; max-width: 340px; margin-bottom: 29px; color: rgba(247,245,239,.68); font-size: 14px; line-height: 1.65; }
.consultation-button { position: relative; z-index: 1; width: 100%; }
.consultation-note { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 8px; margin: 15px 0 0; color: rgba(247,245,239,.48); font-size: 11px; line-height: 1.5; }
.consultation-note > span:first-child { color: var(--gold-light); font-size: 16px; line-height: 1; }
.offer-section { scroll-margin-top: 96px; }
.offer-section .consultation-layout { padding-bottom: 76px; }
.deliverables-strip { position: relative; z-index: 1; padding-bottom: 112px; }
.deliverables-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; padding-top: 25px; border-top: 1px solid var(--line); }
.deliverables-heading .section-kicker { margin-bottom: 0; }
.deliverables-heading > p:last-child { max-width: 530px; margin: 0 0 1px; color: var(--muted); font-size: 13px; line-height: 1.6; text-align: right; }
.deliverables-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 25px; }
.deliverable-card { min-height: 184px; padding: 19px 17px 18px; background: rgba(255,255,255,.72); border: 1px solid var(--line); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.deliverable-card:hover { border-color: rgba(158,118,42,.48); box-shadow: 0 14px 30px rgba(7,26,53,.07); transform: translateY(-3px); }
.deliverable-index { display: block; margin-bottom: 26px; color: #a77d2a; font-family: var(--serif); font-size: 14px; }
.deliverable-card h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 21px; line-height: 1.08; }
.deliverable-card p { margin-bottom: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.contact-section { position: relative; overflow: hidden; color: var(--ivory); background: linear-gradient(130deg, #0b2241 0%, #071a35 55%, #102f51 100%); scroll-margin-top: 96px; }
.contact-section::before { position: absolute; top: 0; left: 0; width: 100%; height: 1px; content: ""; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .7; }
.contact-glow { position: absolute; top: -300px; right: -130px; width: 620px; height: 620px; border: 1px solid rgba(242,199,102,.14); border-radius: 50%; box-shadow: 0 0 0 42px rgba(242,199,102,.025), 0 0 0 84px rgba(242,199,102,.018); }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: clamp(60px, 10vw, 150px); padding-top: 128px; padding-bottom: 128px; }
.contact-copy h2 { max-width: 640px; margin-bottom: 26px; font-family: var(--serif); font-size: clamp(47px, 6.1vw, 78px); letter-spacing: -.05em; line-height: 1; }
.contact-copy > p:not(.section-kicker) { max-width: 500px; margin-bottom: 28px; color: rgba(247,245,239,.68); font-size: 17px; line-height: 1.72; }
.contact-line { display: flex; align-items: center; gap: 10px; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-dot { display: inline-block; width: 7px; height: 7px; border: 1px solid var(--gold-light); border-radius: 50%; }
.contact-brief { max-width: 460px; margin: 17px 0 0; color: rgba(247,245,239,.58); font-size: 14px; line-height: 1.65; }
.contact-card { padding: 29px; color: var(--ink); background: var(--paper); border: 1px solid rgba(242,199,102,.28); box-shadow: 0 25px 70px rgba(0,0,0,.18); }
.contact-card-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 29px; padding-bottom: 17px; color: #9e762a; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-card-top span:last-child { font-family: var(--serif); font-size: 14px; font-weight: 400; letter-spacing: .05em; }
.contact-booking-mark { position: relative; display: flex; align-items: center; justify-content: space-between; width: 76px; height: 49px; margin: 6px 0 25px; }
.contact-booking-mark::before, .contact-booking-mark::after { position: absolute; left: 0; width: 76px; height: 1px; content: ""; background: linear-gradient(90deg, var(--gold), transparent); }
.contact-booking-mark::before { top: 10px; }
.contact-booking-mark::after { bottom: 10px; width: 54px; }
.contact-booking-mark span { position: relative; z-index: 1; display: block; width: 7px; height: 7px; border: 1px solid var(--gold); border-radius: 50%; background: var(--paper); }
.contact-booking-mark span:nth-child(2) { width: 11px; height: 11px; background: var(--gold-light); box-shadow: 0 0 0 6px rgba(217,164,65,.14); }
.contact-card h3 { max-width: 370px; margin-bottom: 16px; font-family: var(--serif); font-size: 32px; line-height: 1.06; }
.contact-card > p:not(.contact-note) { max-width: 390px; margin-bottom: 29px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; padding: 13px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(11,29,56,.23); border-radius: 0; outline: 0; font-size: 16px; resize: vertical; transition: border-color .2s ease; }
.form-field textarea { min-height: 77px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #98a0ab; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.button-light { width: 100%; margin-top: 8px; color: var(--ivory); background: var(--navy); }
.button-light:hover { background: var(--gold); color: var(--navy); }
.form-status { min-height: 21px; margin: 14px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.form-status.is-confirmed { color: #8d6824; }
.contact-note { display: flex; align-items: flex-start; gap: 8px; margin: 15px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.contact-note > span:first-child { color: #9e762a; font-size: 16px; line-height: 1; }

.site-footer { color: var(--ivory); background: #041329; }
.footer-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; min-height: 150px; }
.footer-brand .brand-subtitle { color: rgba(247,245,239,.47); }
.footer-quote { margin: 0; color: rgba(247,245,239,.61); font-family: var(--serif); font-size: 16px; font-style: italic; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 25px; color: rgba(247,245,239,.58); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 23px; color: rgba(247,245,239,.36); border-top: 1px solid rgba(247,245,239,.13); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.reveal { opacity: 0; filter: blur(3px); transform: translateY(20px); transition: opacity .75s ease, filter .75s ease, transform .75s cubic-bezier(.2,.65,.25,1); }
.reveal.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }
.reveal-delay-short { transition-delay: .09s; }
.reveal-delay { transition-delay: .16s; }
.reveal-delay-long { transition-delay: .23s; }

@keyframes nebula-drift-one {
  0% { transform: translate3d(-2%, 1%, 0) scale(.97); }
  100% { transform: translate3d(3%, -3%, 0) scale(1.05); }
}

@keyframes nebula-drift-two {
  0% { transform: translate3d(3%, 2%, 0) scale(1.02); }
  100% { transform: translate3d(-4%, -4%, 0) scale(.94); }
}

@keyframes nebula-line-flow {
  to { stroke-dashoffset: -250px; }
}

@keyframes nebula-dot-pulse {
  0%, 100% { opacity: .45; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes halo-breathe {
  0% { opacity: .6; transform: scale(.92); }
  100% { opacity: .92; transform: scale(1.08); }
}

@keyframes orbit-drift {
  to { stroke-dashoffset: -180px; transform: rotate(4deg); }
}

@keyframes orbit-drift-reverse {
  to { stroke-dashoffset: 210px; transform: rotate(-12deg); }
}

@keyframes orbit-line-drift {
  to { stroke-dashoffset: -150px; }
}

@keyframes letter-reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wordmark-sweep {
  0%, 22% { transform: skewX(-18deg) translateX(-260%); opacity: 0; }
  30% { opacity: .8; }
  48%, 100% { transform: skewX(-18deg) translateX(760%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; filter: none; transform: none; }
  .hero-nebula, .wordmark-halo { animation: none; }
  .nebula-line, .nebula-dot, .wordmark-orbit ellipse, .wordmark-orbit path, .hero-letter, .hero-wordmark::after { animation: none; }
  .hero-letter { opacity: 1; transform: none; }
  .hero-wordmark::after { opacity: 0; }
}

@media (max-width: 950px) {
  :root { --shell: min(100% - 44px, 760px); }
  .desktop-nav { gap: 20px; margin-right: 24px; }
  .nav-cta { display: none; }
  .hero { min-height: 850px; }
  .hero-layout { gap: 42px; grid-template-columns: minmax(0, 1fr) minmax(290px, .75fr); }
  h1 { font-size: clamp(45px, 6.6vw, 70px); }
  .hero-visual { min-height: 400px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-card { min-height: 250px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 0; }
  .solution-card h3 { max-width: 430px; }
  .solution-card > p:not(.solution-label) { max-width: 560px; }
  .deliverables-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .origin-layout { grid-template-columns: minmax(235px, .8fr) minmax(0, 1.2fr); gap: 42px; }
  .origin-panel { height: 300px; }
  .origin-orbit-one { left: 35px; width: 270px; }
  .origin-orbit-two { left: 17px; width: 300px; }
  .origin-panel-caption { right: 22px; }
  .method-section .method-layout, .why-layout, .contact-layout, .consultation-layout { gap: 60px; }
  .why-frame { width: min(320px, 100%); height: 410px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-quote { grid-row: 2; grid-column: 1 / -1; }
  .footer-links { justify-content: flex-end; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 36px); }
  .site-header { background: linear-gradient(to bottom, rgba(7,26,53,.45), transparent); }
  .site-header.is-scrolled { background: rgba(7,26,53,.97); }
  .nav-shell { min-height: 76px; }
  .desktop-nav { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-toggle { display: block; }
  .mobile-menu { display: block; max-height: 0; overflow: hidden; background: rgba(4,19,41,.98); transition: max-height .3s ease; }
  .mobile-menu.is-open { max-height: 310px; }
  .mobile-menu-inner { display: grid; padding: 10px 0 23px; }
  .mobile-menu a { padding: 15px 0; color: rgba(247,245,239,.75); border-bottom: 1px solid rgba(247,245,239,.12); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .mobile-menu a:last-child { color: var(--gold-light); border-bottom: 0; }
  .language-menu { right: -12px; }
  .hero { min-height: 900px; }
  .hero-layout { display: flex; flex-direction: column; align-items: stretch; gap: 10px; min-height: 815px; padding-top: 145px; }
  h1 { max-width: 600px; font-size: clamp(46px, 13vw, 70px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-wrap: wrap; gap: 20px; }
  .hero-signature { margin-top: 50px; font-size: 15px; }
  .hero-visual { min-height: 370px; margin-top: 22px; }
  .hero-wordmark-stage { min-height: 330px; }
  .hero-wordmark { font-size: clamp(36px, 11vw, 58px); }
  .wordmark-caption { font-size: 8px; }
  .visual-caption-top { left: 0; }
  .visual-caption-bottom { right: 0; }
  .hero-foot { padding-bottom: 18px; }
  .section { padding: 88px 0; }
  .section-intro h2 { font-size: clamp(40px, 11vw, 58px); }
  .principles-section .section-intro, .solutions-section .section-intro { margin-bottom: 46px; }
  .pillars-grid { gap: 10px; }
  .pillar-card { min-height: 275px; padding: 20px 18px; }
  .pillar-top { margin-bottom: 30px; }
  .pillar-card h3 { font-size: 21px; }
  .pillar-card p { font-size: 12px; }
  .origin-section { padding: 82px 0; }
  .origin-section::before { right: 10%; }
  .origin-layout { display: flex; flex-direction: column; align-items: stretch; gap: 46px; }
  .origin-copy { order: 1; }
  .origin-visual { order: 2; min-height: 0; }
  .origin-copy h2 { font-size: clamp(46px, 13vw, 68px); }
  .origin-lead { font-size: 16px; }
  .origin-panel { width: 100%; height: 284px; }
  .origin-orbit-one { top: 87px; left: 50%; width: 280px; transform: translateX(-50%) rotate(-24deg); }
  .origin-orbit-two { top: 66px; left: 50%; width: 310px; transform: translateX(-50%) rotate(30deg); }
  .origin-star-one { top: 75px; left: calc(50% - 118px); }
  .origin-star-two { right: calc(50% - 126px); bottom: 72px; }
  .origin-formula { top: 126px; }
  .origin-crest { top: 69px; }
  .origin-panel-caption { right: 22px; bottom: 22px; }
  .solutions-note { align-items: flex-start; text-align: left; font-size: 16px; }
  .deliverables-strip { padding-bottom: 88px; }
  .deliverables-heading { display: block; }
  .deliverables-heading > p:last-child { max-width: 560px; margin-top: 13px; text-align: left; }
  .deliverables-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-section .method-layout, .why-layout, .contact-layout, .consultation-layout { display: flex; flex-direction: column; gap: 58px; }
  .method-section .section-intro { position: static; }
  .method-step { grid-template-columns: 42px 1fr 22px; gap: 12px; }
  .method-step h3 { font-size: 25px; }
  .method-step p { font-size: 13px; }
  .why-section { padding-top: 88px; padding-bottom: 88px; }
  .why-visual { width: 100%; min-height: 390px; order: 2; }
  .why-copy { order: 1; }
  .why-frame { height: 390px; }
  .why-copy h2, .contact-copy h2 { font-size: clamp(48px, 13vw, 68px); }
  .contact-layout { padding-top: 88px; padding-bottom: 88px; }
  .contact-card { width: 100%; padding: 23px 19px; }
  .consultation-layout { padding-top: 88px; padding-bottom: 88px; }
  .consultation-card { width: 100%; padding: 23px 19px; }
  .consultation-card-top { margin-bottom: 35px; }
  .consultation-card h3 { font-size: 29px; }
  .footer-main { display: flex; flex-direction: column; align-items: flex-start; gap: 25px; padding: 39px 0 34px; }
  .footer-quote { order: 2; text-align: left; }
  .footer-links { order: 3; justify-content: flex-start; flex-wrap: wrap; gap: 15px 22px; }
  .footer-bottom { display: grid; gap: 9px; padding-top: 17px; padding-bottom: 22px; }
}

@media (max-width: 410px) {
  .brand-name { font-size: 20px; }
  .brand-subtitle { font-size: 7px; }
  .language-toggle { gap: 4px; font-size: 10px; }
  .language-globe { font-size: 17px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 215px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .pillar-top { margin-bottom: 25px; }
  .hero-foot { gap: 9px; font-size: 8px; }
  .scroll-line { width: 40px; }
}
