@font-face {
  font-family: "Inconsolata";
  src: url("fonts/inconsolata/Inconsolata-variable.ttf") format("truetype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("fonts/futura-pt/FuturaPT-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT";
  src: url("fonts/futura-pt/FuturaPT-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #171817;
  --ink: #f2f0ed;
  --muted: #d5d1ca;
  --label-bg: rgba(235, 235, 232, 0.9);
  --label-ink: #333432;
  --footer: #191a19;
  --footer-line: rgba(235, 235, 232, 0.52);
  --max-width: 1640px;
  --font-sans: "Futura PT", Futura, Avenir, "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: Inconsolata, "Courier New", Courier, ui-monospace, monospace;
  --heading-weight: 600;
  --heading-line-height: 1.2;
  --heading-letter-spacing: 0.05em;
  --paragraph-weight: 400;
  --paragraph-line-height: 1.3;
  --paragraph-letter-spacing: -0.02em;
  --label-letter-spacing: 0.05em;
  --hero-claim-width: 450px;
  --bio-copy-width: 450px;
  --content-left: clamp(22px, 10.5vw, 215px);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: var(--paragraph-weight);
  line-height: var(--paragraph-line-height);
  letter-spacing: var(--paragraph-letter-spacing);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  padding: 20px var(--content-left);
  background: transparent;
  pointer-events: none;
  transition: background-color 180ms ease, min-height 180ms ease, padding-block 180ms ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  padding-block: 22px;
  background: var(--bg);
}

.brand-link {
  color: inherit;
  pointer-events: auto;
}

.site-title {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.site-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
}

.home-body .site-title {
  color: var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: relative;
  pointer-events: auto;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: rgba(23, 24, 23, 0.72);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.menu-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2.5px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.is-menu-open .menu-toggle-line:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-line:nth-of-type(3) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle-line:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  padding: 16px 18px;
  background: var(--bg);
  border-top: 1px solid var(--footer-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-header.is-menu-open .site-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-menu a {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: var(--heading-line-height);
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
}

.site-menu a + a {
  margin-top: 12px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.82) 0%, rgba(15, 15, 14, 0.58) 31%, rgba(15, 15, 14, 0.08) 57%, rgba(15, 15, 14, 0.12) 100%),
    linear-gradient(180deg, rgba(15, 15, 14, 0.16) 0%, rgba(15, 15, 14, 0) 42%, rgba(15, 15, 14, 0.22) 100%),
    url("images/hero.jpg"),
    radial-gradient(circle at 72% 52%, #9b8f7d 0%, #57544b 36%, #262622 100%);
  background-position: center, center, center right, center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-inner {
  width: min(100%, var(--max-width));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(136px, 15vh, 190px) var(--content-left) clamp(70px, 9vh, 120px);
  display: grid;
  align-content: start;
  gap: clamp(42px, 40vh, 100px);
}

.hero-claim {
  /* H2-Breite: kleiner = engere Zeilen, groesser = breitere Zeilen. */
  max-width: var(--hero-claim-width);
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 1.72vw, 2.5rem);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

p,
h1,
h2 {
  margin-top: 0;
}

.bio-copy {
  /* Gesamter Bio-Textblock: kleiner = alle Absätze enger, groesser = alle Absätze breiter. */
  width: min(100%, var(--bio-copy-width));
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: var(--paragraph-weight);
  line-height: var(--paragraph-line-height);
  letter-spacing: var(--paragraph-letter-spacing);
}

.bio-copy p {
  margin: 0 0 17px;
}

.footer {
  position: relative;
  display: block;
  min-height: 178px;
  padding: 20px clamp(22px, 11.5vw, 238px) 18px;
  background: var(--footer);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 27px;
  background: var(--footer-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(140px, 0.45fr) minmax(220px, 0.55fr);
  gap: clamp(36px, 10vw, 160px);
}

.footer-block h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: var(--heading-line-height);
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
}

.footer-block p {
  margin: 0 0 24px;
}

.footer a,
.legal-nav a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-nav {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.legal-page {
  min-height: 100svh;
  padding: clamp(86px, 14vh, 132px) clamp(22px, 16.4vw, 290px) clamp(80px, 12vh, 140px);
  background: var(--footer);
  color: var(--ink);
}

.legal-content {
  max-width: 980px;
}

.legal-content .eyebrow {
  display: none;
}

.legal-content h1 {
  margin: 0 0 28px;
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 4.3vw, 4rem);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.legal-content h2 {
  margin-top: 38px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--paragraph-weight);
  line-height: var(--paragraph-line-height);
  letter-spacing: var(--paragraph-letter-spacing);
  text-transform: none;
}

.legal-content p {
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: var(--paragraph-line-height);
  letter-spacing: var(--paragraph-letter-spacing);
}

.notice {
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
}

.legal-section {
  margin: 0 0 46px;
}

.legal-wide {
  max-width: none;
}

.blog-index-page,
.article-page,
.speaking-page {
  min-height: 100svh;
  padding: clamp(120px, 18vh, 180px) var(--content-left) clamp(80px, 12vh, 140px);
  background: var(--bg);
  color: var(--ink);
}

.blog-index-hero,
.speaking-hero {
  max-width: 1180px;
  margin-bottom: clamp(34px, 7vw, 74px);
}

.page-kicker,
.blog-kicker,
.article-kicker,
.article-meta {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
}

.blog-index-hero h1,
.speaking-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(2.1rem, 4.1vw, 4rem);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.speaking-lead,
.speaking-section p,
.blog-card p,
.article-content p,
.article-content li,
.article-sources li {
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: var(--paragraph-line-height);
  letter-spacing: var(--paragraph-letter-spacing);
}

.speaking-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--ink);
}

.speaking-section {
  max-width: 1180px;
  padding: clamp(34px, 5.4vw, 64px) 0;
  border-top: 1px solid var(--footer-line);
}

.speaking-intro {
  max-width: 760px;
}

.speaking-intro p {
  margin: 0 0 20px;
}

.speaking-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(340px, 1.25fr);
  gap: clamp(32px, 8vw, 120px);
}

.speaking-section h2,
.speaking-list h3,
.speaking-cta h2 {
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.speaking-section h2,
.speaking-cta h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
}

.speaking-list article {
  padding: 0 0 26px;
  margin: 0 0 26px;
  border-bottom: 1px solid rgba(235, 235, 232, 0.28);
}

.speaking-list article:last-child {
  margin-bottom: 0;
}

.speaking-list h3 {
  margin: 0 0 12px;
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
}

.speaking-list p,
.speaking-cta p {
  margin: 0;
}

.speaking-list.compact article {
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.speaking-cta {
  max-width: 760px;
  padding-bottom: 0;
}

.speaking-cta p {
  margin: 18px 0 20px;
}

.text-link {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px 10px;
  border: 1px solid var(--ink);
  color: var(--bg);
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.button-link:hover,
.button-link:focus-visible {
  color: var(--ink);
  background: transparent;
}

.button-link.secondary {
  color: var(--ink);
  background: transparent;
}

.service-page {
  width: 100%;
  overflow-x: clip;
  min-height: 100svh;
  padding: clamp(120px, 18vh, 180px) var(--content-left) clamp(80px, 12vh, 140px);
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
}

.service-hero,
.service-section,
.service-toc {
  max-width: 1180px;
}

.service-hero {
  margin-bottom: clamp(42px, 8vw, 92px);
}

.service-hero h1,
.service-section h2,
.service-cta h2 {
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.service-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 4.9rem);
}

.service-lead {
  max-width: 760px;
  margin-top: clamp(28px, 4.2vw, 48px);
}

.service-lead p,
.service-copy p,
.service-copy li,
.service-list p,
.service-check-grid p,
.section-lead,
.service-contact-note {
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: var(--paragraph-line-height);
  letter-spacing: 0;
}

.service-lead p,
.service-copy p,
.service-list p,
.service-check-grid p {
  margin: 0 0 20px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 30px;
}

.service-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  text-align: center;
  padding: 22px 0 30px;
  margin-bottom: clamp(24px, 5vw, 62px);
  border-top: 1px solid var(--footer-line);
}

.service-toc .page-kicker {
  width: 100%;
  margin-bottom: 4px;
}

.service-toc a {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.service-section {
  padding: clamp(34px, 5.4vw, 64px) 0;
  border-top: 1px solid var(--footer-line);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(340px, 1.28fr);
  gap: clamp(32px, 8vw, 120px);
}

.service-section h2,
.service-cta h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
}

.service-copy ul {
  margin: 0 0 22px;
  padding-left: 1.15rem;
}

.service-copy li {
  margin-bottom: 8px;
}

.service-copy a,
.service-contact-note a,
.service-list a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-copy blockquote {
  margin: 28px 0 0;
  padding: 0 0 0 22px;
  border-left: 1px solid var(--footer-line);
  color: var(--ink);
  font-size: clamp(1.12rem, 1.45vw, 1.45rem);
  line-height: var(--paragraph-line-height);
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  margin: 18px 0 34px;
  color: var(--ink);
}

.service-list article,
.service-check-grid article {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid rgba(235, 235, 232, 0.28);
}

.service-list article:last-child,
.service-check-grid article:last-child {
  margin-bottom: 0;
}

.service-list.compact article {
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.service-list h3,
.service-check-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.service-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px clamp(24px, 4vw, 46px);
}

.service-check-grid article {
  margin: 0;
}

.service-cta {
  max-width: 820px;
  padding-bottom: 0;
}

.service-cta p {
  margin: 18px 0 0;
}

.service-contact-note {
  margin-top: 30px;
}

.event-source-note {
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(235, 235, 232, 0.28);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: var(--paragraph-line-height);
}

.event-source-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
}

