@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,500;1,6..72,500&display=swap');

:root {
  --ink: #0b1f2a;
  --ink-2: #12313d;
  --ink-3: #1a4652;
  --ivory: #f4f0e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --gold: #c9a96e;
  --gold-light: #e3c990;
  --sage: #93a89f;
  --muted: #627078;
  --line: rgba(11, 31, 42, .13);
  --line-light: rgba(255, 255, 255, .15);
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
  --shadow: 0 24px 70px rgba(11, 31, 42, .12);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --shell: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: var(--ink); }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
p, h1, h2, h3, blockquote { margin-top: 0; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%); background: var(--white); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 92px;
  z-index: 1000;
  color: var(--white);
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { height: 76px; background: rgba(11, 31, 42, .94); backdrop-filter: blur(18px); box-shadow: 0 14px 35px rgba(0, 0, 0, .18); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 230px; }
.brand-mark { width: 48px; height: 48px; overflow: hidden; display: grid; place-items: center; border-radius: 50%; background: var(--ink-2); }
.brand-mark img { width: 66px; height: 66px; object-fit: cover; transform: scale(1.08); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: var(--font-serif); font-size: 1.18rem; letter-spacing: .22em; font-weight: 500; }
.brand-copy small { margin-top: 4px; color: rgba(255,255,255,.66); font-size: .66rem; letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav > a { position: relative; color: rgba(255,255,255,.72); font-size: .85rem; font-weight: 600; transition: color .2s ease; }
.main-nav > a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--gold); transition: right .25s ease; }
.main-nav > a:hover, .main-nav > a.is-active { color: var(--white); }
.main-nav > a:hover::after, .main-nav > a.is-active::after { right: 0; }
.main-nav .nav-cta { display: inline-flex; align-items: center; gap: 20px; padding: 11px 17px 11px 20px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: var(--white); }
.nav-cta span { color: var(--gold-light); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 17px; height: 1px; margin: 5px auto; background: var(--white); transition: transform .25s ease; }

/* Typography and shared */
.section { padding: 130px 0; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .18em; font-size: .69rem; font-weight: 700; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; opacity: .75; }
.eyebrow-dark { color: var(--ink-3); }
.eyebrow-light { color: var(--gold-light); }
h1, h2 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
h1 { font-size: 5rem; }
h2 { font-size: 3.8rem; }
h1 em, h2 em { color: var(--gold); font-weight: inherit; }
.body-large { font-size: 1.14rem; line-height: 1.8; color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: .88rem; font-weight: 700; transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ink); box-shadow: 0 12px 30px rgba(11,31,42,.18); }
.button-primary:hover { background: var(--ink-3); }
.button-text { padding-inline: 2px; border-radius: 0; border-bottom-color: var(--line); }
.button-gold { color: var(--ink); background: var(--gold-light); box-shadow: 0 12px 28px rgba(201,169,110,.2); }
.button-gold:hover { background: #eed59f; }
.editorial-link { display: inline-flex; align-items: center; gap: 22px; margin-top: 12px; padding-bottom: 7px; border-bottom: 1px solid var(--gold); font-size: .9rem; font-weight: 700; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { animation: none !important; } }

/* Home hero */
.hero { position: relative; min-height: 900px; padding: 172px 0 96px; overflow: hidden; color: var(--white); background: var(--ink); }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(147,168,159,.16), transparent 35%), linear-gradient(105deg, transparent 60%, rgba(255,255,255,.03)); }
.hero-orbit { position: absolute; border: 1px solid rgba(201,169,110,.16); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 700px; height: 700px; right: -310px; top: 40px; }
.hero-orbit-two { width: 450px; height: 450px; right: -180px; top: 165px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .94fr 1.06fr; gap: 76px; align-items: center; }
.hero-copy { padding-top: 24px; }
.hero-copy h1 { max-width: 690px; margin-bottom: 24px; font-size: 3.95rem; line-height: 1.01; }
.hero-lead { max-width: 640px; margin-bottom: 30px; color: rgba(255,255,255,.7); font-size: 1.13rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero .button-primary { color: var(--ink); background: var(--gold-light); }
.hero .button-primary:hover { background: var(--white); }
.hero .button-text { color: var(--white); border-bottom-color: rgba(255,255,255,.25); }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 38px; color: rgba(255,255,255,.52); text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; }
.hero-proof i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-visual { position: relative; min-height: 600px; }
.hero-photo-frame { position: absolute; top: 0; right: 0; width: 88%; height: 570px; padding: 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 220px 220px 24px 24px; }
.hero-photo-frame::after { content: ''; position: absolute; inset: 12px; border-radius: 210px 210px 14px 14px; background: linear-gradient(to top, rgba(11,31,42,.7), transparent 45%); pointer-events: none; }
.hero-photo-frame img { height: 100%; object-fit: cover; border-radius: 210px 210px 14px 14px; }
.hero-note { position: absolute; left: 0; bottom: 44px; width: 270px; padding: 24px 26px; color: var(--ink); background: var(--ivory); border-radius: 2px 24px 2px 24px; box-shadow: var(--shadow); }
.note-index { display: block; margin-bottom: 24px; color: var(--gold); font-family: var(--font-serif); font-size: 1.15rem; }
.hero-note p { margin: 0; font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.25; }
.hero-seal { position: absolute; right: -24px; bottom: 12px; width: 125px; height: 125px; display: grid; align-content: center; justify-items: center; border: 1px solid rgba(201,169,110,.5); border-radius: 50%; color: var(--gold-light); background: rgba(11,31,42,.9); text-align: center; }
.hero-seal::before { content: ''; position: absolute; inset: 7px; border: 1px dashed rgba(201,169,110,.34); border-radius: 50%; }
.hero-seal span { font-family: var(--font-serif); letter-spacing: .18em; }
.hero-seal small { font-size: .5rem; letter-spacing: .1em; text-transform: uppercase; }

