:root {
  --ink: #17372e;
  --deep: #102c25;
  --deep-2: #0a211b;
  --paper: #f5f1e8;
  --paper-2: #ebe6da;
  --leaf: #b8d8ad;
  --leaf-bright: #d4edc9;
  --moss: #738c67;
  --clay: #d97d5d;
  --white: #fffdf8;
  --line: rgba(23, 55, 46, 0.17);
  --shadow: 0 24px 60px rgba(16, 44, 37, 0.12);
  --radius: 28px;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 999; left: 16px; top: 12px; transform: translateY(-160%);
  background: var(--white); padding: 10px 16px; border-radius: 999px; text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: 84px;
  display: flex; align-items: center; transition: height .25s ease;
}
/* Frosted layer lives on a pseudo-element: backdrop-filter on the header itself
   would turn it into the containing block for the fixed-position .site-nav,
   breaking the menu's off-screen translateY(-105%). */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: rgba(245, 241, 232, .9); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(23,55,46,.1); transition: opacity .25s ease;
}
.site-header.is-scrolled, .site-header.solid { height: 70px; }
.site-header.is-scrolled::before, .site-header.solid::before { opacity: 1; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: inline-flex; align-items: center; gap: 11px; text-decoration: none;
  font-weight: 720; letter-spacing: -.035em; font-size: 1.28rem;
}
.brand img { width: 36px; height: 36px; }
.site-nav { display: flex; align-items: center; gap: 32px; font-size: .91rem; font-weight: 620; }
.site-nav a { text-decoration: none; position: relative; }
.site-nav a:not(.nav-contact)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px;
  background: currentColor; transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-contact { border: 1px solid var(--ink); border-radius: 999px; padding: 9px 17px; transition: .2s ease; }
.nav-contact:hover { background: var(--ink); color: var(--white); }
.nav-toggle { display: none; border: 0; background: none; width: 44px; height: 44px; padding: 12px; }
.nav-toggle span:not(.sr-only) { display: block; height: 1.5px; background: var(--ink); margin: 6px 0; transition: .2s ease; }

.hero {
  min-height: 820px; padding: 170px 0 100px; display: grid; grid-template-columns: 1.03fr .97fr;
  align-items: center; gap: 42px;
}
.eyebrow {
  margin: 0 0 25px; display: flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .14em; font-size: .73rem; font-weight: 760;
}
.eyebrow > span { display: block; width: 28px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .contact-section h2, .legal-hero h1, .support-hero h1, .not-found h1 {
  margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400;
  letter-spacing: -.055em; line-height: .98;
}
.hero h1 { max-width: 740px; font-size: clamp(4rem, 7vw, 6.9rem); }
.hero h1 em { color: var(--clay); font-weight: 400; }
.hero-intro { max-width: 630px; margin: 35px 0 0; font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 38px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 700;
  font-size: .92rem; transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--deep); color: var(--white); box-shadow: 0 12px 30px rgba(16,44,37,.18); }
.button-primary:hover { background: var(--deep-2); }
.button-text { padding-inline: 4px; min-height: auto; border-radius: 0; }
.button-text span { font-size: 1.1rem; }

.hero-visual {
  position: relative; width: min(100%, 520px); aspect-ratio: .95; margin-left: auto;
  border-radius: 48% 48% 42% 44% / 42% 40% 50% 52%; background: var(--leaf);
  overflow: hidden; isolation: isolate; box-shadow: var(--shadow);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 14%; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(255,253,248,.58), rgba(255,253,248,0) 66%);
}
.orbit { position: absolute; border: 1px solid rgba(23,55,46,.21); border-radius: 50%; aspect-ratio: 1; }
.orbit-one { width: 82.7%; left: 8.65%; top: 11.9%; }
.orbit-two { width: 55.8%; left: 22.5%; top: 24.7%; }
.growth-mark { position: absolute; width: 70%; left: 14%; bottom: -1%; }
.growth-stem { fill: none; stroke: var(--deep); stroke-width: 3; stroke-linecap: round; }
.growth-branch { stroke-width: 2.5; }
.growth-leaf { fill: var(--deep); }
.seed-card {
  position: absolute; z-index: 4; width: 164px; padding: 15px 16px; border: 1px solid rgba(255,255,255,.52);
  border-radius: 16px; background: rgba(255,253,248,.72); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 12px 32px rgba(16,44,37,.1);
}
.seed-card p { margin: 6px 0 0; font-size: .83rem; line-height: 1.25; font-weight: 670; }
.seed-icon { font-family: Georgia, serif; font-size: .72rem; color: var(--moss); }
.seed-card-one { left: 7%; top: 21%; transform: rotate(-3deg); }
.seed-card-two { right: 5%; top: 41%; transform: rotate(3deg); }
.seed-card-three { left: 14%; bottom: 10%; transform: rotate(2deg); }
.hero-note {
  position: absolute; right: 16%; top: 13%; text-align: right; font-size: .73rem;
  font-weight: 700; line-height: 1.35; text-transform: uppercase; letter-spacing: .09em;
}

