:root {
  --night: #0D0C08;
  --night-mid: #1C1A14;
  --paper: #FAF8F4;
  --paper-warm: #F2EDE4;
  --white: #FFFFFF;

  --amber-deep: #A85C08;
  --amber: #C8760E;
  --amber-light: #E89C3A;
  --amber-pale: #FBF0DE;

  --green-dark: #1E5C3A;
  --green: #2A6E4F;
  --green-light: #3D9970;
  --green-pale: #E8F3EE;

  --blue-dark: #2A5280;
  --blue: #3A6EA8;
  --blue-light: #5B8FC7;
  --blue-pale: #E8EEF6;

  --violet-dark: #4A3580;
  --violet: #6B4FA8;
  --violet-light: #9678D4;
  --violet-pale: #EEE9F7;

  --red: #C0392B;
  --red-pale: #FDECEA;

  --ink: #0F0D0A;
  --ink-muted: #4A4741;
  --ink-ghost: #9A958F;

  --border: rgba(15,13,10,0.12);
  --border-light: rgba(15,13,10,0.06);
  --border-strong: rgba(15,13,10,0.18);
  --border-night: rgba(255,255,255,0.07);
  --border-night-2: rgba(255,255,255,0.04);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  --site-shell-max: 1440px;
  --site-content-max: 1200px;
  --site-gutter: clamp(1rem, 3.333vw, 3rem);
  --site-nav-height: 56px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

svg {
  display: block;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,12,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-night);
  padding: 0 var(--site-gutter);
  height: var(--site-nav-height);
}