.event-source-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.event-table-wrap {
  overflow-x: auto;
  max-width: 100%;
}

.event-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  line-height: var(--paragraph-line-height);
}

.event-table th,
.event-table td {
  padding: 16px 14px 16px 0;
  border-bottom: 1px solid rgba(235, 235, 232, 0.28);
  text-align: left;
  vertical-align: top;
}

.event-table th {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
}

.event-table td:first-child,
.event-table td:nth-child(2) {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.event-table td:first-child {
  width: 16%;
  min-width: 116px;
}

.event-table td:nth-child(2) {
  width: 22%;
}

.event-table td:nth-child(3) {
  width: 38%;
}

.event-table td:nth-child(4) {
  width: 14%;
}

.event-table td:nth-child(5) {
  width: 10%;
}

.event-table a {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.project-list {
  display: grid;
  gap: 0;
}

.project-case {
  margin: 0;
  border-top: 1px solid rgba(235, 235, 232, 0.28);
}

.project-case:last-child {
  border-bottom: 1px solid rgba(235, 235, 232, 0.28);
}

.project-case summary {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.project-case summary::-webkit-details-marker {
  display: none;
}

.project-case summary::after {
  content: "+";
  grid-column: 3;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.project-case[open] summary::after {
  content: "-";
}

.project-meta {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
}

.project-case summary span:last-child {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(1.12rem, 1.55vw, 1.55rem);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.project-case-body {
  padding: 0 0 30px;
}

.project-case dl {
  display: grid;
  gap: 14px;
  margin: 0 0 18px;
}

.project-case dl div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
}

.project-case dt {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
}

.project-case dd,
.project-case p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: var(--paragraph-line-height);
}

.project-case a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quick-check-page {
  padding-bottom: clamp(80px, 12vh, 140px);
}

.quick-check-form {
  width: 100%;
  max-width: 1180px;
}

.quick-check-intake,
.quick-check-dimension,
.quick-check-submit,
.quick-check-result,
.quick-check-error {
  padding: clamp(28px, 4.2vw, 48px) 0;
  border-top: 1px solid var(--footer-line);
}

.quick-check-intake h2,
.quick-check-result h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.quick-check-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  max-width: 920px;
}

.quick-check-fields label,
.quick-check-consent,
.quick-check-question p,
.quick-check-question small,
.quick-check-submit p,
.quick-check-result p,
.quick-check-result li,
.quick-check-error p {
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: var(--paragraph-line-height);
  letter-spacing: 0;
}

.quick-check-fields label {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.quick-check-field-wide {
  grid-column: 1 / -1;
}

.quick-check-fields input,
.quick-check-fields select,
.quick-check-fields textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(235, 235, 232, 0.36);
  border-radius: 0;
  padding: 10px 12px;
  color: var(--ink);
  background-color: #171817;
  font: inherit;
  letter-spacing: 0;
  color-scheme: dark;
}

.quick-check-fields textarea {
  resize: vertical;
  min-height: 120px;
}

.quick-check-fields select {
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  appearance: none;
}

.quick-check-fields option {
  color: var(--ink);
  background-color: #171817;
}

.quick-check-fields input:focus,
.quick-check-fields select:focus,
.quick-check-fields textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.quick-check-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quick-check-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 920px;
  margin-top: 20px;
}

.quick-check-consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.quick-check-dimension {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--footer-line);
}

