:root {
  --navy: #001c3d;
  --navy-2: #052a52;
  --red: #c9252a;
  --red-bright: #ff3438;
  --ink: #172033;
  --muted: #5f6773;
  --paper: #fbfbfa;
  --warm-white: #f7f6f3;
  --line: #dfe2e6;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(0, 28, 61, 0.08);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --container: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: var(--navy); color: #fff; padding: 10px 14px; text-decoration: none; }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251, 251, 250, 0.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0, 28, 61, 0.08); }
.nav-wrap { min-height: 96px; display: grid; grid-template-columns: 270px minmax(0, 1fr) auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: 245px; }
.brand img { width: 245px; height: auto; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.1vw, 34px); }
.primary-nav a { position: relative; font-size: 13px; font-weight: 600; text-decoration: none; color: #263148; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--red); transition: right .25s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.nav-cta { font-size: 13px; padding: 15px 21px; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 48px; padding: 13px 22px; font-size: 14px; font-weight: 700; text-decoration: none; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button-primary { color: #fff; background: var(--navy); box-shadow: 0 8px 20px rgba(0, 28, 61, 0.13); }
.button-primary span { color: var(--red-bright); font-size: 20px; line-height: 1; transition: transform .2s ease; }
.button-primary:hover { transform: translateY(-2px); background: var(--navy-2); box-shadow: 0 13px 28px rgba(0, 28, 61, 0.18); }
.button-primary:hover span { transform: translateX(4px); }
.text-link { display: inline-flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; text-decoration: none; color: var(--navy); }
.text-link span { color: var(--red-bright); font-size: 19px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.eyebrow { margin: 0 0 18px; color: var(--red); text-transform: uppercase; letter-spacing: .075em; font-size: 12px; font-weight: 800; }
.eyebrow.muted { color: var(--navy); }
.accent-line { width: 42px; height: 2px; background: var(--red-bright); }

.hero { overflow: hidden; background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 47%, #f1f3f4 47%, #f1f3f4 100%); }
.hero-grid { min-height: 620px; display: grid; grid-template-columns: minmax(520px, .95fr) minmax(520px, 1.05fr); }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 76px 80px 76px 0; }
.hero-copy::after { content: ""; position: absolute; inset: 0 -110px 0 auto; width: 210px; z-index: -1; background: linear-gradient(90deg, var(--paper) 12%, rgba(251,251,250,0)); }
.hero h1 { margin: 0 0 24px; color: var(--navy); font-family: var(--serif); font-weight: 500; letter-spacing: -0.045em; line-height: 1.02; font-size: clamp(56px, 5.2vw, 82px); }
.hero .accent-line { margin-bottom: 24px; }
.hero-lead { max-width: 650px; margin: 0; color: #273247; font-size: 17px; line-height: 1.85; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.hero-visual { min-height: 620px; margin-right: calc((100vw - min(100vw - 64px, var(--container))) / -2); background-image: linear-gradient(90deg, rgba(251,251,250,.72) 0%, rgba(251,251,250,.14) 22%, rgba(251,251,250,0) 50%), url('assets/hero-architecture.webp'); background-size: cover; background-position: 50% center; }

.principles { padding: 44px 0 54px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-kicker { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--navy); margin: 0 0 30px; }
.centered { text-align: center; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.principle { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 0 34px; border-right: 1px solid var(--line); }
.principle:first-child { padding-left: 0; }
.principle:last-child { border-right: 0; padding-right: 0; }
.line-icon, .card-icon { color: var(--red-bright); }
.line-icon svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.principle h3 { margin: 0 0 5px; color: var(--navy); font-family: var(--serif); font-size: 17px; font-weight: 600; }
.principle p { margin: 0; color: #4d5666; font-size: 13px; line-height: 1.65; }

.services { background: var(--warm-white); }
.services-layout { display: grid; grid-template-columns: 265px minmax(0, 1fr); gap: 56px; align-items: start; }
.section-intro { position: sticky; top: 132px; }
.section-intro .accent-line { margin-bottom: 18px; }
.section-intro h2, .understanding h2, .about h2, .knowledge h2 { margin: 0 0 22px; color: var(--navy); font-family: var(--serif); font-size: clamp(36px, 3.2vw, 50px); font-weight: 500; line-height: 1.12; letter-spacing: -0.025em; }
.section-intro p:not(.eyebrow) { color: #4f5866; margin: 0 0 28px; font-size: 15px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 290px; display: flex; flex-direction: column; padding: 32px 28px 24px; background: var(--card); border: 1px solid #e5e7ea; box-shadow: 0 10px 30px rgba(0, 28, 61, 0.035); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(198,13,37,.28); box-shadow: var(--shadow); }
.card-icon { color: var(--navy); margin-bottom: 20px; }
.card-icon svg { width: 44px; height: 44px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 12px; color: var(--navy); font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.2; }
.service-card p { margin: 0; color: #566071; font-size: 14px; line-height: 1.72; }
.service-card > a { align-self: flex-end; margin-top: auto; color: var(--red-bright); font-size: 24px; text-decoration: none; transition: transform .2s ease; }
.service-card > a:hover { transform: translateX(4px); }

.understanding { background: #fff; }
.understanding-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 86px; align-items: start; }
.understanding-grid > div:first-child > p:last-child { max-width: 620px; color: #566071; font-size: 16px; }
.question-list { border-top: 1px solid var(--line); }
.question-list article { display: grid; grid-template-columns: 62px 1fr; column-gap: 24px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.question-list span { grid-row: 1 / span 2; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .1em; padding-top: 5px; }
.question-list h3 { margin: 0 0 8px; color: var(--navy); font-family: var(--serif); font-size: 23px; font-weight: 600; }
.question-list p { margin: 0; color: #596171; font-size: 14px; }

.statement { padding: 64px 0; background: linear-gradient(100deg, #00162f, #052e59); color: #fff; }
.statement-inner { text-align: center; }
.quote-mark { display: block; height: 30px; color: var(--red-bright); font-family: var(--serif); font-size: 66px; line-height: .8; }
.statement blockquote { max-width: 1100px; margin: 10px auto 18px; font-family: var(--serif); font-size: clamp(30px, 3.5vw, 48px); font-weight: 400; line-height: 1.22; }
.statement .accent-line { margin: 0 auto; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.about-panel, .experience-panel { padding: 58px 60px; border: 1px solid var(--line); }
.about-panel { background: #fff; }
.about-panel > p:not(.eyebrow) { max-width: 720px; color: #535d6d; font-size: 16px; }
.experience-panel { display: flex; flex-direction: column; justify-content: center; background: var(--navy); color: #fff; }
.experience-number { margin: 0; color: #fff; font-family: var(--serif); font-size: 82px; line-height: .9; }
.experience-panel > p:nth-child(2) { margin: 14px 0 25px; max-width: 360px; font-size: 18px; line-height: 1.5; }
.experience-rule { width: 54px; height: 2px; background: var(--red-bright); }
.experience-note { margin: 25px 0 0; color: rgba(255,255,255,.72); font-size: 14px; }

.knowledge { background: #fff; }
.knowledge-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.knowledge-heading h2 { margin-bottom: 0; }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.knowledge-card { min-height: 300px; display: flex; flex-direction: column; padding: 32px; background: var(--warm-white); border-top: 3px solid var(--navy); }
.knowledge-card .category { margin: 0 0 24px; color: var(--red); text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 800; }
.knowledge-card h3 { margin: 0 0 16px; color: var(--navy); font-family: var(--serif); font-size: 24px; line-height: 1.25; }
.knowledge-card > p:not(.category) { margin: 0; color: #5a6372; font-size: 14px; }
.knowledge-card a { margin-top: auto; color: var(--navy); font-size: 13px; font-weight: 800; text-decoration: none; }
.knowledge-card a span { color: var(--red-bright); margin-left: 8px; }

.conversation { background: var(--paper); border-top: 1px solid var(--line); }
.conversation-grid { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 180px; }
.conversation-question, .conversation-cta { display: flex; align-items: center; gap: 22px; padding: 38px 0; }
.conversation-question { padding-right: 48px; border-right: 1px solid var(--line); }
.conversation-cta { justify-content: space-between; gap: 38px; padding-left: 48px; }
.bubble-icon { flex: 0 0 54px; width: 54px; height: 54px; display: grid; place-items: center; border: 1.5px solid var(--red-bright); border-radius: 50%; color: var(--red-bright); font-family: var(--serif); font-size: 30px; }
.small-title { margin: 0 0 4px; color: var(--navy); font-family: var(--serif); font-size: 20px; font-weight: 600; }
.conversation-question p:last-child, .conversation-cta p:last-child { margin: 0; color: #4f596a; font-size: 14px; }
.conversation-cta > div { max-width: 570px; }
.conversation-cta > div:first-child { max-width: 510px; }
.conversation-actions { display: flex; align-items: center; gap: 24px; max-width: none !important; }
.contact-people { display: flex; gap: 18px; }
.contact-people a { min-width: 150px; padding-left: 16px; border-left: 2px solid var(--red-bright); color: var(--navy); text-decoration: none; }
.contact-people span, .contact-people strong { display: block; }
.contact-people span { margin-bottom: 2px; color: #5a6372; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.contact-people strong { font-size: 14px; white-space: nowrap; }

.site-footer { background: linear-gradient(100deg, #00162f, #052e59); color: #fff; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.1fr .85fr 1.3fr; gap: 54px; padding: 66px 0 55px; }
.footer-brand img { width: 250px; max-width: 100%; }
.footer-brand p { color: rgba(255,255,255,.75); font-size: 13px; }
.footer-brand .footer-legacy { margin-top: 18px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.7; }
.site-footer address strong { color: #fff; font-weight: 700; }
.site-footer h2 { margin: 0 0 18px; color: #fff; text-transform: uppercase; letter-spacing: .07em; font-size: 12px; }
.site-footer p, .site-footer li, .site-footer address { color: rgba(255,255,255,.76); font-size: 13px; font-style: normal; line-height: 1.8; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { text-decoration: none; color: rgba(255,255,255,.84); }
.site-footer a:hover { color: #fff; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.18); }
.footer-bottom p { margin: 0; }
.footer-bottom span { margin: 0 12px; opacity: .5; }

@media (max-width: 1180px) {
  .nav-wrap { grid-template-columns: 220px 1fr auto; }
  .brand, .brand img { width: 205px; }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: 12px; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; }
  .hero-copy { padding-right: 45px; }
  .principle { padding: 0 20px; }
  .services-layout { grid-template-columns: 230px 1fr; gap: 34px; }
  .service-card { padding: 28px 23px 22px; }
  .footer-grid { gap: 34px; }
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .section { padding: 84px 0; }
  .nav-wrap { min-height: 78px; grid-template-columns: 1fr auto; }
  .brand, .brand img { width: 190px; }
  .menu-toggle { display: block; grid-column: 2; }
  .nav-cta { display: none; }
  .primary-nav { position: fixed; inset: 78px 0 auto 0; display: grid; gap: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(0,28,61,.12); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .28s ease; }
  .primary-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav a { padding: 15px 24px; border-top: 1px solid #eef0f2; font-size: 14px; }
  .primary-nav a::after { display: none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { background: var(--paper); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 0 54px; }
  .hero-copy::after { display: none; }
  .hero-visual { min-height: 460px; margin-right: calc((100vw - (100vw - 40px)) / -2); margin-left: calc((100vw - (100vw - 40px)) / -2); background-image: linear-gradient(180deg, rgba(251,251,250,.2), rgba(251,251,250,0)), url('assets/hero-architecture.webp'); background-position: center 45%; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }
  .principle { border-right: 0; padding: 0 26px 0 0; }
  .principle:nth-child(even) { padding-right: 0; }
  .services-layout { grid-template-columns: 1fr; }
  .section-intro { position: static; max-width: 660px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .understanding-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-card { min-height: 240px; }
  .conversation-grid { grid-template-columns: 1fr; }
  .conversation-question { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; }
  .conversation-cta { padding-left: 0; }
  .conversation-actions { align-items: flex-start; flex-direction: column; width: 100%; }
  .contact-people { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .hero-copy { padding: 54px 0 42px; }
  .hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .hero-lead { font-size: 15px; line-height: 1.75; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-visual { min-height: 330px; margin-right: -14px; margin-left: -14px; }
  .principles { padding: 38px 0 46px; }
  .principles-grid { grid-template-columns: 1fr; row-gap: 0; }
  .principle { padding: 24px 0; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .understanding h2, .about h2, .knowledge h2, .section-intro h2 { font-size: 37px; }
  .question-list article { grid-template-columns: 44px 1fr; gap: 12px; }
  .statement { padding: 52px 0; }
  .statement blockquote { font-size: 32px; }
  .about-panel, .experience-panel { padding: 38px 28px; }
  .knowledge-heading { align-items: flex-start; flex-direction: column; }
  .conversation-question, .conversation-cta { align-items: flex-start; flex-direction: column; padding: 32px 0; }
  .conversation-cta .button { width: 100%; }
  .contact-people { flex-direction: column; gap: 14px; }
  .contact-people a { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; padding: 54px 0 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; padding: 22px 0; }
}

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

/* About page */
.primary-nav a.active::after { right: 0; }
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero-grid { min-height: 610px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr); gap: 90px; align-items: center; }
.page-hero-copy { padding: 95px 0; }
.page-hero-copy h1 { max-width: 900px; margin: 0 0 28px; color: var(--navy); font-family: var(--serif); font-size: clamp(58px, 6vw, 92px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.page-hero-copy .accent-line { margin-bottom: 28px; }
.page-hero-copy > p:last-child { max-width: 720px; margin: 0; color: #374256; font-size: 18px; line-height: 1.85; }
.credential-panel { position: relative; padding: 54px; background: linear-gradient(145deg, var(--navy), var(--navy-2)); color: #fff; box-shadow: 0 24px 55px rgba(0,28,61,.18); }
.credential-panel::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.credential-item { position: relative; padding: 29px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.credential-item:first-child { padding-top: 8px; }
.credential-item:last-child { border-bottom: 0; padding-bottom: 8px; }
.credential-item strong { display: block; margin-bottom: 5px; color: #fff; font-family: var(--serif); font-size: 32px; font-weight: 500; }
.credential-item span { display: block; color: rgba(255,255,255,.74); font-size: 13px; letter-spacing: .025em; }
.origin { background: #fff; }
.origin-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: start; }
.origin h2, .what-we-bring h2, .method h2, .profile-section h2, .founders-note h2 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(42px, 4.1vw, 62px); font-weight: 500; line-height: 1.11; letter-spacing: -.03em; }
.origin-copy { max-width: 760px; }
.origin-copy p { margin: 0 0 22px; color: #4d5869; font-size: 16px; line-height: 1.9; }
.origin-copy p:last-child { margin-bottom: 0; }
.point-of-view { padding: 88px 0; background: linear-gradient(100deg, #00162f, #052e59); color: #fff; }
.point-of-view-inner { max-width: 1110px; }
.point-of-view .eyebrow { color: var(--red-bright); }
.point-of-view blockquote { margin: 0; color: #fff; font-family: var(--serif); font-size: clamp(36px, 4.2vw, 61px); line-height: 1.2; font-weight: 400; letter-spacing: -.02em; }
.what-we-bring { background: var(--warm-white); }
.section-heading-narrow { max-width: 820px; margin-bottom: 60px; }
.section-heading-narrow h2 { margin-bottom: 22px; }
.section-heading-narrow > p:last-child { margin: 0; color: #556071; font-size: 16px; line-height: 1.85; }
.bring-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bring-card { min-height: 335px; padding: 42px 34px; border-right: 1px solid var(--line); }
.bring-card:last-child { border-right: 0; }
.bring-card span { display: inline-block; margin-bottom: 42px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.bring-card h3 { margin: 0 0 16px; color: var(--navy); font-family: var(--serif); font-size: 24px; line-height: 1.2; }
.bring-card p { margin: 0; color: #566172; font-size: 14px; line-height: 1.78; }
.method { background: #fff; }
.method-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 96px; }
.method-intro { position: sticky; top: 132px; align-self: start; }
.method-intro h2 { margin-bottom: 22px; }
.method-intro > p:last-child { margin: 0; max-width: 490px; color: #566172; font-size: 15px; line-height: 1.82; }
.method-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.method-steps li { display: grid; grid-template-columns: 68px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.method-steps li > span { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .1em; padding-top: 7px; }
.method-steps h3 { margin: 0 0 7px; color: var(--navy); font-family: var(--serif); font-size: 27px; font-weight: 600; }
.method-steps p { margin: 0; color: #566172; font-size: 15px; line-height: 1.75; }
.profile-section { background: var(--warm-white); }
.profile-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 86px; align-items: start; }
.profile-statement h2 { margin-bottom: 24px; }
.profile-statement > p:not(.eyebrow) { margin: 0 0 28px; color: #566172; font-size: 16px; line-height: 1.85; }
.profile-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.profile-facts article { min-height: 230px; padding: 30px; background: #fff; border: 1px solid #e4e6e9; }
.profile-facts h3 { margin: 0 0 14px; color: var(--navy); font-family: var(--serif); font-size: 23px; }
.profile-facts h3::before { content: ""; display: block; width: 34px; height: 2px; margin-bottom: 20px; background: var(--red-bright); }
.profile-facts p { margin: 0; color: #566172; font-size: 14px; line-height: 1.78; }
.founders-note { background: #fff; }
.founders-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.founders-grid > div:last-child { max-width: 760px; }
.founders-grid > div:last-child > p { margin: 0 0 22px; color: #4d5869; font-size: 16px; line-height: 1.9; }
.founders-signoff { margin-top: 34px !important; padding-top: 25px; border-top: 1px solid var(--line); color: var(--navy) !important; }
.founders-signoff strong { font-family: var(--serif); font-size: 22px; font-weight: 600; }

@media (max-width: 980px) {
  .page-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 0; padding-bottom: 70px; }
  .page-hero-copy { padding: 70px 0 50px; }
  .credential-panel { max-width: 660px; }
  .origin-grid, .method-layout, .profile-grid, .founders-grid { grid-template-columns: 1fr; gap: 48px; }
  .bring-grid { grid-template-columns: repeat(2, 1fr); }
  .bring-card:nth-child(2) { border-right: 0; }
  .bring-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .method-intro { position: static; }
}

@media (max-width: 640px) {
  .page-hero-copy { padding: 55px 0 42px; }
  .page-hero-copy h1 { font-size: clamp(46px, 13.5vw, 62px); }
  .page-hero-copy > p:last-child { font-size: 16px; }
  .credential-panel { padding: 40px 34px; }
  .credential-panel::before { inset: 13px; }
  .origin h2, .what-we-bring h2, .method h2, .profile-section h2, .founders-note h2 { font-size: 39px; }
  .point-of-view { padding: 66px 0; }
  .point-of-view blockquote { font-size: 35px; }
  .bring-grid { grid-template-columns: 1fr; }
  .bring-card { min-height: auto; padding: 34px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .bring-card:last-child { border-bottom: 0; }
  .bring-card span { margin-bottom: 25px; }
  .profile-facts { grid-template-columns: 1fr; }
  .profile-facts article { min-height: auto; }
  .method-steps li { grid-template-columns: 45px 1fr; gap: 10px; }
}


/* Stop-gap production additions */
.launch-note { display:inline-flex; align-items:center; padding:9px 14px; border:1px solid var(--line); color:var(--muted); font-size:12px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
.coming-soon { margin-top:auto; color:var(--red); font-size:12px; font-weight:800; letter-spacing:.035em; text-transform:uppercase; }
@media (max-width:640px){ .launch-note { align-self:flex-start; } }
