:root {
  --ink: #18221d;
  --ink-soft: #536159;
  --muted: #76736a;
  --paper: #fbfaf6;
  --paper-cool: #eef4ef;
  --paper-warm: #f7f0e5;
  --surface: rgba(255, 255, 255, 0.78);
  --green: #2f7650;
  --green-deep: #173f2b;
  --clay: #c97355;
  --blue: #5e899d;
  --yellow: #e7c96b;
  --line: rgba(28, 46, 36, 0.13);
  --shadow: 0 22px 70px rgba(28, 43, 34, 0.12);
  --shadow-soft: 0 14px 38px rgba(28, 43, 34, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    linear-gradient(135deg, rgba(238, 244, 239, 0.95), rgba(251, 250, 246, 0.82) 42%, rgba(247, 240, 229, 0.86)),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(47, 118, 80, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(47, 118, 80, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(47, 118, 80, 0.34);
  outline-offset: 4px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green-deep);
  font-weight: 780;
  font-size: 1.05rem;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-links a:hover {
  color: var(--green-deep);
  background: rgba(47, 118, 80, 0.08);
}

.nav-links .active {
  color: var(--green-deep);
  background: rgba(47, 118, 80, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(48px, 7vw, 84px) 0 clamp(44px, 6vw, 74px);
}

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

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 20px;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.statement-inner h2,
.about-brand h2,
.panel h2,
.panel h3,
.manifesto-card strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 5.6vw, 5.15rem);
  line-height: 0.94;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--green);
}

.lead {
  max-width: 600px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: clamp(1.13rem, 2vw, 1.34rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 760;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fffdf8;
  background: var(--green-deep);
  box-shadow: 0 16px 34px rgba(23, 63, 43, 0.2);
}

.btn-primary:hover {
  background: var(--green);
}

.btn-secondary {
  color: var(--green-deep);
  border-color: rgba(47, 118, 80, 0.22);
  background: rgba(255, 255, 255, 0.54);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.82);
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% -4% -7% 10%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(47, 118, 80, 0.18), rgba(94, 137, 157, 0.2), rgba(201, 115, 85, 0.15));
  filter: blur(26px);
}

.hero-visual img {
  position: relative;
  width: 100%;
  min-height: 320px;
  max-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.brand-statement {
  padding: clamp(58px, 8vw, 92px) 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.band {
  padding: clamp(58px, 8vw, 92px) 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(238, 244, 239, 0.58)),
    var(--paper-cool);
}

.statement-inner {
  max-width: 860px;
}

.statement-inner h2 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(2.55rem, 5.6vw, 5.8rem);
  line-height: 0.96;
}

.statement-inner p:last-child {
  max-width: 700px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.section-block {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-brand h2 {
  margin-top: 12px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
}

.section-heading p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.principle {
  min-height: 270px;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.68);
}

.principle span {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 820;
}

.principle h3 {
  margin-top: 46px;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.principle p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.worlds {
  background: linear-gradient(180deg, rgba(238, 244, 239, 0.32), rgba(255, 255, 255, 0.3));
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.world-card {
  display: grid;
  grid-template-rows: minmax(320px, 0.9fr) auto;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.world-card-turtle {
  --world-color: var(--green);
  --world-soft: rgba(47, 118, 80, 0.14);
}

.world-card-memo {
  --world-color: var(--blue);
  --world-soft: rgba(94, 137, 157, 0.16);
}

.world-image {
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), var(--world-soft)),
    var(--paper-cool);
}

.world-image img {
  width: min(76%, 360px);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(28, 43, 34, 0.15));
  transform-origin: bottom center;
  transition: transform 220ms ease;
}

.world-card:hover .world-image img {
  transform: translateY(-5px);
}

.world-copy {
  padding: clamp(26px, 4vw, 38px);
}

.world-label {
  color: var(--world-color);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.world-copy h3 {
  max-width: 440px;
  margin-top: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 0.99;
  letter-spacing: 0;
}

.world-copy p:not(.world-label) {
  max-width: 470px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green-deep);
  font-weight: 780;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 160ms ease, text-underline-offset 160ms ease;
}

.text-link:hover {
  color: var(--green);
  text-underline-offset: 7px;
}

.about-brand {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.7vw, 1.22rem);
}

.legal-hero {
  max-width: 900px;
  padding: clamp(72px, 10vw, 126px) 0 clamp(34px, 5vw, 54px);
}

.legal-hero h1 {
  margin-top: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-hero p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.legal-content {
  display: grid;
  gap: 1px;
  max-width: 900px;
  margin-bottom: clamp(76px, 10vw, 126px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.legal-panel {
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.7);
}

.legal-panel h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.18;
}

.legal-panel p {
  max-width: 720px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.legal-panel a {
  color: var(--green-deep);
  font-weight: 720;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-panel a:hover {
  color: var(--green);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.36);
}

.footer-shell {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  color: var(--green-deep);
  font-weight: 780;
  text-decoration: none;
}

.footer-shell p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green-deep);
}

.page-hero {
  padding: clamp(72px, 10vw, 132px) 0 clamp(48px, 8vw, 90px);
}

.page-hero .lead {
  max-width: 760px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.manifesto-card,
.panel,
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.manifesto-card {
  padding: clamp(26px, 4vw, 34px);
}

.manifesto-card strong {
  display: block;
  color: var(--green-deep);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.96;
}

.manifesto-card p {
  margin-top: 18px;
  color: var(--ink-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.panel {
  padding: clamp(26px, 4vw, 42px);
}

.panel h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.panel h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.panel p,
.panel li {
  color: var(--ink-soft);
}

.value-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.value-list li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(47, 118, 80, 0.08);
}

.value-list strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(64px, 9vw, 112px) 0;
}

.team-card {
  padding: 28px;
}

.team-head {
  display: flex;
  gap: 20px;
  align-items: center;
}

.team-head img {
  width: 112px;
  height: 112px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(28, 43, 34, 0.16);
}

.team-head h3 {
  color: var(--ink);
  font-size: 1.55rem;
  letter-spacing: 0;
}

.role {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chips span {
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  color: var(--green-deep);
  background: rgba(47, 118, 80, 0.1);
  font-size: 0.84rem;
  font-weight: 760;
}

.team-card p {
  margin-top: 20px;
  color: var(--ink-soft);
}

.team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 940px) {
  .hero,
  .about-brand,
  .about-layout,
  .split-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    min-height: 280px;
  }

  .principles,
  .world-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-shell {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 18px;
    gap: 28px;
  }

  .lead {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero-visual img {
    min-height: 220px;
    max-height: 260px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .principles,
  .world-grid {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 0;
  }

  .principle h3 {
    margin-top: 26px;
  }

  .world-card {
    grid-template-rows: minmax(260px, auto) auto;
    min-height: 0;
  }

  .world-image img {
    width: min(82%, 280px);
    max-height: 240px;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}
