:root {
  --bg: #f6f0e7;
  --bg-soft: #fbf8f3;
  --ink: #2f241b;
  --muted: #6f6258;
  --line: #dbcdbd;
  --brand: #8c6239;
  --brand-dark: #6d4b2c;
  --brand-soft: #efe3d3;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(62, 40, 18, 0.08);
  --radius: 20px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #faf5ee 0%, var(--bg) 100%);
  line-height: 1.65;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250, 245, 238, 0.82);
  border-bottom: 1px solid rgba(140, 98, 57, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
}

.brand-mark {
  width: 52px;
  height: 52px;
  color: var(--brand);
}

.brand-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav nav a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow,
.section-kicker,
.trust-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.06;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.25rem);
}

h3 {
  font-size: 1.6rem;
}

.lead,
.section-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 68ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(140, 98, 57, 0.26);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(62, 40, 18, 0.07);
}

.button.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fffaf2;
}

.hero-status {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-status div,
.hero-card,
.card,
.authority-card,
.fact {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(140, 98, 57, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-status div {
  padding: 1rem 1rem 1.1rem;
}

.hero-status span,
.fact span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 0.45rem;
}

.hero-status strong,
.fact strong {
  font-size: 1rem;
}

.hero-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(239,227,211,0.95) 100%);
}

.hero-card ul,
.checklist,
.authority-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.hero-card li,
.checklist li,
.authority-card li {
  margin: 0.55rem 0;
}

.trust-strip {
  padding: 0 0 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-grid > div {
  padding: 1.2rem 1.2rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(140, 98, 57, 0.12);
  background: var(--white);
}

.section {
  padding: 4.2rem 0;
}

.muted {
  background: rgba(255,255,255,0.45);
}

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

.cards {
  display: grid;
  gap: 1.2rem;
}

.cohort-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.cohort-section {
  background: rgba(251, 248, 243, 0.72);
}

.link-card {
  min-height: 100%;
}

.leadership-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(239,227,211,0.42) 100%);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.bio-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1.15rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(140, 98, 57, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bio-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bio-role {
  margin: 0 0 0.45rem;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bio-content p {
  color: var(--muted);
}

.bio-points {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.bio-points li {
  margin: 0.45rem 0;
}

.leadership-note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(140, 98, 57, 0.2);
  border-radius: 16px;
  background: rgba(255,255,255,0.68);
  color: var(--muted);
}

.link-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

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

.four-up {
  grid-template-columns: repeat(4, 1fr);
}

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

.product-grid .card {
  display: flex;
  flex-direction: column;
}

.product-link {
  margin-top: auto;
  padding-top: 0.8rem;
  font-weight: 700;
}

.product-link a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  word-break: break-word;
}

.card {
  padding: 1.5rem;
}

.card.accent {
  border-color: rgba(140, 98, 57, 0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(239,227,211,0.8) 100%);
}

.warning li::marker {
  color: #a25c3b;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(140, 98, 57, 0.14);
  background: var(--white);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--brand-soft);
  font-size: 0.92rem;
}

tr:last-child td {
  border-bottom: 0;
}

.dark {
  background: linear-gradient(180deg, #6f4a2d 0%, #4d341f 100%);
  color: #f8f2ea;
}

.light {
  color: #eed8bf;
}

.authority-block {
  align-items: start;
}

.authority-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.fact {
  padding: 1.3rem;
}

.site-footer {
  padding: 2.8rem 0 3rem;
  background: #241912;
  color: #f5ede4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.4rem;
}

.site-footer h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.site-footer p {
  color: rgba(245, 237, 228, 0.84);
}

.site-footer a {
  color: #f5ede4;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .leadership-grid,
  .three-up,
  .four-up,
  .two-up,
  .trust-grid,
  .facts-grid,
  .footer-grid,
  .hero-status {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .brand-text {
    font-size: 1.65rem;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .button {
    width: 100%;
  }

  .bio-card {
    grid-template-columns: 1fr;
  }
}



.contact-section {
  background: linear-gradient(180deg, rgba(251,248,243,0.82) 0%, rgba(239,227,211,0.58) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.contact-card {
  padding: 1.5rem;
  border: 1px solid rgba(140, 98, 57, 0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}

.contact-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card a,
.fact a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  word-break: break-word;
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
