@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: "AgainstHeroV7";
  src: url("assets/fonts/against-hero-v7.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #020e1b;
  --navy-900: #04172b;
  --navy: #07203c;
  --navy-700: #123b61;
  --gold: #968551;
  --gold-light: #eecd88;
  --gold-pale: #f6e9c8;
  --ivory: #f7f4ed;
  --paper: #fcfaf5;
  --white: #ffffff;
  --ink: #112235;
  --muted: #687482;
  --line: rgba(7, 32, 60, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --sans: "Lufga", "Manrope", "Avenir Next", sans-serif;
  --serif: "AgainstHeroV7", Georgia, serif;
  --shell: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 28px 80px rgba(3, 18, 34, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); font-weight: 400; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold-light); color: var(--navy); }

.page-shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 12px 18px; border-radius: 999px; background: var(--gold-light); color: var(--navy); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: none; }

/* Header */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 92px; color: var(--white); transition: height .35s var(--ease), background .35s, border-color .35s, box-shadow .35s; }
.site-header::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: rgba(255,255,255,.11); transform: scaleX(.94); transition: transform .35s, opacity .35s; }
.site-header.is-scrolled { height: 76px; background: rgba(3,17,32,.82); border-color: rgba(255,255,255,.08); box-shadow: 0 10px 40px rgba(0,0,0,.12); backdrop-filter: blur(18px) saturate(130%); -webkit-backdrop-filter: blur(18px) saturate(130%); }
.site-header.is-scrolled::after { transform: scaleX(1); opacity: .5; }
.nav-shell { position: relative; display: flex; align-items: center; justify-content: space-between; width: var(--shell); height: 100%; margin-inline: auto; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.site-logo { display: block; width: 220px; height: auto; max-height: 68px; object-fit: contain; object-position: left center; transition: width .35s var(--ease), max-height .35s var(--ease), opacity .25s; }
.brand:hover .site-logo { opacity: .86; }
.site-header.is-scrolled .site-logo { width: 190px; max-height: 57px; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; margin-right: 30px; }
.main-nav a { position: relative; padding: 13px 0; color: rgba(255,255,255,.68); font-size: 10px; font-weight: 600; letter-spacing: .04em; transition: color .25s; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; background: var(--gold-light); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 15px; padding: 6px 6px 6px 18px; border: 1px solid rgba(238,205,136,.35); border-radius: 999px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; transition: background .25s, color .25s, transform .25s; }
.nav-cta b { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: var(--gold-light); color: var(--navy); font-size: 14px; font-weight: 500; }
.nav-cta:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: transparent; color: white; }
.menu-toggle i { display: block; width: 17px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s; }
.menu-toggle.is-open i:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open i:last-child { transform: translateY(-3px) rotate(-45deg); }
.nav-contact-mobile { display: none; }

