:root {
  --bg: #f4efe6;
  --bg-soft: #efe7da;
  --surface: rgba(252, 248, 241, 0.82);
  --surface-strong: #fbf7ef;
  --ink: #14120f;
  --muted: #635d54;
  --line: #d8ccb9;
  --accent: #1f5f54;
  --accent-strong: #164840;
  --highlight: #c98d2f;
  --max-width: 1120px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 56px rgba(24, 18, 9, 0.08);
  --display-font: "Cormorant Garamond", "Iowan Old Style", "Apple Garamond", "Baskerville", serif;
  --body-font: "Manrope", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(900px 620px at 92% 0%, rgba(201, 141, 47, 0.17), transparent 64%),
    radial-gradient(800px 540px at 4% 12%, rgba(31, 95, 84, 0.14), transparent 66%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  line-height: 1.65;
}

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

p {
  margin: 0;
}

img {
  max-width: 100%;
}

.shell {
  width: min(100% - 2.6rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1.1rem 0;
  backdrop-filter: blur(12px);
  background: rgba(244, 239, 230, 0.78);
  border-bottom: 1px solid rgba(217, 205, 183, 0.6);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  letter-spacing: 0.01em;
}

.wordmark-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 18, 15, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
}

.wordmark-text {
  font-family: var(--display-font);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(20, 18, 15, 0.18);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border-radius: 11px;
  padding: 0.48rem 0.64rem;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.2rem 0;
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav a {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.44rem 0.72rem;
  transition: color 0.28s ease, background-color 0.28s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
}

.site-nav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 18, 15, 0.12);
}

main {
  padding: 2.2rem 0 4.8rem;
}

