:root {
  --ink: #13242b;
  --ink-soft: #405057;
  --paper: #f1efe9;
  --paper-deep: #e6e2d8;
  --white: #ffffff;
  --line: rgba(19, 36, 43, 0.18);
  --accent: #8b7554;
  --shell: 1240px;
  --display: "Grandview Display", "Grandview", Bahnschrift, "Arial Narrow", "Aptos Display", Arial, sans-serif;
  --body: "Aptos", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 72px), var(--shell)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
}
.brand img { width: 54px; height: auto; }
.brand span {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.action-link:hover,
.action-link:focus-visible,
.email-link:hover,
.email-link:focus-visible,
.legal-details a:hover,
.legal-details a:focus-visible { color: var(--accent); }
.hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.hero-inner {
  min-height: calc(100vh - 88px);
  min-height: calc(100svh - 88px);
  padding-block: clamp(80px, 11vh, 132px) 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
}
.hero-grid,
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(64px, 9vw, 150px);
  align-items: start;
}
.eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.045em;
}
h1 { max-width: 880px; font-size: clamp(58px, 7.4vw, 112px); line-height: 0.96; }
h2 { max-width: 760px; font-size: clamp(42px, 5.25vw, 76px); line-height: 1.02; }
.hero-copy { max-width: 510px; padding-top: 37px; }
.hero-copy p,
.section-copy p { margin: 0; color: var(--ink-soft); }
.hero-copy .lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.hero-copy p:not(.lead),
.section-copy p { font-size: 18px; line-height: 1.72; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.alethia-section {
  padding-block: clamp(96px, 12vw, 168px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.section-copy { max-width: 570px; padding-top: 43px; }
.action-link {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 36px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.action-link span { font-size: 16px; }
.contact-section {
  padding-block: clamp(92px, 11vw, 148px);
  background: var(--ink);
  color: var(--white);
}
.contact-section .eyebrow { color: #c7b796; }
.contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: end;
}
.contact-row h2 { max-width: 760px; }
.email-link {
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 27px);
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.site-footer {
  padding-block: 48px 34px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 12px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 32px;
}
.footer-top p { margin: 0; }
.footer-top strong { color: var(--ink); }
.footer-meta { text-align: right; white-space: nowrap; }
.legal-details { border-top: 1px solid var(--line); }
.legal-details summary {
  width: fit-content;
  padding-block: 18px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.035em;
  list-style-position: outside;
}
.legal-details summary::marker { color: var(--accent); }
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 72px;
  padding: 22px 0 32px;
  border-top: 1px solid var(--line);
}
.legal-grid section { max-width: 560px; }
.legal-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.legal-grid p { margin: 0 0 10px; }
.legal-grid a { color: var(--ink); text-underline-offset: 3px; }
.legal-grid code {
  padding: 1px 4px;
  background: var(--paper-deep);
  color: var(--ink);
  font-size: 0.94em;
}
.cookie-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 500;
  width: min(560px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 48px rgba(19, 36, 43, 0.28);
}
.cookie-notice[hidden] { display: none; }
.cookie-copy strong { font-family: var(--display); font-size: 16px; font-weight: 600; }
.cookie-copy p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.55;
}
.cookie-actions { display: flex; align-items: center; gap: 16px; }
.cookie-actions a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.cookie-actions button {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--white);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.cookie-actions button:hover,
.cookie-actions button:focus-visible { background: transparent; color: var(--white); }
.not-found {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--paper);
}
.not-found-inner { padding-block: 70px; }
.not-found .brand { margin-bottom: 110px; }
.not-found h1 { max-width: 860px; }
.not-found-copy { margin: 30px 0 0; color: var(--ink-soft); font-size: 18px; }
@media (max-width: 920px) {
  .hero-grid, .section-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy, .section-copy { max-width: 720px; padding-top: 0; }
  .contact-row { grid-template-columns: 1fr; gap: 42px; align-items: start; }
  .email-link { width: fit-content; }
}
@media (max-width: 720px) {
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  html { scroll-padding-top: 76px; }
  .header-inner { min-height: 76px; }
  .brand { gap: 11px; }
  .brand img { width: 47px; }
  .brand span { font-size: 15px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 11px; }
  .hero-inner { min-height: calc(100svh - 76px); padding-block: 72px 34px; gap: 70px; }
  h1 { font-size: clamp(50px, 15vw, 78px); }
  h2 { font-size: clamp(38px, 11.5vw, 58px); }
  .hero-copy p:not(.lead), .section-copy p { font-size: 16px; }
  .hero-tags { gap: 10px 20px; }
  .footer-top { display: grid; gap: 18px; }
  .footer-meta { text-align: left; }
  .legal-grid { grid-template-columns: 1fr; gap: 28px; }
  .cookie-notice {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }
  .cookie-actions { justify-content: space-between; }
}
@media (max-width: 430px) { .brand span { display: none; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
