* {
  box-sizing: border-box;
}

:root {
  --bg: #fafaf8;
  --ink: #14263a;
  --muted: #697586;
  --line: #e7e5df;
  --paper: #ffffff;
  --accent: #244f73;
  --soft: #f1eee8;
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header,
.hero,
.section,
.contact,
.footer {
  width: min(1160px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: grid;
  line-height: 1.08;
}

.brand span {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
  padding: clamp(60px, 8vw, 110px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 7.2vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 850;
}

.role {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.statement {
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.intro {
  max-width: 700px;
  color: #455466;
  font-size: 1.12rem;
}

.portrait {
  align-self: center;
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eee9df;
  aspect-ratio: 4 / 5;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 18%;
  filter: saturate(0.94) contrast(1.02);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(32px, 7vw, 92px);
  margin-bottom: 48px;
}

.section-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.map-card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  padding: 8px 0;
  color: #455466;
  border-top: 1px solid rgba(231,229,223,.85);
  font-size: 0.98rem;
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: 0.28fr 0.42fr 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-row span {
  color: var(--accent);
  font-weight: 850;
}

.timeline-row h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.timeline-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.company-grid div {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.company-grid h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.company-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.perspective {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(32px, 7vw, 92px);
}

.perspective-text p {
  color: #455466;
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
}

.contact {
  margin-top: clamp(52px, 7vw, 88px);
  margin-bottom: 46px;
  padding: clamp(48px, 7vw, 76px);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
}

.contact .eyebrow {
  color: rgba(255,255,255,.66);
}

.contact h2 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-weight: 800;
}

.contact-links a:first-child {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.location {
  margin-top: 26px;
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}

.footer {
  padding: 0 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .section-intro,
  .perspective,
  .timeline-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait {
    max-width: 420px;
  }

  .map-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    gap: 8px;
  }

  .footer {
    flex-direction: column;
  }
}