.hero {
  position: relative;
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.6rem, 4vw, 4.2rem);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.54) 100%),
    radial-gradient(circle at top right, rgba(31, 95, 84, 0.2), transparent 56%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: -7.4rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 18, 15, 0.12);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-kicker::before {
  content: "";
  width: 1.15rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--display-font);
  font-size: clamp(2.25rem, 5.5vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero p {
  margin-top: 1.18rem;
  max-width: 58ch;
  color: #2a261f;
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.74rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  padding: 0.72rem 1.16rem;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #f7f4ee;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-strong);
}

.btn-ghost {
  border-color: rgba(20, 18, 15, 0.2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

.metrics {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric {
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.82rem 0.96rem;
  background: rgba(255, 255, 255, 0.66);
}

.metric-value {
  display: block;
  font-family: var(--display-font);
  font-size: 1.55rem;
  line-height: 1.1;
}

.metric-label {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.section {
  margin-top: 4.2rem;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-eyebrow {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 3.4vw, 2.4rem);
  letter-spacing: -0.01em;
}

.section-intro {
  max-width: 70ch;
  color: #2f2a23;
}

.grid {
  display: grid;
  gap: 0.92rem;
}

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

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

.card {
  border: 1px solid rgba(20, 18, 15, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.16rem;
  background: var(--surface);
  backdrop-filter: blur(4px);
}

.card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.3rem;
  line-height: 1.2;
}

.card p {
  margin-top: 0.56rem;
  color: #383229;
}

.meta-line {
  margin-top: 0.92rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pill-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(20, 18, 15, 0.14);
  padding: 0.23rem 0.56rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #433d33;
  background: rgba(255, 255, 255, 0.7);
}

.timeline {
  display: grid;
  gap: 0.75rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed rgba(20, 18, 15, 0.18);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-date {
  min-width: 5.3rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.timeline-item h3 {
  margin: 0;
  font-size: 1.06rem;
  font-family: var(--body-font);
  letter-spacing: 0.01em;
}

.timeline-item p {
  margin-top: 0.28rem;
  color: #3b352c;
}

.page-header {
  margin-bottom: 2rem;
}

.page-header h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 0.98;
}

.page-header p {
  margin-top: 0.9rem;
  max-width: 64ch;
  color: #2f2a23;
}

.table-list {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.table-list th,
.table-list td {
  text-align: left;
  padding: 0.78rem 0.9rem;
  border-bottom: 1px solid rgba(20, 18, 15, 0.08);
  font-size: 0.93rem;
  vertical-align: top;
}

.table-list th {
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.table-list tr:last-child td {
  border-bottom: none;
}

.blockquote {
  border-left: 2px solid rgba(31, 95, 84, 0.3);
  margin: 1.1rem 0 0;
  padding-left: 1rem;
  color: #2b241c;
  font-family: var(--display-font);
  font-size: 1.18rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.1rem;
}

.panel {
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2.3vw, 1.6rem);
  background: var(--surface-strong);
  box-shadow: 0 10px 20px rgba(24, 18, 9, 0.06);
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.list {
  margin: 0;
  padding-left: 1.1rem;
}

.list li + li {
  margin-top: 0.42rem;
}

.cta-banner {
  margin-top: 3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 95, 84, 0.25);
  background:
    linear-gradient(110deg, rgba(31, 95, 84, 0.16), rgba(31, 95, 84, 0.06)),
    rgba(255, 255, 255, 0.76);
  padding: 1.3rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-banner strong {
  font-family: var(--display-font);
  font-size: 1.4rem;
  line-height: 1.1;
  display: block;
}

.note-list {
  display: grid;
  gap: 0.7rem;
}

.note-item {
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.9rem 0.95rem;
  background: rgba(255, 255, 255, 0.7);
}

.note-item h3 {
  margin: 0;
  font-family: var(--body-font);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.note-item p {
  margin-top: 0.38rem;
  color: #3e372d;
}

.contact-list {
  display: grid;
  gap: 0.44rem;
  margin-top: 1rem;
}

.contact-list a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  border-top: 1px solid rgba(20, 18, 15, 0.12);
  background: rgba(255, 255, 255, 0.54);
  padding: 1.7rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
  align-items: end;
}

.footer-title {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.3rem;
}

.footer-meta {
  margin-top: 0.38rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.56rem 0.72rem;
}

.footer-links a {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.66s ease, transform 0.66s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.pellucid-home {
  --home-bg: #ececee;
  --home-ink: #2b0f17;
  --home-accent: #3b6e79;
  margin: 0;
  color: var(--home-ink);
  background: var(--home-bg);
  font-family: var(--body-font);
}

body.pellucid-home .shell {
  width: min(100% - 3.4rem, 1680px);
}

body.pellucid-home main {
  padding: 0 0 3.2rem;
}

.pellucid-topbar {
  padding: 0.9rem 0 0;
}

.pellucid-topbar-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.pellucid-topbar-left,
.pellucid-topbar-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.pellucid-topbar-right {
  justify-content: flex-end;
}

.pellucid-topbar-left a,
.pellucid-topbar-right a {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--home-ink);
}

.pellucid-topbar-left a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.pellucid-topbar-brand {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--home-ink);
}

.pellucid-pill-link {
  border: 2px solid rgba(43, 15, 23, 0.7);
  padding: 0.38rem 1.1rem;
  border-radius: 999px;
}

.pellucid-main {
  min-height: calc(100vh - 4.5rem);
}

.pellucid-hero-block {
  margin-top: clamp(7rem, 20vh, 16rem);
  margin-bottom: clamp(6rem, 11vh, 9rem);
}

.pellucid-logo-lockup {
  display: flex;
  align-items: flex-end;
  gap: 0.9rem;
}

.pellucid-mark {
  position: relative;
  display: inline-block;
  width: clamp(68px, 8.4vw, 128px);
  height: clamp(90px, 11vw, 145px);
  margin-bottom: 0.42rem;
}

.pellucid-mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.72rem;
  width: 11px;
  height: 11px;
  border: 4px solid var(--home-ink);
  border-radius: 999px;
}

.pellucid-mark::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  top: 0.7rem;
  width: clamp(4px, 0.55vw, 6px);
  height: clamp(80px, 10vw, 120px);
  border-radius: 9px;
  background: var(--home-ink);
  transform: skewX(-19deg);
}

.pellucid-arc {
  position: absolute;
  left: 0;
  border-top: clamp(4px, 0.52vw, 7px) solid var(--home-ink);
  border-left: clamp(4px, 0.52vw, 7px) solid var(--home-ink);
  border-top-left-radius: 999px;
}

.pellucid-arc-one {
  top: clamp(28px, 3.4vw, 48px);
  width: clamp(36px, 4.5vw, 66px);
  height: clamp(36px, 4.5vw, 66px);
}

.pellucid-arc-two {
  top: clamp(20px, 2.8vw, 38px);
  width: clamp(50px, 6vw, 88px);
  height: clamp(50px, 6vw, 88px);
}

.pellucid-arc-three {
  top: clamp(13px, 2vw, 28px);
  width: clamp(64px, 7.8vw, 112px);
  height: clamp(64px, 7.8vw, 112px);
}

.pellucid-logo-lockup h1 {
  margin: 0;
  font-family: "Instrument Serif", "Cormorant Garamond", serif;
  font-size: clamp(5.2rem, 12vw, 11rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--home-ink);
}

.pellucid-announcements {
  max-width: 1280px;
}

.pellucid-announcements ol {
  margin: 0;
  padding-left: 2.6rem;
  font-size: clamp(1.5rem, 2.9vw, 3.25rem);
  line-height: 1.35;
  color: var(--home-ink);
}

.pellucid-announcements li + li {
  margin-top: 0.36rem;
}

.pellucid-announcements strong {
  font-weight: 700;
}

.pellucid-announcements em {
  font-style: italic;
  font-weight: 600;
}

.pellucid-announcements a {
  color: var(--home-accent);
  text-decoration: underline;
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.12em;
  font-weight: 600;
}

.pellucid-divider {
  margin: 1.6rem 0 2.4rem;
  border: none;
  border-top: 3px solid rgba(43, 15, 23, 0.85);
}

.pellucid-meta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.pellucid-meta-title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 600;
}

.pellucid-meta-subtitle {
  margin-top: 0.46rem;
  font-size: clamp(1.5rem, 2.35vw, 2.5rem);
  line-height: 1.3;
  font-style: italic;
}

.pellucid-meta-copyright {
  margin-top: 2.7rem;
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  font-weight: 600;
}

.pellucid-meta-links {
  text-align: right;
}

.pellucid-meta-heading {
  margin: 0;
  font-size: clamp(1.7rem, 2.3vw, 2.65rem);
  font-weight: 600;
}

.pellucid-meta-links p {
  margin-top: 0.38rem;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.pellucid-meta-links p + .pellucid-meta-heading {
  margin-top: 1.3rem;
}

.pellucid-meta-links a {
  color: var(--home-ink);
  font-weight: 700;
}

.pellucid-meta-links a:hover,
.pellucid-meta-links a:focus-visible {
  color: var(--home-accent);
}

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }

  body.pellucid-home .shell {
    width: min(100% - 2.4rem, 1200px);
  }

  .pellucid-topbar-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    justify-items: center;
  }

  .pellucid-topbar-right {
    justify-content: center;
  }

  .pellucid-hero-block {
    margin-top: 4.9rem;
    margin-bottom: 4.8rem;
  }

  .pellucid-logo-lockup {
    justify-content: center;
  }

  .pellucid-announcements {
    max-width: 100%;
  }

  .pellucid-meta-grid {
    grid-template-columns: 1fr;
    gap: 2.1rem;
  }

  .pellucid-meta-links {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 1.3rem;
    right: 1.3rem;
    top: calc(100% + 0.4rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    border-radius: 14px;
    border: 1px solid rgba(20, 18, 15, 0.14);
    background: rgba(250, 246, 239, 0.96);
    box-shadow: 0 14px 32px rgba(24, 18, 9, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 10px;
    font-size: 0.82rem;
    padding: 0.54rem 0.62rem;
  }

  main {
    padding-top: 1.5rem;
  }

  .hero {
    padding: 1.7rem 1.4rem;
  }

  .hero::after {
    width: 16rem;
    height: 16rem;
    right: -5.8rem;
    top: -5rem;
  }

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

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    margin-top: 3.3rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.22rem;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pellucid-topbar-left,
  .pellucid-topbar-right {
    gap: 1rem;
  }

  .pellucid-topbar-left a,
  .pellucid-topbar-right a {
    font-size: 1rem;
  }

  .pellucid-topbar-brand {
    font-size: 1.55rem;
  }

  .pellucid-pill-link {
    padding: 0.3rem 0.78rem;
  }

  .pellucid-hero-block {
    margin-top: 3rem;
    margin-bottom: 3.4rem;
  }

  .pellucid-announcements ol {
    padding-left: 1.6rem;
  }

  .pellucid-divider {
    margin: 1.25rem 0 1.7rem;
  }

  .pellucid-meta-copyright {
    margin-top: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
