:root {
  --cream: #f5f1e8;
  --cream-dark: #ede8dc;
  --sand: #c8bfa6;
  --forest: #1b3d2f;
  --forest-dark: #0d1f15;
  --earth: #c5963a;
  --earth-dark: #9c7220;
  --sage: #5a7a6c;
  --white: #ffffff;
  --max: 1280px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--forest-dark);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: "Noto Naskh Arabic", "Geeza Pro", "Tahoma", serif;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--earth);
  color: var(--forest-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(27, 61, 47, .16);
  background: rgba(245, 241, 232, .94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
}

.brand strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.brand span {
  color: var(--sage);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav a {
  color: var(--forest-dark);
  text-decoration: none;
}

.nav a:hover {
  color: var(--earth-dark);
}

.lang {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--sand);
  border-radius: 999px;
}

.lang a {
  min-width: 38px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.lang a[aria-current="page"] {
  background: var(--forest);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--forest-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 36%;
  opacity: .62;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 21, .48);
  z-index: -1;
}

.hero-inner {
  display: grid;
  align-content: center;
  min-height: 760px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 32px 64px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--earth);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-title,
.claim h3,
.venture-name,
.family-title,
.cta-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--cream);
  font-size: 72px;
  line-height: 1;
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(245, 241, 232, .9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.18;
}

.hero-lede em,
.accent {
  color: var(--earth);
  font-style: italic;
}

.hero-sub {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(245, 241, 232, .78);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--cream);
  border-radius: 999px;
  padding: 13px 20px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.button.primary {
  background: var(--cream);
  color: var(--forest);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 56px;
  color: rgba(245, 241, 232, .58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section {
  padding: 112px 32px;
}

.section.dark {
  background: var(--forest-dark);
  color: var(--cream);
}

.section.alt {
  background: var(--cream-dark);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.8fr);
  gap: 72px;
}

.section-title {
  color: var(--forest);
  font-size: 52px;
  line-height: 1.12;
}

.dark .section-title,
.dark .claim h3 {
  color: var(--cream);
}

.section-lede {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--sage);
  font-size: 18px;
  line-height: 1.7;
}

.dark .section-lede {
  color: rgba(245, 241, 232, .72);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 64px;
  margin-top: 72px;
}

.claim {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
}

.claim-num {
  color: var(--earth);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-style: italic;
  line-height: 1;
}

.claim h3 {
  color: var(--forest);
  font-size: 30px;
  line-height: 1.22;
}

.claim p {
  margin: 14px 0 0;
  color: rgba(245, 241, 232, .72);
  line-height: 1.7;
}

.operating-copy {
  display: grid;
  gap: 18px;
  color: var(--forest-dark);
  font-size: 17px;
  line-height: 1.75;
}

.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-self: start;
}

.stage,
.venture,
.partner-card {
  border: 1px solid var(--sand);
  border-radius: 8px;
  background: var(--white);
}

.stage {
  padding: 28px;
}

.stage b {
  color: var(--earth-dark);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stage h3 {
  margin: 14px 0 8px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
}

.stage p {
  margin: 0;
  color: var(--sage);
}

.ventures-list {
  border-top: 1px solid var(--sand);
  margin-top: 56px;
}

.venture {
  display: grid;
  grid-template-columns: 64px minmax(180px, .8fr) minmax(150px, .7fr) minmax(0, 1.3fr) auto;
  gap: 28px;
  align-items: start;
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 30px 0;
  background: transparent;
  text-decoration: none;
}

.venture-num,
.venture-url {
  color: var(--sage);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.venture-name {
  color: var(--forest);
  font-size: 32px;
  font-style: italic;
  line-height: 1.12;
}

.venture-year {
  margin-top: 8px;
  color: var(--sage);
  font-size: 12px;
}

.status {
  display: inline-flex;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--earth-dark);
  font-size: 12px;
  font-weight: 700;
}

.venture-tag {
  margin-top: 10px;
  color: var(--sage);
  font-size: 13px;
}

.venture-desc {
  margin: 0;
  color: var(--forest-dark);
  line-height: 1.65;
}

.family-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}

.family-title {
  color: var(--forest);
  font-size: 56px;
  line-height: 1.14;
}

.family-kicker {
  margin: 18px 0 0;
  color: var(--earth-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  line-height: 1.42;
}

.family-text {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  color: var(--forest-dark);
  font-size: 17px;
  line-height: 1.75;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.photo-card {
  min-width: 210px;
  scroll-snap-align: start;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream-dark);
}

.photo-card.featured {
  grid-column: span 2;
  min-width: 320px;
}

.photo-card.featured img {
  aspect-ratio: 4 / 3;
}

.photo-card figcaption {
  margin-top: 8px;
  color: var(--sage);
  font-size: 13px;
}

.partner-grid,
.education-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.partner-card {
  padding: 28px;
}

.partner-card b {
  color: var(--earth);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
}

.partner-card h3 {
  margin: 18px 0 12px;
  color: var(--forest);
  font-size: 20px;
}

.partner-card p {
  margin: 0;
  color: var(--sage);
  line-height: 1.65;
}

.speaking-list {
  margin-top: 44px;
  border-top: 1px solid var(--sand);
}

.speaking-item {
  display: grid;
  grid-template-columns: 86px minmax(150px, .8fr) minmax(0, 1.4fr) minmax(100px, .5fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sand);
}

.speaking-item span {
  color: var(--sage);
  font-size: 13px;
}

.speaking-item b {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}

.cta {
  background: var(--forest);
  color: var(--cream);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.5fr);
  gap: 64px;
  align-items: center;
}

.cta-title {
  font-size: 64px;
  line-height: 1.1;
}

.cta p {
  max-width: 740px;
  color: rgba(245, 241, 232, .76);
  font-size: 18px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.site-footer {
  padding: 72px 32px 42px;
  background: var(--forest-dark);
  color: rgba(245, 241, 232, .72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-inner h2,
.footer-inner h3 {
  margin: 0 0 14px;
  color: var(--cream);
}

.footer-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
}

.footer-inner a {
  color: var(--cream);
  text-decoration: none;
}

.footer-inner ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 232, .16);
  color: rgba(245, 241, 232, .48);
  font-size: 13px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lede {
    font-size: 30px;
  }

  .section-grid,
  .family-layout,
  .cta-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .stage-grid,
  .partner-grid,
  .education-grid {
    grid-template-columns: 1fr;
  }

  .venture,
  .speaking-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .hero-inner,
  .section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand span {
    display: none;
  }

  .brand strong {
    font-size: 24px;
  }

  .lang a {
    min-width: 32px;
    padding: 7px 8px;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 25px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-title,
  .family-title {
    font-size: 40px;
  }

  .cta-title {
    font-size: 42px;
  }

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