@font-face {
  font-family: "Inter";
  src: url("fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f4f1ea;
  --ink: #16150f;
  --muted: #5a564c;
  --rule: rgba(22, 21, 15, 0.14);
  --rule-strong: rgba(22, 21, 15, 0.28);
  --accent: #2c3fa0;
  --dark: #15140f;
  --dark-muted: rgba(244, 241, 234, 0.72);
  --shell: 1240px;
  --outer: clamp(1.5rem, 6vw, 7rem);
  --header-h: 76px;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 2rem);
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  font-family: var(--sans);
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, canvas, svg { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration-color: rgba(44, 63, 160, 0.38);
  text-underline-offset: 0.18em;
  transition: color 160ms ease, text-decoration-color 160ms ease, background-color 160ms ease;
}

a:hover { color: var(--accent); text-decoration-color: currentColor; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
main:focus { outline: none; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.7rem 0.95rem;
  background: var(--ink);
  color: var(--paper);
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(var(--shell), calc(100% - (var(--outer) * 2)));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  border-top: 1px solid var(--rule);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: rgba(244, 241, 234, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-h);
  width: min(var(--shell), calc(100% - (var(--outer) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.brand {
  display: inline-grid;
  gap: 0.05rem;
  text-decoration: none;
  justify-self: start;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-line, .section-number, .kicker, .offer-index {
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  font-size: 0.86rem;
}
.site-nav a, .header-cta, .nav-toggle, .footer-links a {
  text-decoration: none;
}
.header-cta {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.55rem 0.82rem;
  font-size: 0.83rem;
  line-height: 1;
}
.header-cta:hover { background: var(--accent); color: var(--paper); }
.nav-toggle { display: none; }

.hero {
  border-top: 0;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(18rem, 5fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.kicker { margin: 0 0 1.4rem; color: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 0.94;
  overflow-wrap: normal;
  hyphens: none;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
h1 {
  margin-bottom: 1.55rem;
  max-width: 11ch;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
}
h2 {
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
}
h3 {
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  font-weight: 540;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.hero-subhead {
  max-width: 39rem;
  margin-bottom: 2rem;
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  line-height: 1.45;
  color: #38352e;
}
.affiliation-line {
  max-width: 52rem;
  margin: 1.6rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.93rem;
}
.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--accent);
  font-weight: 620;
  text-decoration: none;
}
.text-cta::after {
  content: "→";
  font-weight: 420;
  transform: translateY(-0.02em);
}
.text-cta:hover::after { transform: translate(0.2rem, -0.02em); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem; }
.hero-secondary { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.hero-secondary:hover { color: var(--accent); }
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: clamp(1rem, 3vw, 2rem);
}
.engagement-grid article {
  padding: clamp(1.3rem, 2.5vw, 2rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.engagement-grid h3 { margin-bottom: 0.5rem; }
.engagement-grid p { color: var(--muted); margin-bottom: 0; }
.hero-art { margin: 0; position: relative; }
.hero-art img {
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  background: #e9e2d5;
  display: block;
}
.hero-art figcaption {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.static-field {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(22, 21, 15, 0.12);
}
#hero-canvas { width: 100%; height: 100%; opacity: 0.92; }

.two-column, .grid-heading, .contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
}
.section-meta, .grid-heading .section-number, .contact-grid > :first-child { grid-column: 1 / span 3; }
.section-body, .grid-heading h2, .contact-copy { grid-column: 5 / -1; }
.contact-grid > :first-child { grid-column: 1 / -1; }
.contact-grid .contact-copy { grid-column: 1 / span 9; margin-top: 1.6rem; }
.section-body p { max-width: 68ch; }
.section-body p:last-child { margin-bottom: 0; }

.proof-band { border-top: 1px solid var(--rule); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--rule);
}
.proof-item {
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.7rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 0.5rem;
  align-content: start;
}
.proof-figure {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.proof-label { color: var(--muted); font-size: 0.85rem; line-height: 1.32; }

.inverted {
  background: var(--dark);
  color: var(--paper);
  border-top: 0;
}
.inverted .section-number, .inverted p { color: var(--dark-muted); }
.inverted h2, .inverted .pull-quote { color: var(--paper); }
.pull-quote {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  max-width: 15rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.offer-list {
  margin-top: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid var(--rule);
}
.offer-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  padding-block: clamp(1.65rem, 3vw, 2.55rem);
  border-bottom: 1px solid var(--rule);
}
.offer-item > div {
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1.2fr);
  gap: 0.45rem clamp(1rem, 4vw, 4rem);
  align-items: start;
}
.offer-item > div > h3 { grid-column: 1; grid-row: 1; }
.offer-item > div > .offer-lead { grid-column: 2; grid-row: 1; }
.offer-item > div > p:not(.offer-index):not(.offer-lead) { grid-column: 2; grid-row: 2; }
.offer-item h3, .offer-item .offer-lead { margin-bottom: 0; }
.offer-lead { color: var(--ink); font-weight: 540; }
.offer-item p:not(.offer-index):not(.offer-lead) { color: var(--muted); max-width: 43rem; }
.quiet-cta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  margin-top: 2rem;
}
.quiet-cta p { max-width: 42rem; color: var(--muted); }

.audience-section { padding-top: 0; border-top: 0; }
.audience-grid, .work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.audience-grid article {
  min-height: 18rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.audience-grid p { color: var(--muted); }
.market-line {
  max-width: 62rem;
  margin: clamp(2rem, 5vw, 4rem) 0 0 auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.work-grid figure {
  margin: 0;
  min-width: 0;
  padding: clamp(0.85rem, 1.8vw, 1.2rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.work-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--rule);
  background: #e9e2d5;
}
.placeholder-mark {
  aspect-ratio: 1.22 / 1;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  background:
    radial-gradient(circle at var(--dot, 35% 40%), rgba(22,21,15,0.12) 0 1px, transparent 2px),
    repeating-linear-gradient(var(--ang, 112deg), transparent 0 17px, rgba(22,21,15,0.12) 18px, transparent 19px),
    var(--paper);
}
.work-grid figure:nth-child(1) .placeholder-mark { --ang: 112deg; --dot: 35% 40%; }
.work-grid figure:nth-child(2) .placeholder-mark { --ang: 42deg; --dot: 64% 32%; }
.work-grid figure:nth-child(3) .placeholder-mark { --ang: 78deg; --dot: 28% 66%; }
.work-grid figure:nth-child(4) .placeholder-mark { --ang: 153deg; --dot: 70% 58%; }
.work-grid figure:nth-child(5) .placeholder-mark { --ang: 18deg; --dot: 46% 30%; }
.work-grid figure:nth-child(6) .placeholder-mark { --ang: 96deg; --dot: 56% 70%; }
.work-grid figure:nth-child(2n) .placeholder-mark::before { transform: rotate(22deg); inset: 20% 26% 24% 16%; }
.work-grid figure:nth-child(3n) .placeholder-mark::before { transform: rotate(-30deg); inset: 24% 18% 22% 22%; }
.work-grid figure:nth-child(2n) .placeholder-mark::after { transform: rotate(-24deg); }
.work-grid figure:nth-child(3n) .placeholder-mark::after { transform: rotate(34deg); opacity: 0.4; }
.placeholder-mark::before,
.placeholder-mark::after {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border: 1px solid rgba(22,21,15,0.2);
  border-radius: 50%;
  transform: rotate(-14deg);
}
.placeholder-mark::after {
  inset: 24% 20% 20% 16%;
  transform: rotate(18deg);
  opacity: 0.5;
}
figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}
figcaption span {
  display: block;
  color: var(--ink);
  font-weight: 620;
}

.action-shot { margin: 0; }
.action-frame { display: block; border: 1px solid var(--rule); background: #e9e2d5; overflow: hidden; }
.action-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) contrast(1.05) sepia(0.16);
  mix-blend-mode: multiply;
}
.action-shot figcaption {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.portrait-wrap {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  border: 1px solid var(--rule);
  background: #e9e2d5;
  overflow: hidden;
}
.portrait-wrap img {
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.06) sepia(0.16);
  mix-blend-mode: multiply;
}
.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(244,241,234,0.18);
}
.about-copy p:not(.section-number) { max-width: 66ch; }
.fact-panel {
  grid-column: 2;
  margin: 1rem 0 0;
  border-top: 1px solid var(--rule);
}
.fact-panel div {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--rule);
}
dt {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
dd { margin: 0; color: var(--muted); font-variant-numeric: tabular-nums; }

.affiliations {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.affiliation-marquee {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  line-height: 1.9;
  text-transform: uppercase;
  text-align: center;
}

.contact-section {
  background: var(--dark);
  color: var(--paper);
  border-top: 0;
}
.contact-section .section-number { color: var(--dark-muted); }
.contact-section h2 { color: var(--paper); }
.contact-copy p { max-width: 34rem; color: var(--dark-muted); font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-block: 2rem 1rem;
}
.contact-section .text-cta {
  color: var(--paper);
  border-bottom: 1px solid rgba(244,241,234,0.42);
}
.secondary-link {
  color: var(--dark-muted);
  text-decoration: none;
  border: 1px solid rgba(244,241,234,0.3);
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
}
.secondary-link:hover { color: var(--paper); border-color: var(--paper); }
.email-line a { color: var(--paper); }

.site-footer {
  padding-block: 2.2rem;
  border-top: 1px solid rgba(244,241,234,0.12);
  background: var(--dark);
  color: var(--dark-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
}
.footer-wordmark {
  margin-bottom: 0.15rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--paper);
}
.footer-grid p { margin-bottom: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.4rem;
}
.footer-links a:hover { color: var(--paper); }
.copyright { grid-column: 1 / -1; font-size: 0.82rem; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: minmax(12rem, 1fr) auto; }
  .site-nav {
    order: 4;
    grid-column: 1 / -1;
    justify-content: center;
    padding-bottom: 0.85rem;
  }
  .header-cta { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 38rem; margin-inline: auto; width: 100%; }
  h1 { max-width: 12ch; }
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; --outer: clamp(1rem, 5vw, 1.5rem); }
  .section { padding-block: 4.5rem; }
  .site-header { min-height: var(--header-h); }
  .header-inner {
    width: calc(100% - 2rem);
    min-height: var(--header-h);
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }
  .brand-line { display: none; }
  .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--rule-strong);
    background: transparent;
    color: var(--ink);
    padding: 0.52rem 0.7rem;
    font: inherit;
    font-size: 0.83rem;
  }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a {
    padding: 1rem;
    border-top: 1px solid var(--rule);
  }
  .hero { min-height: auto; padding-top: 4.2rem; }
  .hero-grid { gap: 2rem; }
  h1 { max-width: 10ch; }
  .hero-art { max-width: 26rem; margin-inline: auto; }
  .two-column, .grid-heading, .contact-grid { display: block; }
  .pull-quote { position: static; max-width: none; margin-bottom: 2rem; }
  .offer-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .offer-item > div { grid-template-columns: 1fr; gap: 0.5rem; }
  .quiet-cta { display: block; }
  .audience-grid, .work-grid, .engagement-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid article { min-height: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait-wrap { position: relative; top: auto; max-width: 32rem; }
  .fact-panel { grid-column: auto; }
  .fact-panel div { grid-template-columns: 1fr; gap: 0.3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 420px) {
  body { overflow-wrap: break-word; }
  h1 { font-size: clamp(2.55rem, 14vw, 3.35rem); }
  .hero-subhead { font-size: 1.08rem; }
  .work-grid figure { padding: 0.8rem; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
}

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

@media print {
  .site-header, .hero-art, .skip-link, .contact-actions, .site-footer { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section, .hero { padding-block: 1.5rem; border-top: 1px solid #999; }
  .inverted, .contact-section { background: #fff; color: #000; }
  .shell { width: 100%; }
  a { color: #000; text-decoration: underline; }
}