.quick-check-dimension-header {
  display: grid;
  width: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 0;
  padding: clamp(22px, 3.4vw, 36px) 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  min-width: 0;
}

.quick-check-dimension-title {
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 1.8vw, 1.85rem);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.quick-check-dimension-number,
.quick-check-dimension-status {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: var(--label-letter-spacing);
  line-height: 1.2;
  text-transform: uppercase;
}

.quick-check-dimension-number {
  min-width: 2.2ch;
}

.quick-check-dimension-status::after {
  content: "+";
  display: inline-block;
  margin-left: 10px;
  color: var(--ink);
}

.quick-check-dimension.is-active .quick-check-dimension-status::after {
  content: "-";
}

.quick-check-dimension.is-complete:not(.is-active) .quick-check-dimension-status {
  color: var(--ink);
}

.quick-check-dimension-body {
  display: none;
  padding: 0 0 clamp(30px, 4vw, 46px);
}

.quick-check-dimension.is-active .quick-check-dimension-body {
  display: block;
}

.quick-check-question {
  width: 100%;
  max-width: 980px;
  padding: 22px 0 0;
}

.quick-check-question p {
  margin: 0 0 10px;
  color: var(--ink);
}

.quick-check-question small {
  display: block;
  margin: -2px 0 14px;
}

