:root {
  --navy: #0e2746;
  --navy-2: #071b33;
  --sage: #6f9275;
  --sage-dark: #386044;
  --cream: #f6f2ea;
  --paper: #fffdf8;
  --ink: #172235;
  --muted: #5d6571;
  --line: #e4ded2;
  --shadow: 0 22px 60px rgba(13, 31, 53, 0.16);
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: clamp(.9rem, 1.1vw, 1rem);
}
.nav { display: flex; gap: clamp(1rem, 2vw, 2rem); align-items: center; }
.nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--navy-2);
}
.nav a:hover { color: var(--sage-dark); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  min-height: 680px;
  background: linear-gradient(100deg, var(--paper) 0%, var(--paper) 44%, #ede8dd 100%);
  overflow: hidden;
}
.hero-copy {
  padding: clamp(4rem, 8vw, 7.2rem) 5vw 4.5rem;
  align-self: center;
  max-width: 650px;
}
.eyebrow, .section-kicker {
  margin: 0 0 .9rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  word-spacing: .18em;
  color: var(--sage-dark);
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3 { color: var(--navy); line-height: 1.04; }
h1 {
  font-family: var(--serif);
  font-size: clamp(2.55rem, 4.65vw, 4.45rem);
  margin: 0;
  letter-spacing: -.045em;
}
h1 span {
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 500;
}
.rule {
  width: 58px;
  height: 3px;
  background: var(--sage);
  margin: 1.55rem 0 1.75rem;
}
.hero-copy p:not(.eyebrow) {
  font-size: 1.04rem;
  max-width: 520px;
}
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-height: 50px;
  padding: .85rem 1.45rem;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn.primary { background: var(--navy); color: white; }
.btn.primary:hover { background: var(--navy-2); }
.btn.secondary { border-color: var(--sage-dark); color: var(--navy); background: rgba(255,255,255,.45); }
.btn.sage { background: var(--sage); }

.hero-media {
  position: relative;
  min-height: 680px;
  align-self: stretch;
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(90deg, var(--paper), rgba(255,253,248,0));
  z-index: 2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: grayscale(1);
}
.role-card {
  position: absolute;
  right: 5vw;
  bottom: 5.5rem;
  z-index: 5;
  max-width: 430px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 1.35rem 1.55rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.role-card strong { display: block; font-family: var(--serif); font-size: 1.17rem; line-height: 1.25; }
.role-card p { margin: .55rem 0 0; color: rgba(255,255,255,.88); font-size: .91rem; }
.card-icon { color: #9eb998; font-size: 1.7rem; line-height: 1; }

.intersections {
  padding: 2.1rem 5vw 2.35rem;
  background: var(--cream);
  border-block: 1px solid var(--line);
  text-align: center;
}
.intersections p { margin: 0 0 1.25rem; font-weight: 700; color: var(--navy-2); }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  max-width: 1120px;
  margin: 0 auto;
}
.focus-grid span {
  color: var(--navy-2);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .055em;
  padding: .4rem .8rem;
  border-right: 1px solid #d8d0c4;
}
.focus-grid span:last-child { border-right: 0; }
.focus-grid span::before {
  content: '—';
  color: var(--sage-dark);
  margin-right: .6rem;
}

.section { padding: clamp(4.25rem, 7vw, 6.5rem) 5vw; }
.section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3.05rem);
  margin: 0 0 1.8rem;
  letter-spacing: -.035em;
}
.current-work { background: var(--paper); }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.card {
  min-height: 375px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem;
  background: rgba(255,255,255,.58);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(13,31,53,.08); border-color: #cfc6b8; }
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage-dark);
  color: white;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.icon-circle.navy { background: var(--navy); }
.card h3 { font-family: var(--serif); font-size: 1.48rem; margin: 0 0 .45rem; }
.card .label { font-weight: 700; color: var(--navy-2); margin: 0 0 .95rem; font-size: .88rem; }
.card p { font-size: .92rem; }
.card a {
  display: inline-flex;
  gap: .6rem;
  margin-top: .7rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--sage-dark);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  background: var(--cream);
  align-items: center;
}
.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 22%;
}
.about-copy p { max-width: 720px; font-size: 1.05rem; }

