:root {
  --ink: #151b24;
  --muted: #65717e;
  --paper: #f4f0e7;
  --surface: #fffdf9;
  --line: #d7d2c8;
  --deep: #16233a;
  --teal: #b56f52;
  --sage: #778493;
  --mist: #e6e1d8;
  --max: 1180px;
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--teal); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244,240,231,.94);
  border-bottom: 1px solid rgba(183,174,160,.55);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  width: 190px;
}
.brand-logo { display: block; width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .94rem; }
.nav-links a { color: #3c4654; }
.nav-links .nav-cta { color: var(--surface); background: var(--deep); padding: 10px 16px; border-radius: 999px; }
.menu-button { display: none; border: 0; background: transparent; font: inherit; padding: 8px; }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 72px;
  padding: 90px 0 80px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
}
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); font-weight: 650; max-width: 900px; }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.6rem); font-weight: 620; }
h3 { font-size: 1.35rem; font-weight: 650; }
.lede { font-size: clamp(1.13rem, 1.8vw, 1.45rem); color: #495565; max-width: 780px; margin: 28px 0 0; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 999px; font-weight: 650; border: 1px solid var(--deep); }
.button.primary { background: var(--deep); color: white; transition: background .2s ease, border-color .2s ease; }
.button.primary:hover { background: var(--teal); border-color: var(--teal); color: white; }
.button.secondary { background: transparent; color: var(--deep); transition: color .2s ease, border-color .2s ease; }
.button.secondary:hover { color: var(--teal); border-color: var(--teal); }

.brand-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 28px 64px rgba(22,35,58,.17);
}
.brand-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: inherit;
  pointer-events: none;
}
.brand-hero-image { display: block; width: 100%; height: auto; }

.section { padding: 100px 0; }
.section.compact { padding: 70px 0; }
.section.dark { background: var(--deep); color: white; }
.section.dark .muted, .section.dark p { color: #d7d9de; }
.section-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.1rem; max-width: 680px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--teal); border-radius: var(--radius); padding: 28px 30px 30px; min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 38px rgba(22,35,58,.08); }
.card-number { color: var(--teal); font-weight: 720; font-size: .78rem; letter-spacing: .14em; }
.card p { margin: 16px 0 0; color: var(--muted); }
.card-link { margin-top: 28px; font-weight: 650; color: var(--deep); }

.thesis { padding: 48px; border: 1px solid rgba(255,255,255,.15); border-radius: 28px; }
.thesis p { font-size: clamp(1.7rem, 3.4vw, 3.4rem); line-height: 1.14; letter-spacing: -.035em; color: white !important; margin: 0; max-width: 980px; }
.thesis span { color: #d59b7f; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.prose { max-width: 760px; }
.prose p { font-size: 1.08rem; color: var(--muted); margin: 0 0 20px; }
.kicker { font-size: 1.2rem; color: var(--teal); font-weight: 620; margin-bottom: 12px; }

.list { list-style: none; padding: 0; margin: 28px 0 0; }
.list li { padding: 18px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 32px 1fr; gap: 12px; }
.list li:last-child { border-bottom: 1px solid var(--line); }
.list b { color: var(--teal); }

.newsletter { background: #e8e1d6; border: 1px solid #d8cec0; border-radius: 30px; padding: 48px; display: grid; grid-template-columns: 1fr .85fr; gap: 50px; align-items: center; }
.newsletter p { color: #566171; max-width: 650px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; min-width: 0; border: 1px solid #bcb3a6; background: white; border-radius: 999px; padding: 0 18px; min-height: 50px; font: inherit; }
.newsletter-form button { border: 0; border-radius: 999px; padding: 0 20px; min-height: 50px; font: inherit; font-weight: 680; background: var(--deep); color: white; cursor: pointer; }
.newsletter > div:last-child { min-width: 0; }
.newsletter-embed { width: 100%; min-height: 72px; }
.newsletter-embed iframe { display: block; width: 100% !important; max-width: 100% !important; margin: 0 !important; border: 0 !important; }
.form-note { font-size: .83rem; margin-top: 9px !important; }

.page-hero { padding: 105px 0 72px; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); max-width: 920px; }
.page-hero .lede { max-width: 800px; }

.service-row { display: grid; grid-template-columns: .45fr 1.55fr; gap: 60px; padding: 50px 0; border-top: 1px solid var(--line); }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row .service-label { color: var(--teal); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.service-copy p { color: var(--muted); font-size: 1.08rem; max-width: 760px; }
.service-copy ul { padding-left: 20px; color: #414b59; }

.issue-card { border: 1px solid var(--line); background: white; border-radius: var(--radius); padding: 34px; }
.issue-card .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); font-weight: 700; }
.issue-card h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-top: 14px; }
.issue-card p { color: var(--muted); max-width: 760px; }

.contact-box { max-width: 800px; background: white; border: 1px solid var(--line); border-radius: 28px; padding: 44px; }
.contact-link { font-size: clamp(1.5rem, 4vw, 2.7rem); font-weight: 620; color: var(--deep); letter-spacing: -.025em; }

.site-footer { border-top: 1px solid var(--line); padding: 42px 0; margin-top: 20px; }
.footer-row { display: flex; justify-content: space-between; gap: 30px; color: #66717d; font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 70px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 18px; flex-direction: column; align-items: stretch; gap: 12px; box-shadow: 0 18px 35px rgba(20,30,30,.08); }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { text-align: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 42px; padding: 70px 0; }
  .brand-visual { max-width: 620px; }
  .section-head, .split, .newsletter { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 68px; }
  .wordmark { width: 164px; }
  .hero { padding-top: 55px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.4rem); }
  .section, .section.compact { padding: 72px 0; }
  .thesis, .newsletter, .contact-box { padding: 28px; }
  .newsletter-form { flex-direction: column; }
  .footer-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card { transition: none; }
}