.site-nav__inner {
  max-width: var(--site-shell-max);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-nav__brand {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-nav__brand span {
  color: var(--amber-light);
}

.site-nav__links {
  display: flex;
  gap: clamp(1.1rem, 2vw, 2rem);
  list-style: none;
  align-items: center;
  margin-left: auto;
}

.site-nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: rgba(255,255,255,0.95);
}

.site-nav__mobile {
  display: none;
  margin-left: auto;
}

.site-nav__mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: var(--site-nav-height);
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.site-nav__mobile-toggle:hover,
.site-nav__mobile-toggle:focus-visible {
  color: rgba(255,255,255,0.95);
}

.site-nav__mobile-icon,
.site-nav__mobile-close svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav__mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background: rgba(13,12,8,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms ease, visibility 0s linear 150ms;
}

.site-nav__mobile-overlay[data-open="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 200ms ease;
}

.site-nav__mobile-close {
  position: absolute;
  top: 0;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: var(--site-nav-height);
  color: rgba(255,255,255,0.45);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.site-nav__mobile-close:hover,
.site-nav__mobile-close:focus-visible {
  color: rgba(255,255,255,0.82);
}

.site-nav__mobile-menu {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: calc(var(--site-nav-height) + 2rem) 1.5rem 2rem;
}

.site-nav__mobile-link {
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease, color 0.2s;
}

.site-nav__mobile-link:hover,
.site-nav__mobile-link[aria-current="page"] {
  color: rgba(255,255,255,0.95);
}

.site-nav__mobile-overlay[data-open="true"] .site-nav__mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.site-nav__mobile-overlay[data-open="true"] .site-nav__mobile-link:nth-child(1) { transition-delay: 0ms; }
.site-nav__mobile-overlay[data-open="true"] .site-nav__mobile-link:nth-child(2) { transition-delay: 20ms; }
.site-nav__mobile-overlay[data-open="true"] .site-nav__mobile-link:nth-child(3) { transition-delay: 40ms; }
.site-nav__mobile-overlay[data-open="true"] .site-nav__mobile-link:nth-child(4) { transition-delay: 60ms; }
.site-nav__mobile-overlay[data-open="true"] .site-nav__mobile-link:nth-child(5) { transition-delay: 80ms; }
.site-nav__mobile-overlay[data-open="true"] .site-nav__mobile-link:nth-child(6) { transition-delay: 100ms; }
.site-nav__mobile-overlay[data-open="true"] .site-nav__mobile-link:nth-child(7) { transition-delay: 120ms; }

.site-nav__mobile-email {
  margin-top: auto;
  border-top: 1px solid var(--border-night);
  color: var(--amber-light);
  padding-top: 1.25rem;
}

.site-nav__mobile-email:hover,
.site-nav__mobile-email:focus-visible {
  color: var(--amber-light);
}

.site-nav-lock {
  overflow: hidden;
}

.site-nav__cta {
  background: transparent;
  border: 1px solid rgba(200,118,14,0.5);
  color: var(--amber-light) !important;
  padding: 6px 16px;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}

.site-nav__cta:hover {
  background: rgba(200,118,14,0.12);
  border-color: var(--amber-light);
}

.site-nav--light {
  background: rgba(250,248,244,0.94);
  border-bottom-color: var(--border);
}

.site-nav--light .site-nav__brand {
  color: var(--ink);
}

.site-nav--light .site-nav__brand span {
  color: var(--amber);
}

.site-nav--light .site-nav__links a {
  color: var(--ink-muted);
}

.site-nav--light .site-nav__links a:hover {
  color: var(--ink);
}

.site-nav--light .site-nav__links a[aria-current="page"] {
  color: var(--amber-deep);
}

.site-nav--light .site-nav__cta {
  border-color: rgba(200,118,14,0.42);
  color: var(--amber-deep) !important;
}

.site-nav--light .site-nav__cta:hover {
  background: rgba(200,118,14,0.10);
  border-color: var(--amber);
  color: var(--amber-deep) !important;
}

.site-page-header {
  background: var(--night);
  padding: calc(var(--site-nav-height) + 64px) 2.5rem 76px;
  border-bottom: 1px solid var(--border-night);
}

.site-page-header__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-overline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1rem;
}

.site-page-header .site-overline {
  color: var(--amber-light);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-deep);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.arrow-link:hover {
  color: var(--amber);
}

.arrow-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.arrow-link:hover svg {
  transform: translateX(3px);
}

.arrow-link--underline {
  border-bottom: 1px solid rgba(168,92,8,0.3);
  padding-bottom: 2px;
}

.arrow-link--underline:hover {
  border-color: var(--amber);
}

.arrow-link--back:hover svg {
  transform: translateX(-3px);
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.95);
}

.post-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
}

.post-tag--design { background: var(--amber-pale); color: var(--amber-deep); }
.post-tag--mechanism { background: var(--green-pale); color: var(--green); }
.post-tag--economics { background: var(--blue-pale); color: var(--blue); }
.post-tag--finance { background: var(--amber-pale); color: var(--amber-deep); }
.post-tag--policy { background: rgba(15,13,10,0.06); color: var(--ink-muted); }
.post-tag--strategy { background: var(--violet-pale); color: var(--violet); }

.post-date,
.post-read {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-ghost);
}

.post-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-ghost);
  opacity: 0.5;
  flex-shrink: 0;
}

.post-read-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  transition: opacity 0.18s;
}

.post-read-link:hover {
  opacity: 0.7;
}

.post-read-link::after {
  content: " \2192";
}

.load-more-wrap {
  padding: 52px 0 88px;
  text-align: center;
}

.load-more-btn {
  background: none;
  border: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 13px 28px;
  transition: border-color 0.18s, color 0.18s;
}