.signal-bar { color: var(--white); background: var(--ink-2); border-top: 1px solid var(--line-light); }
.signal-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.signal-grid article { display: flex; align-items: center; gap: 18px; min-height: 132px; padding: 28px 34px; border-left: 1px solid var(--line-light); }
.signal-grid article:last-child { border-right: 1px solid var(--line-light); }
.signal-grid strong { color: var(--gold); font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; }
.signal-grid div { display: grid; }
.signal-grid b { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; }
.signal-grid span { color: rgba(255,255,255,.52); font-size: .73rem; }

/* Diagnosis */
.diagnosis { background: var(--ivory); }
.diagnosis-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.diagnosis-visual { position: relative; padding: 0 58px 58px 0; }
.image-window { overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.image-window-tall { height: 570px; }
.image-window img { height: 100%; object-fit: cover; }
.symptom-stack { position: absolute; right: 0; bottom: 0; width: 220px; padding: 16px; color: var(--white); background: var(--ink); border-radius: 18px 2px 18px 2px; box-shadow: var(--shadow); }
.symptom-stack span { display: flex; justify-content: space-between; padding: 12px 4px; border-bottom: 1px solid var(--line-light); font-size: .8rem; }
.symptom-stack span::after { content: '—'; color: var(--gold); }
.symptom-stack span:last-child { border-bottom: 0; }
.diagnosis-copy h2 { max-width: 670px; margin-bottom: 32px; font-size: 3.2rem; line-height: 1.02; }
.diagnosis-copy .body-large { max-width: 650px; }
.diagnosis blockquote { position: relative; max-width: 650px; margin: 38px 0 30px; padding: 26px 30px; color: var(--ink); background: rgba(255,255,255,.56); border-left: 2px solid var(--gold); font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.45; }

/* Manifesto */
.manifesto { color: var(--white); background: var(--ink); }
.manifesto-heading { display: grid; grid-template-columns: .42fr 1.58fr; gap: 60px; align-items: start; margin-bottom: 84px; }
.manifesto-heading h2 { max-width: 1040px; margin: 0; font-size: 2.75rem; line-height: 1.02; }
.manifesto-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.principle { min-height: 360px; padding: 44px 38px; border-left: 1px solid var(--line-light); transition: background .25s ease; }
.principle:last-child { border-right: 1px solid var(--line-light); }
.principle:hover { background: rgba(255,255,255,.035); }
.principle-number { color: var(--gold); font-family: var(--font-serif); font-size: 2rem; }
.principle h3 { margin: 40px 0 18px; font-family: var(--font-serif); font-size: 2rem; font-weight: 500; }
.principle p { max-width: 300px; margin: 0; color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.75; }

/* Services feature */
.service-feature { background: var(--paper); }
.section-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: end; margin-bottom: 64px; }
.section-intro h2 { margin-bottom: 0; font-size: 2.75rem; white-space: nowrap; }
.section-intro > p { max-width: 460px; margin: 0 0 9px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.service-editorial-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 640px; overflow: hidden; color: var(--white); background: var(--ink-2); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.service-image { position: relative; min-height: 620px; overflow: hidden; }
.service-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,42,.58), transparent 55%); }
.service-image img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-editorial-card:hover .service-image img { transform: scale(1.025); }
.image-caption { position: absolute; left: 30px; bottom: 26px; z-index: 1; color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .13em; font-size: .63rem; }
.service-panel { display: flex; flex-direction: column; justify-content: center; padding: 64px; }
.service-kicker { margin-bottom: 26px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .15em; font-size: .65rem; font-weight: 700; }
.service-panel h3 { margin: 0 0 22px; font-family: var(--font-serif); font-size: 2.4rem; font-weight: 500; line-height: 1.06; }
.service-panel > p { margin-bottom: 24px; color: rgba(255,255,255,.62); line-height: 1.75; }
.clean-list { margin: 0 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.clean-list li { display: flex; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line-light); font-size: .83rem; }
.clean-list li span { color: var(--gold); }
.service-panel .button { align-self: flex-start; color: var(--ink); background: var(--gold-light); }

