:root {
  --ink: #18232d;
  --navy: #16324f;
  --blue: #27465d;
  --teal: #527c78;
  --bronze: #a78255;
  --red: #d90000;
  --paper: #f7f5f1;
  --paper-2: #efece6;
  --white: #ffffff;
  --muted: #66727d;
  --line: rgba(24,35,45,.14);
  --shadow: 0 18px 55px rgba(18,35,50,.10);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--teal); }
img { display:block; max-width:100%; }
.container { width:min(var(--max), calc(100% - 48px)); margin-inline:auto; }
.site-header {
  position: sticky; top:0; z-index:50;
  background: rgba(247,245,241,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height:74px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand { white-space:nowrap; }
.brand-wordmark,
.footer-wordmark {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  color:var(--ink);
  line-height:1;
}
.brand-name {
  display:flex;
  align-items:baseline;
  gap:9px;
  font:700 18px "Segoe UI", Arial, sans-serif;
  letter-spacing:.13em;
}
.brand-name span { font-weight:600; }
.brand-name strong {
  font-weight:800;
  letter-spacing:.08em;
}
.brand-sub {
  display:flex;
  align-items:center;
  gap:7px;
  font:700 8px "Segoe UI", Arial, sans-serif;
  letter-spacing:.23em;
  color:var(--muted);
}
.brand-sub i {
  width:12px;
  height:3px;
  background:var(--red);
  display:inline-block;
}
.brand-wordmark:hover,
.footer-wordmark:hover { color:var(--ink); }
.nav-links { display:flex; align-items:center; gap:26px; font-size:14px; }
.lang { padding-left:16px; border-left:1px solid var(--line); color:var(--muted); }
.mobile-menu { display:none; background:none; border:0; font-size:24px; }
.eyebrow { text-transform:uppercase; letter-spacing:.2em; font-size:12px; font-weight:700; color:var(--blue); }
h1,h2,h3,.serif { font-family: Georgia, "Times New Roman", serif; font-weight:400; letter-spacing:-.02em; }
h1 { font-size:clamp(46px, 5.4vw, 78px); line-height:1; margin:18px 0 24px; text-wrap:balance; }
h2 { font-size:clamp(34px, 4vw, 56px); line-height:1.05; margin:0 0 18px; }
h3 { font-size:27px; line-height:1.15; margin:0 0 10px; }
p { margin:0 0 18px; }
.hero { padding:72px 0 46px; border-bottom:1px solid var(--line); }
.hero-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap:52px; align-items:stretch; }
.hero-copy { padding:24px 0; }
.hero-copy .lead { font-size:20px; color:#42505d; max-width:700px; text-wrap:pretty; }
.hero-panel {
  position:relative; min-height:500px; padding:38px;
  color:var(--paper); overflow:hidden; border-radius:2px;
  background:
    radial-gradient(circle at 75% 18%, rgba(82,124,120,.58), transparent 32%),
    linear-gradient(145deg, #1a3145 0%, #142635 56%, #0e1c27 100%);
  box-shadow:var(--shadow);
}
.hero-panel::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:42px 42px; mask-image:linear-gradient(to bottom, black, transparent 90%);
}
.hero-panel > * { position:relative; z-index:1; }
.hero-panel .big { font-family:Georgia,serif; font-size:48px; line-height:1; margin-top:120px; max-width:480px; }
.hero-panel .quote { position:absolute; left:38px; right:38px; bottom:34px; font-size:17px; color:#d8e1e5; }
.hero-panel .marks { display:flex; gap:10px; color:#b7c7cf; font-size:12px; text-transform:uppercase; letter-spacing:.16em; }
.actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:30px; }
.btn { display:inline-flex; align-items:center; gap:10px; padding:13px 18px; border:1px solid var(--navy); font-weight:650; font-size:14px; }
.btn.primary { background:var(--navy); color:white; }
.btn:hover { transform:translateY(-1px); color:inherit; }
.btn.primary:hover { background:#0f2a43; color:white; }
.stats { display:grid; grid-template-columns:repeat(4,1fr); border-bottom:1px solid var(--line); background:rgba(255,255,255,.35); }
.stat { padding:28px 24px; border-right:1px solid var(--line); }
.stat:last-child { border-right:0; }
.stat strong { display:block; font-family:Georgia,serif; font-size:30px; font-weight:400; color:var(--navy); }
.stat span { color:var(--muted); font-size:13px; }
.section { padding:86px 0; border-bottom:1px solid var(--line); }
.section.intro { padding-block:70px; }
.split { display:grid; grid-template-columns: 1fr 1.15fr; gap:80px; align-items:start; }
.intro .statement { font-size:22px; }
.domain-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.domain {
  min-height:360px; padding:34px; border:1px solid var(--line); background:var(--white); position:relative; overflow:hidden;
}
.domain.dark { color:white; background:linear-gradient(145deg,var(--blue),#173347); }
.domain .tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:32px; }
.tag { font-size:12px; padding:7px 9px; border:1px solid currentColor; opacity:.8; }
.section-head { display:flex; justify-content:space-between; gap:24px; align-items:end; margin-bottom:28px; }
.section-head p { color:var(--muted); margin:0; max-width:520px; }
.work-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:14px; align-items:stretch; }
.work-card {
  border:1px solid var(--line);
  background:var(--white);
  padding:25px 25px 62px;
  min-height:260px;
  position:relative;
  display:flex;
  flex-direction:column;
}
.work-card.wide { grid-column:span 8; }
.work-card.third { grid-column:span 4; }
.work-card:nth-child(6) { grid-column:span 8; }
.work-card p { margin-bottom:0; max-width:62ch; }
.work-card h3 { text-wrap:balance; }
.work-card .num { font-size:12px; color:var(--red); font-weight:800; letter-spacing:.12em; }
.work-card .meta { font-size:11px; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); margin:12px 0; }
.work-card .arrow { position:absolute; right:18px; bottom:16px; width:36px; height:36px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; }
.education { display:grid; grid-template-columns:.95fr 1.1fr .55fr; gap:0; background:#efe8df; }
 .education-copy,.education-stat { padding:38px; }
.education-copy h2 {
  font-size:clamp(36px, 3.65vw, 50px);
  line-height:1.03;
  text-wrap:balance;
}
.education-copy p { max-width:52ch; }
.education-legacy-note {
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(24,35,45,.16);
  color:var(--muted);
}
.education-legacy-note strong {
  display:block;
  color:var(--ink);
  font:700 14px "Segoe UI", Arial, sans-serif;
  margin-bottom:4px;
}
.education-legacy-note span {
  display:block;
  font-size:13px;
  line-height:1.45;
}
.education-photo { min-height:420px; height:100%; width:100%; object-fit:cover; object-position:center 36%; }
.education-stat { border-left:1px solid rgba(24,35,45,.18); display:flex; flex-direction:column; justify-content:center; }
.education-stat strong { font:400 54px Georgia,serif; color:var(--bronze); }
 .education-stat > span { font-size:18px; }
.education-stat .stat-note {
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}
.advisory-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; }
.services { display:grid; grid-template-columns:1fr 1fr; border-top:1px solid var(--line); border-left:1px solid var(--line); }
.service { padding:26px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.service strong { display:block; margin-bottom:8px; }
.venture-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:30px; }
.venture { border:1px solid var(--line); background:white; padding:28px; min-height:190px; }
.venture .logo-text { font-weight:750; font-size:20px; color:var(--navy); margin-bottom:20px; }
.insights-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
 .article { border-top:3px solid var(--navy); padding:24px 0; position:relative; }
.article-status {
  display:inline-flex;
  margin-top:14px;
  padding:5px 8px;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.article .meta { color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.1em; }
.article h3 { font-size:25px; margin-top:12px; }
.contact { background:var(--navy); color:white; padding:58px 0; }
.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.contact a { color:white; border-bottom:1px solid rgba(255,255,255,.45); }
.footer { padding:26px 0; font-size:13px; color:var(--muted); }
.footer-row { display:flex; justify-content:space-between; gap:20px; }
.page-hero { padding:86px 0 56px; border-bottom:1px solid var(--line); }
.page-hero p { max-width:760px; font-size:19px; color:#475562; }
.prose { max-width:800px; }
.prose h2 { margin-top:56px; }
.timeline { margin-top:34px; border-left:1px solid var(--line); }
.timeline-item { padding:0 0 34px 28px; position:relative; }
.timeline-item::before { content:""; position:absolute; width:10px; height:10px; background:var(--red); border-radius:50%; left:-5px; top:8px; }
.timeline-item strong { display:block; color:var(--navy); }
.archive-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.archive-item { padding:24px; border:1px solid var(--line); background:white; }
.note { color:var(--muted); font-size:14px; }
@media (max-width: 900px) {
  .container { width:min(100% - 32px, var(--max)); }
  .nav-links { display:none; }
  .brand-name { font-size:16px; gap:7px; }
  .brand-sub { font-size:7px; letter-spacing:.17em; }
  .mobile-menu { display:block; }
  .nav.open .nav-links { display:flex; position:absolute; left:0; right:0; top:74px; padding:18px 16px 24px; background:var(--paper); flex-direction:column; border-bottom:1px solid var(--line); align-items:flex-start; }
  .hero { padding-top:36px; }
  .hero-grid,.split,.advisory-grid,.contact-grid { grid-template-columns:1fr; gap:34px; }
  .hero-panel { min-height:340px; }
  .hero-panel .big { margin-top:70px; font-size:36px; }
  .stats { grid-template-columns:1fr 1fr; }
  .stat:nth-child(2) { border-right:0; }
  .stat:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .domain-grid { grid-template-columns:1fr; }
  .work-card.wide,.work-card.third,.work-card:nth-child(6) { grid-column:span 12; }
  .education { grid-template-columns:1fr; }
  .education-stat { border-left:0; border-top:1px solid rgba(24,35,45,.18); }
  .services,.venture-grid,.insights-grid,.archive-grid { grid-template-columns:1fr; }
  .footer-row { flex-direction:column; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .container { width:min(100% - 40px, var(--max)); }
  .nav-links { gap:18px; }
  .hero-grid { grid-template-columns:1.08fr .92fr; gap:34px; }
  .hero-panel { min-height:440px; padding:30px; }
  .hero-panel .big { margin-top:96px; font-size:42px; }
  .education-copy,.education-stat { padding:30px; }
  .education { grid-template-columns:1fr 1fr .58fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior:auto; } * { transition:none!important; } }


/* v0.4 brand refinement */
.cybernetics-brand {
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
  color:var(--ink);
}
.cybernetics-brand:hover { color:var(--ink); }
.cybernetics-brand img {
  width:46px;
  height:46px;
  object-fit:contain;
}
.cybernetics-brand span {
  font:600 19px "Segoe UI", Arial, sans-serif;
  letter-spacing:-.02em;
  line-height:1.04;
}
.venture-link {
  display:inline-block;
  margin-top:12px;
  font-size:13px;
  font-weight:700;
  color:var(--red);
}
.venture-link:hover { color:#a90000; }

.light-eyebrow { color:#c6d7dc; }
.light-eyebrow::before {
  content:"";
  display:inline-block;
  width:18px;
  height:3px;
  background:var(--red);
  margin:0 10px 3px 0;
}
.contact-links {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:20px 0 28px;
}


/* v0.5 ventures */
.venture-feature-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
  margin-top:34px;
}
.venture-support-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:16px;
}
.venture-feature {
  min-height:330px;
  padding:34px;
  background:linear-gradient(145deg,#fff 0%,#f8f5ef 100%);
}
.venture-feature h3 {
  font-size:28px;
  margin:18px 0 12px;
  max-width:18ch;
}
.venture-kicker {
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  color:var(--red);
}
.venture-title {
  margin-top:22px;
  font-size:42px;
  line-height:1;
  letter-spacing:-.04em;
  color:var(--navy);
}
.peoplty-word { font-weight:800; }
.metourist-word { font-family:Georgia,"Times New Roman",serif; font-style:italic; }
.venture-company { border-top:1px solid var(--line); }
.cybernetics-brand span {
  font:700 17px "Segoe UI", Arial, sans-serif;
  letter-spacing:-.01em;
}

/* v0.5 contact */
.contact-company {
  margin-top:14px;
  color:#c6d7dc;
  font-size:14px;
}
.contact-info-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-top:1px solid rgba(255,255,255,.18);
  border-left:1px solid rgba(255,255,255,.18);
  margin-top:26px;
}
.contact-item {
  padding:16px 18px;
  border-right:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.18);
}
.contact-item > span {
  display:block;
  margin-bottom:6px;
  color:#aebdca;
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.contact-item a,
.contact-item p {
  color:white;
  margin:0;
  line-height:1.55;
}
.contact-address { grid-column:span 2; }

@media (max-width: 900px) {
  .venture-feature-grid,
  .venture-support-grid { grid-template-columns:1fr; }
  .venture-feature { min-height:auto; }
  .contact-info-grid { grid-template-columns:1fr; }
  .contact-address { grid-column:span 1; }
}