.load-more-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.site-title {
  font-family: var(--ff-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.site-title em,
.site-section-title em {
  font-style: italic;
  color: rgba(15,13,10,0.55);
}

.site-page-header .site-title em {
  color: rgba(255,255,255,0.52);
}

.site-dek {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  line-height: 1.65;
}

.site-section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.site-section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 620px;
}

.site-footer {
  background: var(--night);
  color: rgba(255,255,255,0.4);
  padding: 0 var(--site-gutter);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer__inner {
  max-width: var(--site-shell-max);
  width: 100%;
  margin: 0 auto;
  padding: 2.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  text-align: center;
}

.site-footer__item {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
}

.site-footer__item + .site-footer__item::before {
  content: "|";
  margin: 0 0.8rem;
  color: rgba(255,255,255,0.18);
}

.site-footer__brand {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.site-footer a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}

.site-footer a:hover {
  color: rgba(255,255,255,0.75);
}

.privacy-page {
  background: var(--paper-warm);
}

.strip {
  background: var(--amber-pale);
  border-top: 1px solid rgba(200,118,14,0.15);
  border-bottom: 1px solid rgba(200,118,14,0.15);
  padding: 1rem 2.5rem;
}

.strip-inner {
  max-width: var(--site-content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.strip-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-right: 0.5rem;
  white-space: nowrap;
}

.strip-text {
  font-size: 14px;
  color: var(--amber-deep);
  font-weight: 300;
}

.strip-text strong {
  color: var(--amber-deep);
  font-weight: 500;
}

.strip-text sub {
  font-size: 0.72em;
  line-height: 0;
}

.privacy-main {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--border-light);
}

.privacy-main__inner {
  max-width: var(--site-content-max);
  margin: 0 auto;
  padding: 84px var(--site-gutter) 104px;
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}

.privacy-sidebar__divider {
  height: 1px;
  background: var(--border);
  margin: 1.75rem 0;
}

.privacy-sidebar__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.privacy-sidebar__label::before {
  content: "";
  width: 3px;
  height: 13px;
  border-radius: 2px;
  background: var(--amber);
}

.privacy-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.privacy-sidebar__nav a {
  display: block;
  border-radius: 4px;
  padding: 7px 9px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.privacy-sidebar__nav a:hover {
  background: rgba(15,13,10,0.04);
  color: var(--ink);
}

.privacy-content {
  min-width: 0;
}

.privacy-section {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
}

.privacy-section__index {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.privacy-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.privacy-section p,
.privacy-section li {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.75;
}

.privacy-checklist {
  list-style: none;
  margin-top: 1.25rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--border-light);
  display: grid;
  gap: 1px;
}

.privacy-checklist li {
  position: relative;
  background: var(--white);
  padding: 0.72rem 1rem 0.72rem 2.15rem;
}

.privacy-checklist li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.32rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.privacy-section a {
  color: var(--amber-deep);
  text-decoration-color: rgba(168,92,8,0.35);
  text-underline-offset: 3px;
}

.privacy-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-ghost);
  line-height: 1.65;
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.resources-page {
  background: var(--night);
}

.resources-shell {
  background: var(--night);
}

.resources-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--site-nav-height) + 72px) var(--site-gutter) 64px;
  background: var(--night);
  border-bottom: 1px solid var(--border-night);
}

.resources-hero::before,
.resources-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.resources-hero::before {
  right: -80px;
  top: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,118,14,0.06), transparent 70%);
}

.resources-hero::after {
  left: -60px;
  bottom: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,110,79,0.05), transparent 70%);
}

.resources-hero__inner,
.resources-section-inner,
.resources-contact__inner {
  max-width: var(--site-content-max);
  margin: 0 auto;
}

.resources-hero__inner {
  position: relative;
  z-index: 1;
}