/* Founder */
.founder { background: var(--ivory); }
.founder-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: center; }
.founder-copy h2 { max-width: 730px; margin-bottom: 34px; }
.founder-copy > p { max-width: 650px; color: var(--muted); line-height: 1.8; }
.quote-card { display: grid; grid-template-columns: auto 1fr; gap: 20px; max-width: 650px; margin-top: 38px; padding: 26px 28px; background: var(--white); border-radius: 2px var(--radius-md) 2px var(--radius-md); }
.quote-card span { color: var(--gold); font-family: var(--font-serif); font-size: 3.5rem; line-height: .8; }
.quote-card p { margin: 0; font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.45; }
.founder-portrait { position: relative; padding: 18px 18px 58px 0; }
.portrait-frame { height: 650px; overflow: hidden; border-radius: 190px 190px 14px 14px; box-shadow: var(--shadow); }
.portrait-frame img { height: 100%; object-fit: cover; object-position: 54% center; }
.portrait-label { position: absolute; right: 0; bottom: 0; display: grid; min-width: 260px; padding: 22px 26px; color: var(--white); background: var(--ink); border-radius: 16px 2px 16px 2px; }
.portrait-label strong { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; }
.portrait-label span { color: var(--gold-light); font-size: .7rem; }

/* Global and contact */
.global { background: var(--paper); }
.global-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 500px; overflow: hidden; color: var(--white); background: var(--ink-2); border-radius: var(--radius-lg); }
.global-image { min-height: 500px; }
.global-image img { height: 100%; object-fit: cover; }
.global-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px; }
.global-copy h2 { margin-bottom: 26px; font-size: 3.4rem; }
.global-copy > p { max-width: 580px; color: rgba(255,255,255,.62); line-height: 1.8; }
.language-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.language-row span { padding: 9px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.78); font-size: .75rem; }
.contact { padding-top: 30px; background: var(--paper); }
.contact-card { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; padding: 80px; color: var(--white); background: var(--ink); border-radius: var(--radius-lg); }
.contact-card h2 { max-width: 760px; margin-bottom: 0; font-size: 3.75rem; }
.contact-action p { margin-bottom: 28px; color: rgba(255,255,255,.62); line-height: 1.75; }