/* Shared typography and controls */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.serif { font-family: "AgainstHeroV7", Georgia, serif !important; font-synthesis: none; font-weight: 400 !important; font-style: normal !important; }
.gold-shimmer { display: inline; color: var(--gold-light); background: linear-gradient(105deg, var(--gold) 0%, var(--gold-light) 34%, #fff4cb 48%, var(--gold-light) 61%, var(--gold) 100%); background-size: 240% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: goldSweep 4.8s ease-in-out infinite; }
@keyframes goldSweep { 0%, 25% { background-position: 120% 50%; } 70%, 100% { background-position: -120% 50%; } }
.display-title { margin: 24px 0 0; color: var(--navy); font-size: clamp(44px, 6vw, 82px); font-weight: 300; letter-spacing: -.055em; line-height: .99; }
.display-title .serif { font-size: .82em; letter-spacing: -.025em; }
.section-label { display: flex; align-items: center; gap: 12px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-label::after { content: ""; width: 40px; height: 1px; background: currentColor; }
.section-title { margin: 22px 0 0; color: var(--navy); font-size: clamp(35px, 4.2vw, 59px); font-weight: 400; letter-spacing: -.048em; line-height: 1.03; }
.section-title .serif { color: var(--gold); font-size: .84em; letter-spacing: -.02em; }
.lede { color: var(--muted); font-size: 14px; line-height: 1.85; }
.lede-on-navy { margin-top: 28px; color: rgba(255,255,255,.56); }
.text-on-navy, .editorial-body .text-on-navy { color: rgba(255,255,255,.56); }
.editorial-body .text-on-navy.wide { border-color: rgba(255,255,255,.12); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 54px; padding: 7px 8px 7px 23px; border: 0; border-radius: 999px; cursor: pointer; font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: transform .25s var(--ease), box-shadow .25s, background .25s; }
.button b { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; font-size: 15px; font-weight: 500; transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover b { transform: rotate(45deg); }
.button-gold { background: var(--gold-light); color: var(--navy); box-shadow: 0 14px 40px rgba(150,133,81,.24); }
.button-gold b { background: var(--navy); color: white; }
.button-navy { background: var(--navy); color: white; }
.button-navy b { background: var(--gold-light); color: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 13px; padding-bottom: 6px; border-bottom: 1px solid rgba(7,32,60,.2); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.text-link span { color: var(--gold); transition: transform .25s; }
.text-link:hover span { transform: translateX(4px); }

/* Home hero */
.home-hero { position: relative; min-height: 930px; display: flex; align-items: center; overflow: hidden; padding: 155px 0 112px; background: radial-gradient(circle at 84% 23%, rgba(25,77,118,.72), transparent 27%), radial-gradient(circle at 10% 82%, rgba(150,133,81,.18), transparent 30%), linear-gradient(128deg, #020d19 0%, var(--navy-900) 42%, #082847 72%, #0c3559 100%); color: white; }
.home-hero::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(100deg, black 0%, rgba(0,0,0,.55) 58%, transparent 92%); }
.home-hero::after { content: ""; position: absolute; top: -180px; right: 11%; width: 340px; height: 680px; background: linear-gradient(180deg, rgba(238,205,136,.12), transparent 76%); filter: blur(45px); transform: rotate(24deg); pointer-events: none; }
.hero-glow { position: absolute; top: 8%; right: -205px; width: 720px; height: 720px; border: 1px solid rgba(238,205,136,.18); border-radius: 43% 57% 66% 34% / 38% 41% 59% 62%; animation: floatOrb 11s ease-in-out infinite; }
.hero-glow::before, .hero-glow::after { content: ""; position: absolute; border: 1px solid rgba(238,205,136,.11); border-radius: inherit; }
.hero-glow::before { inset: 70px; transform: rotate(13deg); }
.hero-glow::after { inset: 155px; transform: rotate(-9deg); }
@keyframes floatOrb { 0%,100% { transform: rotate(0) scale(1); } 50% { transform: rotate(4deg) scale(1.025); } }
.home-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 64px; }
.home-hero-copy { max-width: 840px; padding-top: 12px; }
.home-hero .eyebrow { font-weight: 500; letter-spacing: .24em; }
.home-hero h1 { max-width: 880px; margin: 29px 0 34px; font-size: inherit; font-weight: 300; line-height: 1; }
.hero-line { display: block; }
.hero-line-sans { font-family: var(--sans); font-size: clamp(64px, 6.6vw, 100px); font-weight: 300; letter-spacing: -.058em; line-height: .9; }
.home-hero h1 .hero-line-serif { margin-top: .28em; margin-left: .42em; font-size: clamp(43px, 4.7vw, 68px); letter-spacing: -.025em; line-height: .92; }
.hero-intro-row { display: grid; grid-template-columns: 54px minmax(0, 580px); align-items: start; gap: 21px; }
.hero-intro-row::before { content: ""; height: 1px; margin-top: 13px; background: linear-gradient(90deg, var(--gold-light), rgba(238,205,136,.15)); }
.hero-intro-row p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; font-weight: 300; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 32px; }
.home-hero .text-link { border-color: rgba(255,255,255,.2); color: white; }
.hero-assurance { display: flex; align-items: center; gap: 25px; margin-top: 29px; color: rgba(255,255,255,.42); font-size: 8px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.hero-assurance span { display: inline-flex; align-items: center; gap: 9px; }
.hero-assurance span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 14px rgba(238,205,136,.9); }
.hero-signature { position: relative; min-height: 560px; display: grid; place-items: center; }
.signature-shape { position: absolute; inset: 0 0 0 18px; overflow: hidden; border: 1px solid rgba(238,205,136,.3); border-radius: 48% 48% 22px 22px / 32% 32% 22px 22px; background: linear-gradient(155deg, rgba(255,255,255,.105), rgba(255,255,255,.018)); box-shadow: 0 52px 110px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.08); backdrop-filter: blur(5px); transform: rotate(2deg); }
.signature-shape::before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(238,205,136,.12); border-radius: inherit; }
.signature-shape::after { content: ""; position: absolute; top: -30%; left: -60%; width: 48%; height: 170%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent); transform: rotate(18deg); animation: panelSweep 6.8s ease-in-out infinite; }
@keyframes panelSweep { 0%,38% { left: -65%; } 72%,100% { left: 130%; } }
.hero-official-logo { position: relative; z-index: 2; width: 88%; height: auto; filter: drop-shadow(0 22px 42px rgba(0,0,0,.3)); }
.hero-side-label { position: absolute; z-index: 3; top: 56px; right: -18px; padding: 15px 19px; border: 1px solid rgba(238,205,136,.3); border-radius: 999px; background: rgba(3,17,32,.74); box-shadow: 0 18px 45px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.hero-side-label span, .hero-side-label strong { display: block; }
.hero-side-label span { color: rgba(255,255,255,.45); font-size: 7px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.hero-side-label strong { margin-top: 4px; color: var(--gold-light); font-size: 10px; font-weight: 500; letter-spacing: .08em; }
.signature-note { position: absolute; z-index: 3; right: -10px; bottom: 34px; width: 150px; padding: 25px 21px; border-radius: 30px 30px 8px 30px; background: linear-gradient(145deg, #f5dc9f, var(--gold-light)); color: var(--navy); box-shadow: 0 24px 55px rgba(0,0,0,.24); }
.signature-note strong { display: block; font-family: var(--serif); font-size: 43px; font-style: normal; font-weight: 400; line-height: .9; }
.signature-note span { display: block; margin-top: 9px; font-size: 8px; font-weight: 600; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; }
.hero-foot { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; border-top: 1px solid rgba(255,255,255,.1); background: rgba(2,14,27,.12); }
.hero-foot .page-shell { display: grid; grid-template-columns: repeat(4,1fr); }
.hero-foot span { padding: 18px 0; color: rgba(255,255,255,.42); font-size: 8px; font-weight: 500; letter-spacing: .17em; text-align: center; text-transform: uppercase; }
.hero-foot span + span { border-left: 1px solid rgba(255,255,255,.1); }

/* Inner heroes */
.inner-hero { position: relative; overflow: hidden; padding: 180px 0 98px; background: radial-gradient(circle at 86% 38%, rgba(29,72,111,.62), transparent 28%), linear-gradient(135deg, var(--navy-950), var(--navy)); color: white; }
.inner-hero::before { content: ""; position: absolute; top: -220px; right: -140px; width: 620px; height: 620px; border: 1px solid rgba(238,205,136,.15); border-radius: 50%; box-shadow: 0 0 0 75px rgba(238,205,136,.035), 0 0 0 150px rgba(238,205,136,.02); }
.inner-hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.inner-hero .display-title { max-width: 810px; color: white; }
.inner-hero .lede { max-width: 470px; margin: 0 0 4px; color: rgba(255,255,255,.58); }
.breadcrumb { display: flex; gap: 8px; margin-top: 44px; color: rgba(255,255,255,.38); font-size: 8px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold-light); }

/* Layout sections */
.section { padding: 120px 0; }
.section-ivory { background: var(--ivory); }
.section-navy { position: relative; overflow: hidden; background: var(--navy); color: white; }
.section-navy .section-title { color: white; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 70px; margin-bottom: 60px; }
.section-head .lede { max-width: 430px; margin: 0 0 6px; }
.section-head-light .section-title { color: white; }
.section-head-light .lede { color: rgba(255,255,255,.55); }
.editorial-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.editorial-aside { position: sticky; top: 115px; align-self: start; }
.editorial-body { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 45px; }
.editorial-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.editorial-body .wide { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid var(--line); }
.soft-panel { padding: 55px; border: 1px solid var(--line); border-radius: 40px 40px 12px 40px; background: rgba(255,255,255,.55); box-shadow: 0 18px 60px rgba(7,32,60,.06); }

/* Home modules */
.home-intro { background: var(--paper); }
.home-intro-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; align-items: start; }
.home-intro-copy .section-title { max-width: 720px; }
.home-intro-text { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; margin: 42px 0 38px; }
.home-intro-text p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.85; }
.principle-orbit { position: relative; min-height: 405px; display: grid; place-items: center; }
.principle-orbit::before, .principle-orbit::after { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.principle-orbit::before { width: 350px; height: 350px; }
.principle-orbit::after { width: 260px; height: 260px; }
.orbit-copy { position: relative; z-index: 2; max-width: 230px; text-align: center; }
.orbit-copy strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 54px; font-style: normal; font-weight: 400; line-height: .85; }
.orbit-copy span { display: block; margin-top: 15px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .16em; line-height: 1.6; text-transform: uppercase; }
.orbit-dot { position: absolute; top: 20px; right: 58px; width: 75px; height: 75px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 15px 35px rgba(150,133,81,.22); }
.orbit-dot::after { content: "↗"; display: grid; place-items: center; height: 100%; color: var(--navy); font-size: 20px; }

.practice-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.practice-tile { position: relative; min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 31px; border: 1px solid rgba(255,255,255,.11); border-radius: 30px 30px 8px 30px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); transition: transform .35s var(--ease), background .35s, border-color .35s; }
.practice-tile::before { content: ""; position: absolute; right: -60px; bottom: -80px; width: 180px; height: 180px; border: 1px solid rgba(238,205,136,.13); border-radius: 50%; transition: transform .5s var(--ease); }
.practice-tile:hover { transform: translateY(-7px); border-color: rgba(238,205,136,.38); background: linear-gradient(145deg, rgba(238,205,136,.12), rgba(255,255,255,.025)); }
.practice-tile:hover::before { transform: scale(1.2); }
.practice-number { color: var(--gold-light); font-size: 9px; letter-spacing: .15em; }
.practice-tile h3 { max-width: 290px; margin: 42px 0 12px; color: white; font-size: 24px; font-weight: 400; letter-spacing: -.035em; }
.practice-tile p { max-width: 390px; margin: 0; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.75; }
.practice-tile .tile-arrow { position: absolute; top: 24px; right: 24px; display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--gold-light); transition: transform .25s, background .25s; }
.practice-tile:hover .tile-arrow { transform: rotate(45deg); background: var(--gold-light); color: var(--navy); }

