:root {
  --paper: #fbfbf8;
  --paper-pure: #ffffff;
  --ink: #11110f;
  --muted: #686760;
  --line: #deded8;
  --soft: #f1f1ec;
  --warm: #f3f0e9;
  --cool: #eef1f2;
  --dark: #0f0f0e;
  --max: 1240px;
  --reading: 800px;
  --header: 72px;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  min-width: 320px;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
  background: var(--paper);
  overscroll-behavior-y: none;
  overflow-x: hidden;
}
body {
  min-height: 100dvh;
  margin: 0;
  padding: var(--header) 0 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { flex: 1 0 auto; min-width: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: #d9d9d1; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  border-radius: 2px;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 96px), var(--max)); margin-inline: auto; }
.reading { width: min(calc(100% - 96px), var(--reading)); margin-inline: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  min-height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 248, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand picture, .brand img { display: block; }
.brand img { width: 178px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 31px; font-size: 14px; }
.main-nav a { position: relative; display: inline-block; padding-block: 8px; white-space: nowrap; }
.main-nav a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(var(--underline-scale, 0));
  transform-origin: left center;
  transition: transform 80ms linear;
}
.main-nav a:not([aria-current="page"]):hover::after,
.main-nav a:not([aria-current="page"]):focus-visible::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 8px 0 8px 12px;
  cursor: pointer;
}

.hero,
.page-hero {
  border-bottom: 1px solid var(--line);
}
.hero { min-height: calc(76vh - var(--header)); display: flex; align-items: center; }
.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 72px;
  align-items: center;
  padding-block: 98px;
}
.hero-copy { max-width: 650px; margin: 28px 0 0; color: #35342f; font-size: clamp(17px, 1.7vw, 20px); }
.hero-mark { display: flex; justify-content: center; align-items: center; padding: 44px; }
.hero-mark img { width: min(340px, 72%); }
.page-hero { padding: 96px 0 78px; }
.page-hero.dark { background: var(--dark); color: #fff; border-color: #282825; }
.page-hero.dark .eyebrow, .page-hero.dark p { color: #b3b3ac; }
.page-hero .lead { max-width: 760px; margin: 25px 0 0; color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); }
.page-hero .subhead { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(28px, 3.8vw, 48px); font-weight: 400; line-height: 1.08; letter-spacing: -.025em; }

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  margin: 0;
  max-width: 920px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -.04em;
}
h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.1vw, 55px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.03em;
}
h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.018em;
}
.eyebrow,
.section-kicker,
.footer-label,
.status-label,
.legal-kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.page-hero.dark .eyebrow { color: #9c9c96; }

.section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.section.compact { padding-block: 72px; }
.section.warm { background: var(--warm); }
.section.cool { background: var(--cool); }
.section.dark { background: var(--dark); color: #fff; border-color: #282825; }
.section.dark p, .section.dark .section-kicker { color: #b7b7b0; }
.section-head { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 52px; margin-bottom: 50px; }
.section-kicker { padding-top: 10px; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 88px; align-items: start; }
.split > .split-copy,
.split > .status-grid { padding-top: 34px; }
.split-copy p { margin: 0 0 20px; color: #393833; font-size: 18px; }
.split-copy p:last-child { margin-bottom: 0; }
.section.dark .split-copy p { color: #c2c2bb; }

.field-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.field {
  min-height: 260px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease;
}
.field:hover, .field:focus-visible { background: var(--soft); }
.field-num { color: var(--muted); font-size: 11px; letter-spacing: .15em; }
.field h3 { margin: 44px 0 12px; }
.field p { max-width: 32ch; margin: 0; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 44px; border: 1px solid var(--line); background: var(--line); }
.card { min-height: 230px; padding: 34px; background: var(--paper); }
.warm .card { background: var(--warm); }
.cool .card { background: var(--cool); }
.card h3 { margin-bottom: 14px; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: 24px 0 0; padding: 0; list-style: none; color: var(--muted); }
.card li { padding: 8px 0; border-top: 1px solid rgba(17,17,15,.12); }

.list { border-top: 1px solid var(--line); }
.list-row { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.list-row > span { padding-top: 3px; color: var(--muted); font-size: 11px; letter-spacing: .11em; }
.list-row strong { font-weight: 500; }
.list-row p { margin: 5px 0 0; color: var(--muted); }

.principles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle { min-height: 215px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle h3 { margin-bottom: 13px; font-size: 25px; }
.principle p { margin: 0; color: var(--muted); }

.status-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.status-item { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.status-item:nth-child(odd) { padding-right: 34px; }
.status-item:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--line); }
.status-item span:first-child { color: var(--muted); }
.status-item span:last-child { text-align: right; }

.statement { padding: 92px 0; border-bottom: 1px solid var(--line); }
.statement p {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 65px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.statement small { display: block; margin-top: 26px; color: var(--muted); font-size: 16px; }
.statement.dark { background: var(--cool); color: var(--ink); border-color: var(--line); }
.statement.dark small { color: var(--muted); }

.inline-link { display: inline-block; margin-top: 26px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 15px; }
.inline-link:hover, .inline-link:focus-visible { opacity: .62; }
.contact-email { display: inline-block; max-width: 100%; font-family: var(--serif); font-size: clamp(30px, 4.2vw, 54px); line-height: 1.12; letter-spacing: -.025em; overflow-wrap: anywhere; }
.contact-email:hover, .contact-email:focus-visible { opacity: .62; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.contact-card { min-height: 240px; padding: 34px; background: var(--paper); }
.contact-card p { margin: 14px 0 0; color: var(--muted); }
.contact-card .inline-link { margin-top: 24px; }

.socials { display: flex; align-items: center; gap: 22px; }
.socials a,
.socials a:hover,
.socials a:focus-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}
.socials img,
.socials a:hover img,
.socials a:focus-visible img {
  display: block;
  width: auto;
  height: 22px;
  max-width: 31px;
  object-fit: contain;
  filter: none !important;
  opacity: 1;
  transform: none;
  transition: none;
}
.socials .youtube-icon,
.socials a:hover .youtube-icon,
.socials a:focus-visible .youtube-icon {
  height: 19px;
  max-width: 30px;
}
.site-footer .socials img,
.site-footer .socials a:hover img,
.site-footer .socials a:focus-visible img {
  filter: invert(1) !important;
}
.contact-socials { margin-top: 22px; }
.contact-socials .socials img { height: 22px; max-width: 31px; }
.contact-socials .socials .youtube-icon { height: 19px; max-width: 30px; }

.site-footer { flex-shrink: 0; margin: 0; padding: 70px 0 26px; background: #000; color: #f5f5f0; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 72px; padding-bottom: 52px; }
.footer-brand img { width: 210px; filter: invert(1); opacity: .97; }
.footer-brand p { max-width: 390px; margin: 23px 0 0; color: #aaa9a2; }
.footer-label { color: #8f8f89; }
.footer-contact { display: inline-block; max-width: 100%; font-family: var(--serif); font-size: clamp(21px, 2.3vw, 28px); overflow-wrap: anywhere; }
.footer-contact:hover, .footer-contact:focus-visible { opacity: .68; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 23px; border-top: 1px solid #30302d; color: #8f8f89; font-size: 13px; }
.footer-bottom-left { display: flex; flex-wrap: wrap; gap: 11px 22px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: #fff; }

.legal-hero { padding: 82px 0 58px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(44px, 5.5vw, 72px); }
.legal-date { margin: 18px 0 0; color: var(--muted); }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, var(--reading)); gap: 76px; align-items: start; padding: 70px 0 96px; }
.legal-toc { position: sticky; top: calc(var(--header) + 28px); }
.legal-toc h2 { margin: 0 0 18px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.legal-toc ol { margin: 0; padding: 0; list-style: none; }
.legal-toc li { margin: 0 0 9px; }
.legal-toc a { color: var(--muted); font-size: 13px; }
.legal-toc a:hover, .legal-toc a:focus-visible { color: var(--ink); }
.legal-content { min-width: 0; }
.legal-intro { margin: 0 0 42px; color: #383833; font-size: 18px; }
.legal-notice { margin: 0 0 42px; padding: 22px 24px; border: 1px solid var(--line); background: var(--soft); color: #45443f; }
.legal-section { padding: 36px 0; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header) + 22px); }
.legal-section h2 { margin: 0 0 18px; font-size: clamp(26px, 3vw, 36px); }
.legal-section h3 { margin: 24px 0 9px; font-family: var(--sans); font-size: 17px; font-weight: 500; letter-spacing: 0; }
.legal-section p { margin: 0 0 14px; color: #3e3d38; }
.legal-section ul { margin: 12px 0 16px; padding-left: 22px; color: #3e3d38; }
.legal-section li { margin: 7px 0; }
.legal-section a { text-decoration: underline; text-underline-offset: 3px; }

.fade-up { opacity: 1; transform: none; }
.js .fade-up { opacity: 0; transform: translateY(12px); transition: opacity 550ms ease, transform 550ms ease; }
.js .fade-up.visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }

@media (max-width: 950px) {
  .principles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { gap: 45px; }
  .legal-layout { grid-template-columns: 200px minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 850px) {
  :root { --header: 68px; }
  .shell, .reading { width: min(calc(100% - 30px), var(--max)); }
  .brand img { width: 38px; height: 38px; object-fit: contain; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 15px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: auto; padding: 9px 0; font-size: 17px; }
  .main-nav a::after { bottom: 3px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-block: 74px; }
  .hero-mark { justify-content: flex-start; padding: 8px 0 0; }
  .hero-mark img { width: 145px; }
  .page-hero { padding: 74px 0 60px; }
  .section { padding: 66px 0; }
  .section-head, .split { grid-template-columns: 1fr; gap: 34px; }
  .split > .split-copy, .split > .status-grid { padding-top: 0; }
  .section-head { margin-bottom: 38px; }
  .section-kicker { padding-top: 0; }
  .field-grid { grid-template-columns: 1fr; }
  .field { min-height: 220px; }
  .principles { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .status-item:nth-child(odd), .status-item:nth-child(even) { padding-inline: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { display: block; padding: 50px 0 76px; }
  .legal-toc { position: static; margin-bottom: 38px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .legal-toc ol { columns: 2; column-gap: 30px; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(43px, 13vw, 62px); }
  .cards { grid-template-columns: 1fr; }
  .card, .contact-card { min-height: auto; padding: 28px; }
  .statement { padding: 70px 0; }
  .socials { gap: 20px; }
  .socials img, .socials a:hover img, .socials a:focus-visible img { height: 21px; max-width: 30px; }
  .socials .youtube-icon, .socials a:hover .youtube-icon, .socials a:focus-visible .youtube-icon { height: 18px; max-width: 29px; }
  .legal-toc ol { columns: 1; }
  .legal-section { padding: 30px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .fade-up { opacity: 1; transform: none; }
}