.experience { background: var(--paper); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.experience-grid div {
  border-top: 3px solid var(--sage);
  padding-top: 1.1rem;
}
.experience-grid h3 { font-family: var(--serif); font-size: 1.45rem; margin: 0 0 .6rem; }

.cta-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  padding: clamp(3.5rem, 6vw, 5rem) 5vw;
  background: linear-gradient(110deg, var(--navy-2), var(--navy));
  color: white;
  align-items: center;
}
.cta-section h2, .cta-section h3 { color: white; }
.cta-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  margin: 0 0 1rem;
  letter-spacing: -.035em;
}
.cta-copy p { max-width: 560px; color: rgba(255,255,255,.86); }
.newsletter-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: 10px;
}
.newsletter-card img {
  border-radius: 8px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center 40%;
}
.newsletter-card h3 { font-family: var(--serif); font-size: 1.7rem; margin: 0 0 .4rem; }
.newsletter-card p { color: rgba(255,255,255,.84); }
.newsletter-card a { color: #b8d0b4; font-weight: 800; text-transform: uppercase; text-decoration: none; font-size: .8rem; letter-spacing: .06em; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.6rem 5vw;
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--navy); font-weight: 700; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-direction: column; padding-block: 1rem; }
  .nav { flex-wrap: wrap; gap: .85rem 1.2rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; padding-bottom: 2rem; }
  .hero-media { min-height: 560px; }
  .hero-media::before { display:none; }
  .role-card { left: 5vw; right: 5vw; bottom: 1.5rem; }
  .focus-grid, .cards, .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split, .cta-section { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-header { position: static; }
  .nav a { font-size: .7rem; }
  h1 { font-size: 2.55rem; }
  .hero-media { min-height: 460px; }
  .hero-media img { object-position: 50% 18%; }
  .role-card { grid-template-columns: 1fr; padding: 1rem; }
  .focus-grid, .cards, .experience-grid, .newsletter-card { grid-template-columns: 1fr; }
  .focus-grid span { border-right: 0; border-bottom: 1px solid #d8d0c4; padding: .75rem .25rem; }
  .focus-grid span:last-child { border-bottom: 0; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .newsletter-card img { width: 100%; max-height: 280px; }
}


/* Safe-to-publish profile refinements */
.safe-hero {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.08fr);
  min-height: 620px;
  background: linear-gradient(100deg, var(--paper) 0%, var(--paper) 52%, #ede8dd 100%);
}
.safe-hero .hero-copy { max-width: 680px; }
.hero-media.compact { min-height: 620px; max-height: 620px; }
.hero-media.compact img { object-position: 50% 18%; }
.role-card.understated { max-width: 360px; bottom: 2.2rem; right: 3.2vw; padding: 1rem 1.15rem; }
.role-card.understated strong { font-size: 1.02rem; }
.role-card.understated p { font-size: .82rem; }
.intro-section { background: var(--paper); padding-top: clamp(3.7rem, 6vw, 5.7rem); }
.intro-section h2 { max-width: 850px; }
.intro-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1180px; }
.intro-columns p { margin-top: 0; font-size: 1.02rem; }
.quiet-cta .newsletter-card img { filter: saturate(.88) contrast(.95) brightness(1.01); }

@media (max-width: 980px) {
  .safe-hero { grid-template-columns: 1fr; }
  .hero-media.compact { min-height: 520px; max-height: none; }
  .intro-columns { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .safe-hero .hero-copy { padding-top: 3.2rem; }
  .hero-media.compact { min-height: 455px; }
  .role-card.understated { left: 5vw; right: 5vw; bottom: 1rem; max-width: none; }
}
