:root {
  --ivory: #f5efe6;
  --bone: #ebe2d4;
  --cream: #fbf7ef;
  --charcoal: #24221f;
  --espresso: #3a3028;
  --muted: #736b60;
  --olive: #4b5142;
  --accent: #806044;
  --line: rgba(58, 48, 40, 0.18);

  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;

  --container: 1160px;
  --section: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 239, 230, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

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

.header-link {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.header-link:hover {
  background: var(--bone);
}

.hero {
  padding: 84px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: end;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--bone);
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-text {
  max-width: 760px;
  margin-top: 28px;
  color: var(--espresso);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.button.primary {
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  color: var(--cream);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--charcoal);
}

.button.secondary:hover,
.button.primary:hover,
.final-button:hover {
  transform: translateY(-1px);
}

.hero-image-wrap,
.fund-image-wrap,
.platform-image-wrap,
.themes-images {
  overflow: hidden;
  border-radius: 28px;
  background: var(--bone);
  box-shadow: 0 24px 80px rgba(36, 34, 31, 0.1);
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  height: 620px;
  object-fit: cover;
  object-position: center;
}

.image-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(251, 247, 239, 0.42);
  border-radius: 16px;
  background: rgba(36, 34, 31, 0.56);
  color: var(--cream);
  font-size: 0.86rem;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.section {
  padding: var(--section) 0;
}

.muted {
  background: var(--bone);
}

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

.dark h2,
.dark h3 {
  color: var(--cream);
}

.dark p {
  color: rgba(251, 247, 239, 0.76);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.copy-block {
  display: grid;
  gap: 24px;
  color: var(--espresso);
  font-size: 1.06rem;
  line-height: 1.8;
}

.dark .copy-block {
  color: rgba(251, 247, 239, 0.78);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.info-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(251, 247, 239, 0.45);
}

.info-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.info-card h3 {
  margin-bottom: 14px;
}

.info-card p,
.principles p,
.theme-item p,
.fund-points p {
  color: var(--muted);
  font-size: 0.96rem;
}

.fund-section {
  background: var(--ivory);
}

.fund-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(251, 247, 239, 0.78), rgba(235, 226, 212, 0.52)),
    radial-gradient(circle at top right, rgba(75, 81, 66, 0.12), transparent 36%);
}

.fund-copy {
  display: grid;
  gap: 24px;
  color: var(--espresso);
  font-size: 1.06rem;
  line-height: 1.8;
}

.fund-copy .eyebrow {
  margin-bottom: -6px;
}

.fund-image {
  height: 620px;
  object-fit: cover;
  object-position: center;
}

.fund-points {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.fund-points div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.fund-points h3 {
  margin-bottom: 8px;
}

.fund-button {
  width: fit-content;
  margin-top: 10px;
}

.platform-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
}

.platform-image {
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.platform-copy {
  display: grid;
  gap: 24px;
  color: rgba(251, 247, 239, 0.78);
  font-size: 1.06rem;
  line-height: 1.8;
}

.platform-list {
  display: grid;
  gap: 0;
  margin-top: 6px;
}

.platform-list div {
  padding: 20px 0;
  border-top: 1px solid rgba(251, 247, 239, 0.22);
}

.platform-list h3 {
  margin-bottom: 8px;
}

.approach-box {
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(251, 247, 239, 0.42);
}

.approach-box > p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 24px;
  color: var(--espresso);
  font-size: 1.05rem;
  line-height: 1.8;
}

.principles {
  margin-top: 48px;
}

.principles div {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.principles h3 {
  margin-bottom: 10px;
}

.themes-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: start;
}

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

.theme-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.theme-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.themes-images {
  display: grid;
  gap: 18px;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.theme-image {
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(36, 34, 31, 0.08);
}

.theme-image-tall {
  height: 520px;
  object-position: center;
}

.theme-image-wide {
  height: 320px;
  object-position: center;
}

.final {
  padding-top: 70px;
}

.final-box {
  padding: 64px;
  border-radius: 30px;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.final-box h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--cream);
}

.final-box p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px auto 34px;
  color: rgba(251, 247, 239, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.final-button {
  background: var(--cream);
  color: var(--charcoal);
}

.footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner > p {
  max-width: 460px;
  text-align: right;
}

@media (max-width: 980px) {
  :root {
    --section: 72px;
  }

  .nav {
    display: none;
  }

  .hero-grid,
  .split,
  .three,
  .fund-grid,
  .platform-grid,
  .themes-grid,
  .theme-item {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-image,
  .fund-image,
  .platform-image {
    height: 460px;
  }

  .theme-image-tall,
  .theme-image-wide {
    height: 380px;
  }

  .info-card {
    min-height: auto;
  }

  .info-card span {
    margin-bottom: 28px;
  }

  .fund-grid,
  .approach-box {
    padding: 42px 32px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-inner > p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-link {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-image,
  .fund-image,
  .platform-image,
  .theme-image-tall,
  .theme-image-wide {
    height: 330px;
  }

  .image-note {
    position: static;
    border-radius: 0;
    background: var(--charcoal);
  }

  .fund-button {
    width: 100%;
  }

  .approach-box,
  .fund-grid,
  .final-box {
    padding: 32px 24px;
    border-radius: 22px;
  }
}