.method-ribbon { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 60px; }
.method-step { min-height: 245px; padding: 28px; border: 1px solid var(--line); border-radius: 28px 28px 8px 28px; background: var(--white); transition: transform .3s var(--ease), box-shadow .3s; }
.method-step:nth-child(even) { transform: translateY(24px); }
.method-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.method-step:nth-child(even):hover { transform: translateY(16px); }
.method-step > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ivory); color: var(--gold); font-size: 9px; font-weight: 700; }
.method-step h3 { margin: 42px 0 13px; color: var(--navy); font-size: 20px; font-weight: 500; letter-spacing: -.035em; }
.method-step p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }

.partners-preview { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.partner-orbit { position: relative; min-height: 530px; }
.partner-portrait { position: absolute; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #17466d, #061a30); color: var(--gold-light); box-shadow: var(--shadow); }
.partner-portrait::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(to top, rgba(2,14,27,.72), transparent 42%); pointer-events: none; }
.partner-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .65s var(--ease); }
.partner-portrait:hover img { transform: scale(1.025); }
.partner-portrait small { position: absolute; z-index: 2; bottom: 22px; padding: 9px 13px; border: 1px solid rgba(238,205,136,.22); border-radius: 999px; background: rgba(3,17,32,.52); color: rgba(255,255,255,.78); font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; backdrop-filter: blur(8px); }
.partner-portrait.first { top: 0; left: 0; width: 63%; height: 70%; border-radius: 90px 90px 20px 90px; }
.partner-portrait.second { right: 0; bottom: 0; width: 56%; height: 63%; border: 8px solid var(--paper); border-radius: 80px 20px 80px 80px; }
.partners-copy .lede { max-width: 530px; margin: 30px 0; }
.mini-partners { margin: 36px 0; border-top: 1px solid var(--line); }
.mini-partner { display: grid; grid-template-columns: 1fr auto; gap: 30px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.mini-partner strong { display: block; color: var(--navy); font-size: 15px; font-weight: 600; }
.mini-partner span { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.mini-partner b { align-self: center; color: var(--gold); font-weight: 500; }

.cta-band { position: relative; overflow: hidden; padding: 92px 0; background: var(--navy-950); color: white; }
.cta-band::before { content: ""; position: absolute; top: -280px; right: -140px; width: 650px; height: 650px; border: 1px solid rgba(238,205,136,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(238,205,136,.025); }
.cta-band-grid { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 70px; }
.cta-band h2 { max-width: 760px; margin: 15px 0 0; color: white; font-size: clamp(38px,5vw,68px); font-weight: 300; letter-spacing: -.052em; line-height: 1.02; }

/* Office page */
.manifesto { padding: 110px 0; }
.manifesto-quote { position: relative; max-width: 980px; margin: 0 auto; padding-left: 100px; }
.manifesto-quote::before { content: "“"; position: absolute; top: -45px; left: 0; color: var(--gold-light); font-family: var(--serif); font-size: 130px; line-height: 1; }
.manifesto-quote p { margin: 0; color: var(--navy); font-size: clamp(30px,4vw,52px); font-weight: 400; letter-spacing: -.044em; line-height: 1.17; }
.manifesto-quote em { color: var(--gold); font-family: var(--serif); font-style: normal; font-weight: 400; }
.value-flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { min-height: 330px; padding: 34px; border: 1px solid var(--line); border-radius: 42px 42px 10px 42px; background: var(--white); }
.value-card:nth-child(2) { margin-top: 38px; border-radius: 42px 10px 42px 42px; }
.value-card .index { color: var(--gold); font-size: 9px; letter-spacing: .16em; }
.value-card h3 { margin: 92px 0 16px; color: var(--navy); font-size: 24px; font-weight: 600; letter-spacing: -.04em; }
.value-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.office-statement { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.office-symbol { position: relative; min-height: 480px; display: grid; place-items: center; }
.office-symbol::before { content: ""; position: absolute; width: 410px; height: 410px; border: 1px solid rgba(238,205,136,.2); border-radius: 50% 50% 18% 50%; transform: rotate(18deg); }
.office-symbol span { position: relative; color: var(--gold-light); font-family: var(--serif); font-size: 128px; font-style: normal; }
.office-copy .section-title { color: white; }
.office-copy .lede { margin: 28px 0; color: rgba(255,255,255,.55); }
.office-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
.office-points span { padding: 16px 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; color: rgba(255,255,255,.66); font-size: 9px; text-align: center; letter-spacing: .07em; }

/* Practice page */
.area-directory { display: grid; gap: 18px; }
.area-row { position: relative; display: grid; grid-template-columns: 70px 1fr 1fr 48px; gap: 30px; align-items: center; min-height: 166px; padding: 28px 34px; border: 1px solid var(--line); border-radius: 34px 34px 9px 34px; background: rgba(255,255,255,.62); transition: transform .3s var(--ease), background .3s, box-shadow .3s; }
.area-row:hover { transform: translateX(8px); background: white; box-shadow: 0 22px 60px rgba(7,32,60,.08); }
.area-row > span { color: var(--gold); font-size: 10px; letter-spacing: .16em; }
.area-row h2 { margin: 0; color: var(--navy); font-size: 25px; font-weight: 500; letter-spacing: -.04em; }
.area-row p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.area-row b { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ivory); color: var(--gold); font-size: 16px; font-weight: 500; transition: transform .25s, background .25s; }
.area-row:hover b { transform: rotate(45deg); background: var(--navy); color: var(--gold-light); }
.area-notice { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; margin-top: 55px; padding: 40px 45px; border-radius: 34px; background: var(--navy); color: white; }
.area-notice h3 { margin: 0 0 9px; font-size: 20px; font-weight: 600; }
.area-notice p { max-width: 650px; margin: 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.7; }

/* Differentials page */
.difference-stack { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.difference-card { position: relative; min-height: 330px; overflow: hidden; padding: 38px; border-radius: 44px 44px 12px 44px; background: white; box-shadow: 0 18px 65px rgba(7,32,60,.06); }
.difference-card:nth-child(2), .difference-card:nth-child(3) { border-radius: 44px 12px 44px 44px; }
.difference-card::after { content: ""; position: absolute; right: -70px; bottom: -85px; width: 200px; height: 200px; border: 1px solid rgba(150,133,81,.15); border-radius: 50%; }
.difference-card .icon-word { color: var(--gold); font-family: var(--serif); font-size: 28px; font-style: normal; }
.difference-card h2 { margin: 95px 0 14px; color: var(--navy); font-size: 25px; font-weight: 500; letter-spacing: -.04em; }
.difference-card p { max-width: 500px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.journey { counter-reset: steps; margin: 0; padding: 0; list-style: none; }
.journey li { counter-increment: steps; display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 33px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.journey li::before { content: "0" counter(steps); color: var(--gold-light); font-size: 10px; letter-spacing: .15em; }
.journey h3 { margin: 0 0 10px; color: white; font-size: 22px; font-weight: 400; letter-spacing: -.03em; }
.journey p { max-width: 660px; margin: 0; color: rgba(255,255,255,.53); font-size: 11px; line-height: 1.75; }

/* Partners page */
.profile-stack { display: grid; gap: 28px; }
.profile { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 510px; overflow: hidden; border: 1px solid var(--line); border-radius: 58px 58px 14px 58px; background: white; box-shadow: 0 26px 80px rgba(7,32,60,.07); }
.profile:nth-child(even) { grid-template-columns: 1.28fr .72fr; border-radius: 58px 14px 58px 58px; }
.profile:nth-child(even) .profile-art { order: 2; }
.profile-art { position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 70% 20%, #1a507d, transparent 34%), linear-gradient(145deg, #103b62, #041528); color: var(--gold-light); }
.profile-art::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(to top, rgba(2,14,27,.74), transparent 47%); pointer-events: none; }
.profile-art::after { content: ""; position: absolute; z-index: 2; inset: 22px; border: 1px solid rgba(238,205,136,.18); border-radius: 38px 38px 9px 38px; pointer-events: none; }
.profile-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .7s var(--ease); }
.profile:hover .profile-art img { transform: scale(1.02); }
.profile-art span { position: absolute; z-index: 3; bottom: 38px; padding: 10px 15px; border: 1px solid rgba(238,205,136,.24); border-radius: 999px; background: rgba(3,17,32,.52); font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; backdrop-filter: blur(8px); }
.profile-copy { display: flex; flex-direction: column; justify-content: center; padding: 65px; }
.profile-copy > span { color: var(--gold); font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.profile-copy h2 { margin: 18px 0 22px; color: var(--navy); font-size: clamp(34px,4vw,53px); font-weight: 400; letter-spacing: -.048em; }
.profile-copy p { max-width: 600px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.85; }
.profile-contact { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.profile-contact a { padding: 13px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); font-size: 9px; transition: background .25s, color .25s; }
.profile-contact a:hover { background: var(--navy); color: white; }
.collaboration-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 75px; align-items: center; padding: 70px; border-radius: 52px 52px 14px 52px; background: var(--navy); color: white; }
.collaboration-card .section-title { color: white; }
.collaboration-card .lede { color: rgba(255,255,255,.55); }
.collaboration-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.collaboration-tags span { padding: 16px 20px; border: 1px solid rgba(238,205,136,.22); border-radius: 999px; color: var(--gold-light); font-size: 9px; letter-spacing: .06em; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.contact-side { position: sticky; top: 115px; }
.contact-side .lede { max-width: 440px; margin: 28px 0 40px; }
.contact-channels { display: grid; gap: 12px; }
.contact-channel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 25px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 22px 22px 7px 22px; background: white; transition: transform .25s, box-shadow .25s; }
.contact-channel:hover { transform: translateX(5px); box-shadow: 0 15px 40px rgba(7,32,60,.08); }
.contact-channel span { display: block; color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.contact-channel strong { display: block; margin-top: 6px; color: var(--navy); font-size: 12px; font-weight: 600; }
.contact-channel b { color: var(--gold); font-weight: 500; }
.contact-form { padding: 48px; border-radius: 44px 44px 12px 44px; background: white; box-shadow: var(--shadow); }
.form-intro { margin-bottom: 34px; }
.form-intro h2 { margin: 0 0 10px; color: var(--navy); font-size: 28px; font-weight: 600; letter-spacing: -.04em; }
.form-intro p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.contact-form label { display: block; margin-bottom: 19px; color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { display: block; width: 100%; margin-top: 9px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 13px; outline: 0; background: var(--paper); color: var(--navy); font-size: 12px; resize: vertical; transition: border-color .2s, box-shadow .2s, background .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(150,133,81,.1); }
.consent { display: flex !important; align-items: flex-start; gap: 10px; color: var(--muted) !important; font-size: 9px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.55; text-transform: none !important; }
.consent input { flex: 0 0 auto; width: 15px; margin: 1px 0 0; accent-color: var(--navy); }
.consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.form-button { width: 100%; }
.form-note { margin: 14px 0 0; color: #8a929c; font-size: 8px; line-height: 1.6; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 18px; margin: 13px 0 0; color: var(--navy); font-size: 10px; line-height: 1.5; text-align: center; }
.form-status.success { color: #356748; }
.form-status.error { color: #9a3f36; }
.form-status a { text-decoration: underline; }

/* Legal */
.legal-wrap { max-width: 920px; }
.legal-content { display: grid; gap: 0; padding: 80px 0 120px; }
.legal-section { display: grid; grid-template-columns: 210px 1fr; gap: 45px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.legal-section h2 { margin: 0; color: var(--navy); font-size: 18px; font-weight: 600; letter-spacing: -.03em; }
.legal-section p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.85; }
.legal-section a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* Footer and utilities */
.footer { padding: 72px 0 24px; background: #020d19; color: white; }
.footer .site-logo { width: 250px; max-height: 88px; }
.footer-top { display: grid; grid-template-columns: 1.4fr .65fr .9fr .95fr; gap: 60px; padding-bottom: 58px; }
.footer-summary { max-width: 280px; margin: 24px 0 0; color: rgba(255,255,255,.4); font-size: 10px; line-height: 1.75; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column > span { margin-bottom: 9px; color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.5); font-size: 10px; transition: color .2s; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.3); font-size: 8px; line-height: 1.6; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 24px; display: flex; align-items: center; gap: 11px; padding: 7px 7px 7px 17px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; background: rgba(7,32,60,.88); color: white; box-shadow: 0 18px 45px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.whatsapp-float span { font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.whatsapp-float b { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--gold-light); color: var(--navy); font-size: 16px; }
.cookie-banner { position: fixed; z-index: 200; right: 22px; bottom: 84px; width: min(410px, calc(100% - 44px)); display: none; align-items: center; gap: 18px; padding: 18px 20px; border: 1px solid rgba(238,205,136,.3); border-radius: 22px 22px 7px 22px; background: rgba(3,17,32,.95); box-shadow: 0 18px 55px rgba(0,0,0,.28); color: white; backdrop-filter: blur(16px); }
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.68); font-size: 9px; line-height: 1.55; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner button { flex: 0 0 auto; padding: 10px 14px; border: 0; border-radius: 999px; background: var(--gold-light); color: var(--navy); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.stagger > *:nth-child(2) { transition-delay: .08s; }
.stagger > *:nth-child(3) { transition-delay: .16s; }
.stagger > *:nth-child(4) { transition-delay: .24s; }
.stagger > *:nth-child(5) { transition-delay: .32s; }
.stagger > *:nth-child(6) { transition-delay: .40s; }



/* Refinements for partner imagery balance */
.partner-portrait.first {
  top: 10px;
  width: 58%;
  height: 66%;
}
.partner-portrait.first img {
  object-position: center top;
  transform: scale(.88);
  transform-origin: center top;
}
.partner-portrait.first:hover img {
  transform: scale(.91);
}

.profile:first-child .profile-art img {
  object-position: center top;
  transform: scale(.89);
  transform-origin: center top;
}
.profile:first-child:hover .profile-art img {
  transform: scale(.92);
}

@media (max-width: 1050px) {
  .main-nav { gap: 18px; margin-right: 18px; }
  .main-nav a { font-size: 9px; }
  .home-hero-grid { gap: 40px; }
  .hero-line-sans { font-size: 76px; }
  .home-hero h1 .hero-line-serif { font-size: 52px; }
  .hero-official-logo { width: 78%; }
  .home-intro-grid, .editorial-grid { gap: 55px; }
  .method-ribbon { grid-template-columns: repeat(2,1fr); }
  .method-step:nth-child(even) { transform: none; }
  .partners-preview { gap: 50px; }
  .footer-top { grid-template-columns: 1.2fr .6fr 1fr; }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 1180px); }
  .site-header { height: 78px; }
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav.is-open { position: absolute; inset: 100% -18px auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 20px 22px 28px; border-top: 1px solid rgba(255,255,255,.08); border-radius: 0 0 25px 25px; background: rgba(3,17,32,.97); box-shadow: 0 25px 45px rgba(0,0,0,.25); }
  .main-nav.is-open a { padding: 13px 2px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 10px; }
  .main-nav.is-open .nav-contact-mobile { display: block; margin-top: 14px; padding: 15px; border: 1px solid rgba(238,205,136,.4); border-radius: 999px; color: var(--gold-light); text-align: center; }
  .home-hero { min-height: auto; padding: 140px 0 105px; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .hero-line-sans { font-size: clamp(60px, 10vw, 86px); }
  .home-hero h1 .hero-line-serif { font-size: clamp(40px, 6.5vw, 58px); }
  .hero-signature { width: min(470px,90%); min-height: 430px; margin: 15px auto 0; }
  .hero-foot { display: none; }
  .inner-hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .inner-hero .lede { max-width: 620px; }
  .section { padding: 90px 0; }
  .section-head { align-items: start; flex-direction: column; gap: 26px; }
  .home-intro-grid, .editorial-grid, .office-statement, .partners-preview, .contact-layout, .collaboration-card { grid-template-columns: 1fr; }
  .principle-orbit { min-height: 350px; }
  .editorial-aside, .contact-side { position: static; }
  .practice-list { grid-template-columns: 1fr; }
  .value-flow { grid-template-columns: 1fr; }
  .value-card, .value-card:nth-child(2) { min-height: 260px; margin: 0; }
  .value-card h3 { margin-top: 58px; }
  .profile, .profile:nth-child(even) { grid-template-columns: .85fr 1.15fr; }
  .profile:nth-child(even) .profile-art { order: 0; }
  .profile-copy { padding: 45px; }
  .contact-layout { gap: 55px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-column:last-child { grid-column: auto; }
}

@media (max-width: 650px) {
  .site-logo, .site-header.is-scrolled .site-logo { width: 176px; max-height: 58px; }
  .home-hero { padding-top: 118px; }
  .hero-line-sans { font-size: clamp(48px, 14vw, 68px); }
  .home-hero h1 .hero-line-serif { margin-top: .34em; margin-left: .12em; font-size: clamp(31px, 9.5vw, 45px); }
  .hero-intro-row { grid-template-columns: 34px minmax(0,1fr); gap: 15px; }
  .hero-intro-row p { font-size: 13px; }
  .hero-assurance { align-items: flex-start; flex-direction: column; gap: 11px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-signature { min-height: 360px; }
  .signature-shape { inset: 8px 4px 0; }
  .hero-official-logo { width: 84%; }
  .signature-note { right: -4px; width: 125px; padding: 19px; }
  .inner-hero { padding: 135px 0 72px; }
  .display-title { font-size: 48px; }
  .section-title { font-size: 40px; }
  .section { padding: 76px 0; }
  .home-intro-text, .editorial-body { grid-template-columns: 1fr; }
  .editorial-body .wide { grid-column: auto; }
  .soft-panel { padding: 34px 25px; border-radius: 30px 30px 9px 30px; }
  .principle-orbit::before { width: 300px; height: 300px; }
  .principle-orbit::after { width: 220px; height: 220px; }
  .practice-tile { min-height: 230px; }
  .method-ribbon { grid-template-columns: 1fr; }
  .partner-orbit { min-height: 430px; }
  .partner-portrait.first { top: 0; width: 64%; height: 68%; }
  .partner-portrait.second { width: 62%; }
  .cta-band-grid { align-items: flex-start; flex-direction: column; }
  .manifesto-quote { padding-left: 0; padding-top: 64px; }
  .manifesto-quote::before { left: 0; }
  .office-symbol { min-height: 340px; }
  .office-symbol::before { width: 290px; height: 290px; }
  .office-symbol span { font-size: 92px; }
  .office-points { grid-template-columns: 1fr; }
  .area-row { grid-template-columns: 45px 1fr 42px; gap: 16px; padding: 25px 20px; }
  .area-row p { grid-column: 2 / -1; }
  .area-row b { grid-column: 3; grid-row: 1; }
  .area-notice { grid-template-columns: 1fr; padding: 32px 25px; }
  .difference-stack { grid-template-columns: 1fr; }
  .difference-card { min-height: 280px; padding: 30px; }
  .difference-card h2 { margin-top: 65px; }
  .profile, .profile:nth-child(even) { grid-template-columns: 1fr; min-height: 0; border-radius: 38px 38px 10px 38px; }
  .profile-art { min-height: 330px; }
  .profile-copy { padding: 38px 27px 44px; }
  .collaboration-card { padding: 42px 28px; border-radius: 36px 36px 10px 36px; }
  .contact-form { padding: 32px 23px; border-radius: 32px 32px 9px 32px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .legal-section { grid-template-columns: 1fr; gap: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 6px; }
  .cookie-banner { right: 14px; bottom: 82px; width: calc(100% - 28px); align-items: stretch; flex-direction: column; }
  .cookie-banner button { width: 100%; }
}

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