@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/jakarta-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/jakarta-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --charcoal: #2c2d32;
  --charcoal-deep: #1e1f24;
  --slate: #4a4d55;
  --stone: #8a8a86;
  --ivory: #f3eddf;
  --ivory-soft: #faf7f0;
  --line: rgba(44, 45, 50, 0.14);
  --line-dark: rgba(243, 237, 223, 0.16);
  --max: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ivory-soft);
  color: var(--charcoal);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Header */
.site-header {
  background: var(--charcoal);
  color: var(--ivory);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.brand img { width: 26px; height: auto; }
.nav { display: flex; gap: clamp(18px, 3vw, 36px); }
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 237, 223, 0.72);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav a:hover { color: var(--ivory); }
.nav a[aria-current="page"] { color: var(--ivory); border-bottom-color: var(--ivory); }

/* Hero */
.hero {
  background: var(--charcoal);
  color: var(--ivory);
  border-top: 1px solid var(--line-dark);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: clamp(64px, 10vw, 128px);
  padding-bottom: clamp(64px, 10vw, 128px);
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 20px;
}
.hero .eyebrow { color: rgba(243, 237, 223, 0.55); }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; margin: 0; }
h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.06;
}
.lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  max-width: 34em;
  margin: 24px 0 0;
  color: rgba(243, 237, 223, 0.78);
}
.hero-mark {
  justify-self: end;
  width: min(100%, 300px);
  height: auto;
  opacity: 0.95;
}

.page-hero .wrap {
  grid-template-columns: 1fr;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

/* Sections */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { max-width: 40em; margin-bottom: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; }
.section-head p:not(.eyebrow) { margin: 16px 0 0; color: var(--slate); font-size: 18px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--charcoal);
}
.pillar {
  padding: 28px 28px 8px 0;
}
.pillar + .pillar { padding-left: 28px; border-left: 1px solid var(--line); }
.pillar .num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--stone);
}
.pillar h3 { font-size: 22px; margin: 14px 0 10px; }
.pillar p { margin: 0; color: var(--slate); font-size: 16px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
}
.prose p { margin: 0 0 20px; color: var(--slate); font-size: 18px; }
.prose p:last-child { margin-bottom: 0; }

.principles { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--charcoal); }
.principles li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.principles strong { font-weight: 600; }
.principles span { color: var(--slate); }

/* Band */
.band { background: var(--ivory); }
.band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 56px;
  padding-bottom: 56px;
}
.band p { margin: 0; font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; letter-spacing: -0.01em; max-width: 26em; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: var(--ivory);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 2px;
  transition: background 0.15s;
}
.button:hover { background: var(--charcoal-deep); }
.button svg { width: 16px; height: 16px; fill: currentColor; }

/* Contact */
.contact-card {
  border-top: 1px solid var(--charcoal);
  padding-top: 32px;
  max-width: 560px;
}
.contact-card .handle { font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; letter-spacing: -0.02em; margin: 8px 0 12px; }
.contact-card p { color: var(--slate); margin: 0 0 28px; }

/* Legal pages */
.legal { max-width: 720px; }
.legal .updated { color: var(--stone); font-size: 15px; margin: 0 0 40px; }
.legal .summary {
  background: var(--ivory);
  border-left: 3px solid var(--charcoal);
  padding: 20px 24px;
  margin: 0 0 48px;
}
.legal .summary p { margin: 0; color: var(--charcoal); }
.legal h2 { font-size: 22px; letter-spacing: -0.01em; margin: 44px 0 12px; }
.legal p, .legal li { color: var(--slate); }
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--charcoal); font-weight: 600; }
.legal a { text-underline-offset: 3px; }

/* 404 */
.not-found .wrap { min-height: 60vh; align-content: center; }
.not-found .lede { margin-bottom: 36px; }
.button-light { background: var(--ivory); color: var(--charcoal); }
.button-light:hover { background: #fff; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(243, 237, 223, 0.6);
  font-size: 14px;
}
.site-footer .wrap { padding-top: 48px; padding-bottom: 40px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-top .brand { color: var(--ivory); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--ivory); }
.disclaimer { margin: 24px 0 0; max-width: 60em; font-size: 13px; line-height: 1.6; color: rgba(243, 237, 223, 0.45); }

a:focus-visible, .button:focus-visible { outline: 2px solid var(--stone); outline-offset: 3px; }

@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-mark { justify-self: start; width: 84px; order: -1; margin-bottom: -8px; }
  .grid-3 { grid-template-columns: 1fr; }
  .pillar, .pillar + .pillar { padding: 24px 0; border-left: 0; }
  .pillar + .pillar { border-top: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; }
  .principles li { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .brand span { display: none; }
  .nav a { font-size: 13px; }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
}
.contact-grid .contact-card { max-width: none; }
.contact-card .handle a { text-decoration: none; overflow-wrap: anywhere; }
.contact-card .handle a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card .handle { font-size: clamp(19px, 1.9vw, 24px); }