.resources-overline {
  color: var(--amber-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.resources-hero__title {
  max-width: 720px;
  color: rgba(255,255,255,0.9);
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.04;
  margin-bottom: 1.25rem;
}

.resources-hero__title em {
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.resources-hero__sub {
  max-width: 560px;
  color: rgba(255,255,255,0.45);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.resources-ref {
  padding: 72px var(--site-gutter) 80px;
  background: var(--night);
}

.resources-section-title {
  max-width: 720px;
  color: rgba(255,255,255,0.9);
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.resources-section-title em {
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.resources-section-sub {
  max-width: 520px;
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.resource-subgroup {
  margin-top: 2rem;
}

.resource-subgroup:first-of-type {
  margin-top: 0;
}

.resource-sub-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.resource-sub-label__text {
  color: rgba(255,255,255,0.28);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.resource-sub-label__line {
  flex: 1;
  height: 1px;
  background: var(--border-night);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--border-night);
  border-radius: 10px;
  gap: 1px;
  overflow: hidden;
}

.resource-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  min-height: 118px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.03);
  color: inherit;
  text-decoration: none;
  padding: 1.5rem 1.75rem;
  transition: background 160ms ease;
}

.resource-card:hover {
  background: rgba(255,255,255,0.055);
}

.resource-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.resource-card__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-icon-amber {
  background: rgba(200,118,14,0.12);
  color: var(--amber-light);
}

.resource-icon-green {
  background: rgba(42,110,79,0.12);
  color: var(--green-light);
}

.resource-icon-blue {
  background: rgba(58,110,168,0.15);
  color: var(--blue-light);
}

.resource-icon-violet {
  background: rgba(107,79,168,0.15);
  color: var(--violet-light);
}

.resource-card__body {
  display: block;
  min-width: 0;
}

.resource-card__title {
  color: rgba(255,255,255,0.82);
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 3px;
}

.resource-card__desc {
  color: rgba(255,255,255,0.38);
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}

.resources-contact {
  background: var(--night-mid);
  border-top: 1px solid var(--border-night);
  padding: 56px var(--site-gutter);
}

.resources-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.resources-contact h2 {
  color: rgba(255,255,255,0.82);
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.resources-contact p {
  max-width: 480px;
  color: rgba(255,255,255,0.38);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.resources-contact a {
  flex-shrink: 0;
  color: var(--amber-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(200,118,14,0.3);
  border-radius: 4px;
  padding: 10px 20px;
  white-space: nowrap;
  transition: border-color 0.18s, color 0.18s;
}

.resources-contact a:hover {
  border-color: rgba(200,118,14,0.6);
}

.faq-main {
  background: var(--paper-warm);
  padding: 96px 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.faq-main__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
}

.faq-main__head {
  position: sticky;
  top: 88px;
}

.faq-main__head .site-section-body {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq-item {
  background: var(--white);
  overflow: hidden;
}

.faq-page .faq-item[id] {
  scroll-margin-top: calc(var(--site-nav-height) + 92px);
}

.faq-page .faq-item.is-linked {
  box-shadow: inset 3px 0 0 var(--amber);
}

.faq-item.is-hidden {
  display: none;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}

.faq-trigger:hover {
  background: rgba(15,13,10,0.025);
}

.faq-trigger[aria-expanded="true"] {
  color: var(--amber-deep);
  background: var(--amber-pale);
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.15s, border-color 0.15s;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--amber);
  border-color: var(--amber);
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--ink-ghost);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.faq-trigger[aria-expanded="true"] .faq-icon svg {
  stroke: var(--white);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-panel.is-open {
  max-height: 900px;
}

.faq-panel__inner {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
}

.faq-panel__inner p + p {
  margin-top: 0.75rem;
}

.faq-search {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--border);
  padding: 20px 2.5rem;
  position: sticky;
  top: var(--site-nav-height);
  z-index: 80;
}

.faq-search__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: center;
}

.faq-search__wrap {
  position: relative;
}

.faq-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.faq-search__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink-ghost);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-search__input {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  padding: 11px 42px 11px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.faq-search__input:focus {
  border-color: rgba(200,118,14,0.5);
  box-shadow: 0 0 0 3px rgba(200,118,14,0.1);
}

.faq-search__input::-webkit-search-cancel-button,
.faq-search__input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.faq-search__clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink-ghost);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.faq-search__clear.is-visible {
  display: flex;
}

.faq-search__clear svg {
  width: 9px;
  height: 9px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.faq-search__meta {
  font-size: 12px;
  color: var(--ink-ghost);
  font-weight: 300;
  margin-top: 7px;
  min-height: 16px;
  line-height: 1;
}

.faq-page {
  background: var(--paper);
}

.faq-page__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 2.5rem 96px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 160px;
  padding-top: 4px;
}

.faq-sidebar__divider {
  height: 1px;
  background: var(--border-light);
  margin: 1rem 0;
}

.faq-sidebar__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.faq-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-sidebar__link {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-ghost);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s, opacity 0.15s;
  line-height: 1.35;
  display: block;
}

.faq-sidebar__link:hover {
  color: var(--ink-muted);
  background: rgba(15,13,10,0.04);
}

.faq-sidebar__link.is-active {
  color: var(--amber-deep);
  background: var(--amber-pale);
  border-left-color: var(--amber);
  font-weight: 500;
}

.faq-sidebar__link.is-dimmed {
  opacity: 0.35;
}

.faq-section {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 60px;
}

.faq-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-section.is-hidden {
  display: none;
}

.faq-section__header {
  margin-bottom: 2rem;
}

.faq-section__title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.faq-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--amber-pale);
  color: var(--amber-deep);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  margin-left: 0.5rem;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.faq-empty {
  display: none;
  padding: 56px 0;
  text-align: center;
  color: var(--ink-ghost);
  font-size: 15px;
  font-weight: 300;
}

.faq-empty.is-visible {
  display: block;
}

.faq-empty strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

mark {
  background: rgba(200,118,14,0.18);
  color: var(--amber-deep);
  border-radius: 2px;
  padding: 0 1px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .site-nav {
    padding: 0 1.5rem;
  }

  .site-nav__links {
    display: none;
  }

  .site-nav__mobile {
    display: block;
  }

  .site-page-header {
    padding: calc(var(--site-nav-height) + 48px) 1.5rem 56px;
  }

  .site-footer {
    padding: 0 1.5rem;
  }

  .site-footer__inner {
    padding: 2rem 0;
    flex-direction: column;
    gap: 0.35rem;
  }

  .site-footer__item + .site-footer__item::before {
    content: none;
  }

  .privacy-main__inner {
    padding: 48px 1.5rem 72px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .privacy-sidebar {
    display: none;
  }

  .privacy-section {
    padding: 1.75rem 0;
  }

  .privacy-intro {
    padding: 1.5rem;
  }

  .resources-hero {
    padding: calc(var(--site-nav-height) + 64px) 1.5rem 56px;
  }

  .resources-ref,
  .resources-contact {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .resources-contact__inner {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .faq-main {
    padding: 64px 1.5rem;
  }

  .faq-main__inner,
  .faq-page__body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-main__head,
  .faq-sidebar {
    position: static;
  }

  .faq-search {
    top: var(--site-nav-height);
    padding: 16px 1.5rem;
  }

  .faq-search__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-search__spacer,
  .faq-sidebar {
    display: none;
  }

  .faq-page__body {
    padding: 48px 1.5rem 72px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    padding: 0 1rem;
  }

  .site-footer {
    padding: 0 1rem;
  }

  .privacy-main__inner {
    padding: 48px 1rem 72px;
  }

  .resources-hero {
    padding: calc(var(--site-nav-height) + 44px) 1rem 48px;
  }

  .resources-ref,
  .resources-contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .resource-card {
    min-height: auto;
    padding: 1.2rem;
  }

  .resources-contact a {
    width: 100%;
    text-align: center;
  }

  .faq-page__body {
    padding: 48px 1rem 72px;
  }

  .site-page-header {
    padding: calc(var(--site-nav-height) + 40px) 1rem 48px;
  }

  .privacy-section {
    padding: 1.6rem 0;
  }

  .faq-trigger {
    padding: 1rem 1.1rem;
  }

  .faq-panel__inner {
    padding: 1rem 1.1rem 1.25rem;
  }
}