.quick-check-options {
  display: grid;
  gap: 10px;
}

.quick-check-options label {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0;
}

.quick-check-options input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 1px;
}

.quick-check-next {
  margin-top: 24px;
}

.quick-check-next:disabled {
  color: var(--muted);
  border-color: rgba(235, 235, 232, 0.22);
  background: transparent;
}

.quick-check-submit.is-locked {
  display: none;
}

.quick-check-submit p,
.quick-check-result p,
.quick-check-error p {
  max-width: 760px;
  margin: 0 0 20px;
}

.quick-check-result {
  max-width: 920px;
}

.quick-check-result ul {
  margin: 0 0 22px;
  padding-left: 1.15rem;
}

.quick-check-error {
  max-width: 760px;
}

.guide-form-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: var(--paragraph-line-height);
}

.is-guide-modal-open {
  overflow: hidden;
}

.guide-download-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.guide-download-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 10, 0.82);
}

.guide-download-modal-panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid rgba(235, 235, 232, 0.28);
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
  background: #101110;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.guide-download-modal-panel:focus {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.guide-download-modal-panel h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.guide-download-modal-panel p {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: var(--paragraph-line-height);
}

.guide-download-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.guide-download-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(235, 235, 232, 0.25);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.guide-download-modal-close:hover,
.guide-download-modal-close:focus-visible {
  color: var(--page-bg);
  background: var(--ink);
  outline: none;
}

.quick-check-form.is-complete {
  opacity: 0.72;
}

.button-link:disabled {
  cursor: wait;
  opacity: 0.65;
}

.blog-list {
  display: grid;
  max-width: 1180px;
  gap: 0;
}

.blog-card {
  border-top: 1px solid var(--footer-line);
}

.blog-card:last-child {
  border-bottom: 1px solid var(--footer-line);
}

.blog-card a {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 7vw, 110px);
  padding: 28px 0 30px;
}

.blog-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 1.6vw, 1.85rem);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.blog-card time {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
}

.blog-card p {
  margin: 0;
}

.blog-empty {
  color: var(--muted);
}

.article-content {
  max-width: 820px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-sources h2 {
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letter-spacing);
  text-transform: uppercase;
}