.statement { background: var(--deep); color: var(--white); }
.statement-inner { padding: 80px 0; }
.statement p {
  margin: 0; max-width: 1020px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2; letter-spacing: -.035em;
}

.section { padding-block: 130px; scroll-margin-top: 60px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.section-heading h2, .contact-section h2 { font-size: clamp(3rem, 6vw, 5.4rem); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10%; }
.about-copy .lead { margin-top: 0; font-size: clamp(1.45rem, 2.2vw, 2.05rem); font-family: Georgia, serif; line-height: 1.4; letter-spacing: -.025em; }
.about-copy p:last-child { margin-top: 28px; max-width: 590px; font-size: 1.03rem; }
.principles { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.principle > span { font-family: Georgia, serif; color: var(--moss); }
.principle h3 { margin: 0 0 5px; font-size: 1.05rem; }
.principle p { margin: 0; color: rgba(23,55,46,.72); }

.work-section { background: var(--paper-2); }
.work-heading { align-items: end; }
.work-heading > p { max-width: 420px; margin: 0 0 8px; }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.explore-card {
  min-height: 460px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(23,55,46,.12); border-radius: var(--radius); background: rgba(255,253,248,.72);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.explore-card:hover { transform: translateY(-7px); background: var(--white); box-shadow: var(--shadow); }
.card-topline { display: flex; justify-content: space-between; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 750; }
.explore-card h3 { margin: 0 0 8px; font-size: 1.28rem; letter-spacing: -.02em; }
.explore-card p { margin: 0; color: rgba(23,55,46,.7); }
.card-symbol { height: 170px; display: grid; place-items: center; position: relative; }
.symbol-utility span { position: absolute; width: 112px; height: 112px; border: 1.5px solid var(--ink); border-radius: 25px; }
.symbol-utility span:nth-child(2) { transform: rotate(25deg); opacity: .55; }
.symbol-utility span:nth-child(3) { transform: rotate(50deg); opacity: .25; }
.symbol-creative span:first-child { width: 120px; height: 120px; border-radius: 50%; background: var(--clay); }
.symbol-creative span:last-child { position: absolute; width: 70px; height: 150px; border-radius: 50%; border: 1.5px solid var(--ink); transform: rotate(40deg); }
.symbol-learning span { position: absolute; width: 120px; height: 1px; background: var(--ink); transform-origin: center; }
.symbol-learning span:first-child { transform: rotate(0deg); }
.symbol-learning span:nth-child(2) { transform: rotate(60deg); }
.symbol-learning span:nth-child(3) { transform: rotate(120deg); }
.symbol-learning::after { content: ""; width: 48px; height: 48px; border-radius: 50%; background: var(--leaf); z-index: 2; }

.contact-section { padding: 120px 0; background: var(--clay); color: #251d19; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; }
.contact-copy { padding-bottom: 8px; }
.contact-copy p { max-width: 440px; margin: 0 0 28px; font-size: 1.08rem; }
.email-link { display: inline-flex; gap: 12px; align-items: center; font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.5rem); text-decoration-thickness: 1px; text-underline-offset: 7px; }

.site-footer { background: var(--deep); color: rgba(255,253,248,.86); }
.footer-main { padding: 75px 0 60px; display: grid; grid-template-columns: .65fr 1.35fr .7fr; gap: 60px; align-items: start; }
.footer-brand { color: var(--white); }
.footer-main > p { margin: 0; max-width: 500px; }
.footer-main nav { display: grid; gap: 9px; justify-content: end; }
.footer-main nav a, .footer-legal nav a { text-decoration: none; }
.footer-main nav a:hover, .footer-legal nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-legal { min-height: 70px; padding: 20px 0; display: flex; justify-content: space-between; gap: 25px; align-items: center; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-legal p { margin: 0; }
.footer-legal nav { display: flex; gap: 24px; }
.compact-footer { margin-top: 90px; }

.legal-page, .support-page { background: var(--white); }
.legal-main { padding-top: 165px; max-width: 1000px; }
.legal-hero { padding-bottom: 62px; border-bottom: 1px solid var(--line); }
.legal-hero h1, .support-hero h1 { font-size: clamp(3.6rem, 7vw, 6.5rem); }
.legal-hero > p:last-child { color: rgba(23,55,46,.62); margin: 25px 0 0; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 70px 0 20px; }
.legal-content section { margin-bottom: 46px; }
.legal-content h2 { margin: 0 0 12px; font-size: 1.22rem; letter-spacing: -.015em; }
.legal-content p { margin: 0 0 14px; color: rgba(23,55,46,.78); }
.legal-content a, .support-contact a { text-underline-offset: 4px; }

.support-main { padding-top: 165px; }
.support-hero { padding-bottom: 95px; }
.support-hero > p:not(.eyebrow) { max-width: 680px; margin: 30px 0 36px; font-size: 1.22rem; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.support-grid article { padding: 34px; min-height: 300px; background: var(--paper); border-radius: 24px; }
.support-grid article > span { display: block; margin-bottom: 80px; font-family: Georgia, serif; color: var(--moss); }
.support-grid h2 { font-size: 1.2rem; margin: 0 0 10px; }
.support-grid p { margin: 0; color: rgba(23,55,46,.72); }
.support-contact { margin-top: 100px; padding: 70px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.support-contact h2 { margin: 0; font-family: Georgia, serif; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -.045em; line-height: 1; }
.support-contact > p { margin: 0 0 5px; font-size: 1.08rem; }

.not-found-page { min-height: 100vh; background: var(--leaf); }
.not-found { min-height: 100vh; padding: 45px 0 80px; display: flex; flex-direction: column; justify-content: space-between; }
.not-found h1 { font-size: clamp(3.8rem, 8vw, 7.5rem); }
.not-found div > p:not(.eyebrow) { margin: 28px 0 35px; font-size: 1.1rem; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 720px); }
  .site-header { height: 72px; }
  .nav-toggle { display: block; position: relative; z-index: 2; cursor: pointer; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.8px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 0; padding: 115px 24px 35px; background: var(--paper);
    flex-direction: column; align-items: flex-start; gap: 18px; font-size: 1.9rem;
    transform: translateY(-105%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .site-nav.is-open { transform: translateY(0); }
  .nav-contact { margin-top: 10px; font-size: 1rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 140px 0 85px; gap: 48px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { width: min(100%, 560px); margin: 0 auto; }
  .statement-inner { padding: 65px 0; }
  .section { padding-block: 95px; }
  .section-heading { display: block; margin-bottom: 50px; }
  .about-grid, .contact-grid, .footer-main, .support-contact { grid-template-columns: 1fr; gap: 55px; }
  .explore-grid, .support-grid { grid-template-columns: 1fr; }
  .explore-card { min-height: 390px; }
  .work-heading > p { margin-top: 28px; }
  .footer-main nav { justify-content: start; }
  .footer-main { gap: 30px; }
  .support-grid article { min-height: 250px; }
  .support-grid article > span { margin-bottom: 55px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 30px); }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: clamp(3.45rem, 17vw, 5.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-visual { border-radius: 34px; aspect-ratio: .9; }
  .seed-card { width: clamp(116px, 38vw, 142px); padding: 11px 12px; }
  .seed-card p { font-size: .78rem; }
  .seed-card-one { left: 4%; top: 16%; }
  .seed-card-two { right: 3%; top: 44%; }
  .seed-card-three { left: 8%; bottom: 8%; }
  .hero-note { display: none; }
  .section-heading h2, .contact-section h2 { font-size: 3.4rem; }
  .section { padding-block: 78px; }
  .statement-inner { padding: 55px 0; }
  .contact-section { padding: 80px 0; }
  .email-link { font-size: 1.45rem; }
  .footer-main { padding-top: 58px; }
  .footer-legal { align-items: flex-start; flex-direction: column; }
  .legal-main, .support-main { padding-top: 125px; }
  .legal-content { padding-top: 52px; }
  .support-hero { padding-bottom: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