/* Footer */
.site-footer { padding: 60px 0 30px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 34px; align-items: center; }
.brand-footer { color: var(--white); }
.footer-grid > p { max-width: 360px; margin: 0; color: rgba(255,255,255,.5); font-size: .8rem; }
.footer-links { display: flex; gap: 24px; color: rgba(255,255,255,.72); font-size: .78rem; }
.footer-grid > small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.38); font-size: .66rem; }
.floating-contact { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: flex; align-items: center; gap: 16px; padding: 9px 9px 9px 19px; color: var(--ink); background: var(--gold-light); border-radius: 999px; box-shadow: 0 14px 32px rgba(11,31,42,.25); font-size: .75rem; font-weight: 700; }
.floating-contact b { display: grid; place-items: center; width: 35px; height: 35px; color: var(--white); background: var(--ink); border-radius: 50%; }

/* Services page */
.service-hero { min-height: 800px; padding: 165px 0 95px; color: var(--white); background: var(--ink); overflow: hidden; }
.service-hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 64px; align-items: center; }
.service-hero-copy h1 { margin-bottom: 30px; font-size: 3.95rem; line-height: 1.01; }
.service-hero-copy > p:not(.eyebrow) { max-width: 570px; margin-bottom: 34px; color: rgba(255,255,255,.68); font-size: 1.08rem; line-height: 1.8; }
.service-hero-image { position: relative; height: 560px; padding: 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 220px 220px 18px 18px; }
.service-hero-image img { height: 100%; object-fit: cover; border-radius: 210px 210px 10px 10px; }
.service-hero-stat { position: absolute; left: -36px; bottom: 35px; display: flex; align-items: center; gap: 16px; width: 235px; padding: 20px 24px; color: var(--ink); background: var(--ivory); border-radius: 2px 18px 2px 18px; box-shadow: var(--shadow); }
.service-hero-stat strong { color: var(--gold); font-family: var(--font-serif); font-size: 2.8rem; font-weight: 500; }
.service-hero-stat span { font-size: .75rem; line-height: 1.35; }
.service-context { background: var(--ivory); }
.context-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; }
.context-heading h2 { margin-bottom: 0; }
.context-copy .body-large { margin-bottom: 35px; }
.context-points { display: flex; flex-wrap: wrap; gap: 9px; }
.context-points span { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-3); font-size: .72rem; font-weight: 700; }
.process { color: var(--white); background: var(--ink); }
.process .section-intro { margin-bottom: 44px; }
.process .section-intro > p { color: rgba(255,255,255,.56); }
.process-line { position: relative; height: 1px; margin: 0 0 36px; background: var(--line-light); }
.process-line span { position: absolute; left: 0; top: -2px; width: 25%; height: 5px; background: var(--gold); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.process-card { min-height: 390px; padding: 38px 28px; border-left: 1px solid var(--line-light); }
.process-card:last-child { border-right: 1px solid var(--line-light); }
.process-number { display: block; color: var(--gold); font-family: var(--font-serif); font-size: 1.7rem; }
.process-card b { display: block; margin: 40px 0 8px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .14em; font-size: .62rem; }
.process-card h3 { margin: 0 0 16px; font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; }
.process-card p { margin: 0; color: rgba(255,255,255,.55); font-size: .84rem; line-height: 1.75; }
.transformation-view { background: var(--paper); }
.transformation-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 610px; overflow: hidden; color: var(--white); background: var(--ink-2); border-radius: var(--radius-lg); }
.transformation-copy { padding: 68px; }
.transformation-copy h2 { margin-bottom: 40px; font-size: 2.5rem; line-height: 1.01; }
.comparison-list { border-top: 1px solid var(--line-light); }
.comparison-list div { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.comparison-list span { color: var(--gold); text-transform: uppercase; letter-spacing: .13em; font-size: .6rem; }
.comparison-list p { margin: 0; color: rgba(255,255,255,.64); font-size: .83rem; }
.transformation-image { min-height: 600px; }
.transformation-image img { height: 100%; object-fit: cover; }
.audiences { background: var(--ivory); }
.audience-heading { display: grid; grid-template-columns: .4fr 1.6fr; gap: 60px; margin-bottom: 60px; }
.audience-heading h2 { max-width: 980px; margin: 0; font-size: 3.35rem; line-height: 1; }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.audience-card { min-height: 240px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease; }
.audience-card:hover { background: rgba(255,255,255,.55); }
.audience-card > span { color: var(--gold); font-family: var(--font-serif); }
.audience-card h3 { margin: 55px 0 12px; font-family: var(--font-serif); font-size: 1.55rem; font-weight: 500; }
.audience-card p { max-width: 300px; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid, .service-hero-grid { gap: 44px; }
  h1 { font-size: 4.25rem; }
  h2 { font-size: 3.4rem; }
  .hero h1 { font-size: 3.6rem; }
  .service-hero-copy h1 { font-size: 3.6rem; }
  .service-panel, .global-copy, .transformation-copy { padding: 48px; }
  .diagnosis-grid, .founder-grid { gap: 60px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-card:nth-child(2) { border-right: 1px solid var(--line-light); }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 34px, 700px); }
  .site-header { height: 76px; background: rgba(11,31,42,.95); }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 76px; left: 17px; right: 17px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 18px; background: var(--ink-2); border: 1px solid var(--line-light); border-radius: 16px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 12px 14px; }
  .main-nav > a::after { display: none; }
  .main-nav .nav-cta { margin-top: 5px; justify-content: space-between; }
  .menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
  .section { padding: 90px 0; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid, .diagnosis-grid, .founder-grid, .service-hero-grid, .context-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 0; }
  .hero-visual { min-height: 560px; }
  .hero-photo-frame { width: 94%; height: 520px; }
  .signal-grid { grid-template-columns: 1fr; padding-block: 10px; }
  .signal-grid article { min-height: 100px; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line-light); }
  .signal-grid article:last-child { border-bottom: 0; }
  .manifesto-heading, .section-intro, .audience-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-intro h2 { white-space: normal; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .principle { min-height: 280px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
  .principle:last-child { border-bottom: 0; }
  .principle h3 { margin-top: 55px; }
  .service-editorial-card, .global-card, .contact-card, .transformation-card { grid-template-columns: 1fr; }
  .service-image, .global-image, .transformation-image { min-height: 430px; }
  .founder-portrait { max-width: 570px; }
  .contact-card { gap: 40px; padding: 50px 38px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > small { grid-column: auto; }
  .service-hero { min-height: auto; padding-top: 130px; }
  .service-hero-image { height: 510px; margin-left: 30px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); --radius-lg: 24px; }
  h1 { font-size: 3.45rem; }
  .hero h1 { font-size: 3.15rem; }
  h2 { font-size: 3rem; }
  .audience-heading h2 { font-size: 3rem; }
  .brand { min-width: auto; }
  .brand-mark { width: 43px; height: 43px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-visual { min-height: 470px; }
  .hero-photo-frame { width: 100%; height: 440px; border-radius: 150px 150px 18px 18px; }
  .hero-photo-frame img, .hero-photo-frame::after { border-radius: 140px 140px 10px 10px; }
  .hero-note { width: 230px; bottom: 0; }
  .hero-seal { display: none; }
  .hero-proof { flex-wrap: wrap; }
  .diagnosis-visual { padding: 0 22px 55px 0; }
  .diagnosis-copy h2 { font-size: 2.85rem; }
  .image-window-tall { height: 430px; }
  .symptom-stack { width: 195px; }
  .service-panel, .global-copy, .transformation-copy { padding: 38px 28px; }
  .service-image, .global-image, .transformation-image { min-height: 340px; }
  .portrait-frame { height: 520px; border-radius: 130px 130px 12px 12px; }
  .language-row { gap: 7px; }
  .contact-card { padding: 42px 26px; }
  .floating-contact span { display: none; }
  .floating-contact { padding: 8px; }
  .process-grid, .audience-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 310px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
  .process-card:last-child { border-bottom: 0; }
  .process-card b { margin-top: 36px; }
  .service-hero-copy h1 { font-size: 3.15rem; }
  .service-hero-image { height: 440px; margin-left: 10px; border-radius: 140px 140px 18px 18px; }
  .service-hero-image img { border-radius: 130px 130px 10px 10px; }
  .service-hero-stat { left: -10px; }
  .comparison-list div { grid-template-columns: 1fr; gap: 8px; }
}