.article-content h1 {
  margin: 0 0 30px;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.article-content h2,
.article-sources h2 {
  margin: 56px 0 18px;
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
}

.article-content h3 {
  margin: 34px 0 12px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-bottom: 20px;
}

.article-content a,
.article-sources a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content .button-link {
  text-decoration: none;
}

.article-cta {
  margin: 34px 0 42px;
  padding: 24px 0 0;
  border-top: 1px solid var(--footer-line);
}

.article-cta.article-cta-subtle {
  margin-top: 36px;
}

.article-cta p {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--muted);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.article-accordion {
  border-top: 1px solid var(--footer-line);
}

.article-accordion:last-of-type {
  border-bottom: 1px solid var(--footer-line);
}

.article-accordion summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
}

.article-accordion summary::-webkit-details-marker {
  display: none;
}

.article-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.article-accordion[open] summary::after {
  content: "-";
}

.article-content .article-accordion h2 {
  margin: 0;
}

.article-accordion-body {
  padding: 0 0 34px;
}

.article-accordion-body > :last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(15, 15, 14, 0.86) 0%, rgba(15, 15, 14, 0.48) 70%, rgba(15, 15, 14, 0.26) 100%),
      linear-gradient(180deg, rgba(15, 15, 14, 0.16) 0%, rgba(15, 15, 14, 0) 42%, rgba(15, 15, 14, 0.4) 100%),
      url("images/hero.jpg"),
      radial-gradient(circle at 72% 52%, #9b8f7d 0%, #57544b 36%, #262622 100%);
    background-position: center, center, 62% center, center;
    background-size: cover;
  }

  .hero-inner {
    gap: clamp(40px, 32vh, 300px);
  }

  .footer {
    padding-right: clamp(22px, 6vw, 70px);
    padding-left: clamp(22px, 6vw, 70px);
  }

  .footer-grid {
    gap: 32px;
    grid-template-columns: 1fr 0.7fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --content-left: 20px;
  }

  .site-header {
    min-height: 76px;
    padding: 24px var(--content-left);
  }

  .site-header.is-scrolled {
    min-height: 64px;
    padding-block: 18px;
  }

  .hero {
    min-height: 100svh;
    background:
      linear-gradient(180deg, rgba(15, 15, 14, 0.65) 0%, rgba(15, 15, 14, 0.34) 42%, rgba(15, 15, 14, 0.78) 100%),
      url("images/hero.jpg"),
      radial-gradient(circle at 72% 42%, #8b8173 0%, #4c4942 42%, #242421 100%);
    background-position: center, 61% center, center;
    background-size: cover;
  }

  .hero-inner {
    min-height: 100svh;
    padding: 88px 18px 34px;
    gap: clamp(280px, 57vh, 520px);
  }

  .site-title {
    font-size: clamp(1.32rem, 7vw, 2rem);
  }

  .hero-claim {
    max-width: 94vw;
    font-size: clamp(1.25rem, 6.1vw, 1.95rem);
    line-height: var(--heading-line-height);
  }

  .bio-copy {
    width: auto;
    max-width: none;
    margin: 0 8px 0 2px;
    padding: 44px 44px 24px;
    background: rgba(24, 24, 23, 0.5);
    color: var(--ink);
    font-size: 1rem;
    line-height: var(--paragraph-line-height);
    backdrop-filter: blur(1px);
  }

  .bio-copy p {
    margin-bottom: 11px;
  }

  .footer {
    padding-bottom: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-block h2 {
    margin-bottom: 10px;
  }

  .footer-block p {
    margin-bottom: 10px;
  }

  .legal-nav {
    left: 22px;
    transform: none;
  }

  .legal-page {
    padding: 112px 22px 72px;
  }

  .blog-index-page,
  .article-page,
  .speaking-page,
  .service-page {
    padding: 112px 22px 72px;
  }

  .quick-check-page {
    position: relative;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    overflow-x: hidden;
    padding: 96px 18px 64px;
  }

  .quick-check-page .service-hero,
  .quick-check-page .service-section,
  .quick-check-page .quick-check-form,
  .quick-check-page .quick-check-intake,
  .quick-check-page .quick-check-fields,
  .quick-check-page .quick-check-dimension,
  .quick-check-page .quick-check-dimension-header,
  .quick-check-page .quick-check-dimension-body,
  .quick-check-page .quick-check-question,
  .quick-check-page .quick-check-options,
  .quick-check-page .quick-check-submit,
  .quick-check-page .quick-check-result,
  .quick-check-page .quick-check-error {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .quick-check-page .service-lead,
  .quick-check-page .service-copy {
    max-width: 100%;
    min-width: 0;
  }

  .quick-check-page .site-header {
    width: 100vw;
    max-width: 100vw;
  }

  .legal-content h1 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .legal-content p {
    font-size: 1rem;
  }

  .site-menu {
    right: 0;
  }

  .blog-card a {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0 26px;
  }

  .speaking-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-grid,
  .service-check-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-table {
    min-width: 0;
  }

  .event-table thead {
    display: none;
  }

  .event-table,
  .event-table tbody,
  .event-table tr,
  .event-table td {
    display: block;
    width: 100%;
  }

  .event-table tr {
    padding: 18px 0;
    border-bottom: 1px solid rgba(235, 235, 232, 0.28);
  }

  .event-table td {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px;
    padding: 0 0 10px;
    border-bottom: 0;
  }

  .event-table td::before {
    content: attr(data-label);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: var(--label-letter-spacing);
    text-transform: uppercase;
  }

  .event-table td:first-child,
  .event-table td:nth-child(2),
  .event-table td:nth-child(3),
  .event-table td:nth-child(4),
  .event-table td:nth-child(5) {
    width: 100%;
  }

  .project-case summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 14px;
    padding: 22px 0;
  }

  .project-case summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .project-case summary .project-meta {
    grid-column: 1;
    grid-row: 1;
  }

  .project-case summary span:last-child {
    grid-column: 1;
    grid-row: 2;
    padding-right: 8px;
  }

  .project-case dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-hero {
    margin-bottom: 34px;
  }

  .service-hero h1 {
    font-size: clamp(1.9rem, 9.8vw, 3rem);
  }

  .quick-check-page .service-hero {
    margin-bottom: 24px;
  }

  .quick-check-page .service-hero h1 {
    font-size: clamp(1.78rem, 8.8vw, 2.58rem);
  }

  .quick-check-page .service-lead {
    margin-top: 22px;
  }

  .quick-check-page .service-lead p,
  .quick-check-fields label,
  .quick-check-consent,
  .quick-check-question p,
  .quick-check-question small,
  .quick-check-submit p,
  .quick-check-result p,
  .quick-check-result li,
  .quick-check-error p {
    font-size: 1rem;
    line-height: 1.38;
  }

  .service-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-link {
    width: 100%;
  }

  .service-toc {
    display: grid;
    gap: 11px;
  }

  .quick-check-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quick-check-intake,
  .quick-check-submit,
  .quick-check-result,
  .quick-check-error {
    padding: 28px 0;
  }

  .quick-check-fields input,
  .quick-check-fields select,
  .quick-check-fields textarea {
    min-height: 48px;
    font-size: 1rem;
  }

  .quick-check-consent {
    gap: 10px;
    margin-top: 16px;
  }

  .quick-check-options label {
    min-height: 48px;
    padding: 10px 0;
    line-height: 1.38;
  }

  .quick-check-dimension-header {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 22px 0;
  }

  .quick-check-dimension-number {
    grid-column: 1;
    grid-row: 1;
  }

  .quick-check-dimension-title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: clamp(1.12rem, 6vw, 1.48rem);
    line-height: 1.12;
  }

  .quick-check-dimension-status {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .quick-check-dimension-body {
    padding-bottom: 30px;
  }

  .quick-check-question {
    padding-top: 18px;
  }

  .quick-check-question p {
    margin-bottom: 12px;
  }

  .quick-check-next {
    margin-top: 20px;
  }

  .speaking-hero {
    margin-bottom: 28px;
  }

  .speaking-lead {
    margin-top: 22px;
  }

  .legal-section {
    margin-bottom: 34px;
  }
}

@media (max-width: 390px) {
  .hero-inner {
    padding-top: 84px;
    gap: 280px;
  }

  .site-title,
  .hero-claim {
    font-size: 1.34rem;
  }

  .bio-copy {
    margin-right: 0;
    padding: 34px 32px 22px;
    font-size: 0.92rem;
  }
}
