:root {
  --green: #123f33;
  --green-deep: #123f33;
  --ink: #20201f;
  --muted: #62605c;
  --soft: #fbfaf8;
  --paper: #ffffff;
  --line: #ded8d0;
  --sage: #879884;
  --sage-soft: #eef2eb;
  --copper: #bd7f55;
  --shadow: 0 18px 45px rgba(28, 28, 24, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header,
.hero,
.intro-section,
.audience,
.benefits,
.mentor-card,
.learning,
.space-card,
.join {
  width: min(100% - 96px, 1280px);
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  height: 100px;
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 36px;
}

.brand-mark span {
  position: absolute;
  width: 13px;
  height: 19px;
  border-radius: 12px 12px 2px 12px;
  background: var(--green);
  transform-origin: bottom center;
}

.brand-mark span:nth-child(1) {
  right: 0;
  top: 0;
  transform: rotate(28deg);
}

.brand-mark span:nth-child(2) {
  left: 0;
  top: 15px;
  transform: rotate(28deg);
  background: #8e9e84;
}

.brand-mark span:nth-child(3) {
  left: 14px;
  top: 18px;
  transform: rotate(-28deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 64px);
  color: #242321;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.header-cta,
.button {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 52px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 750;
}

.header-cta,
.button-primary {
  color: #fff;
  background: var(--green);
}

.header-cta {
  min-width: 170px;
  padding: 0 24px;
}

.button-primary {
  padding: 0 22px;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(13, 72, 56, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 78px;
  align-items: center;
  padding: 12px 0 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(54px, 5.8vw, 84px);
  line-height: 0.98;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 20px;
  color: #242321;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.42;
}

.hero-text {
  max-width: 590px;
  margin: 34px 0 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1.39 / 1;
  background: #eee7dd;
}

.hero-media img,
.mentor-card img,
.space-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section,
.audience,
.learning {
  padding-top: 108px;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
}

.section-heading span {
  width: 82px;
  height: 2px;
  background: var(--copper);
}

.text-panel {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 58px 78px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.text-panel p {
  margin: 0;
  color: #20201f;
  font-size: 19px;
  line-height: 1.55;
}

.text-panel p + p {
  margin-top: 24px;
}

.audience {
  padding-top: 88px;
}

.audience-grid {
  width: min(100%, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.audience-grid article,
.learning-grid article,
.price-card,
.signup-card,
.mentor-card,
.space-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.audience-grid article {
  min-height: 286px;
  padding: 42px 52px;
}

.audience-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
}

.audience-grid h3 {
  max-width: 430px;
  font-size: 32px;
  line-height: 1.02;
}

.audience-grid p,
.learning-grid p,
.mentor-card p,
.space-copy p,
.price-card p {
  color: var(--muted);
}

.audience-grid p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.45;
}

.benefits {
  position: relative;
  overflow: hidden;
  margin-top: 78px;
  padding: 62px 64px 78px;
  border-radius: 10px;
  color: white;
  background: var(--green);
}

.section-heading-dark {
  position: relative;
  z-index: 1;
  color: white;
  gap: 12px;
}

.section-heading-dark h2 {
  max-width: 980px;
  color: white;
}

.section-heading-dark p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.leaf {
  position: absolute;
  width: 190px;
  opacity: 0.24;
  pointer-events: none;
}

.leaf-right {
  right: 32px;
  top: 80px;
}

.leaf-left {
  left: 28px;
  top: 56px;
  transform: scaleX(-1);
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 56px;
  margin-top: 48px;
}

.benefits-grid article {
  min-height: 172px;
  padding: 28px 34px;
  border-radius: 7px;
  background: var(--soft);
  color: var(--ink);
}

.benefits-grid span {
  width: 54px;
  height: 54px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.benefits-grid h3 {
  margin-top: 14px;
  color: var(--ink);
  font-size: 29px;
  line-height: 1.1;
}

.benefits-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.mentor-card {
  margin-top: 150px;
  padding: 84px 80px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 88px;
  align-items: center;
}

.mentor-card img {
  aspect-ratio: 1.55 / 1;
  border-radius: 4px;
}

.mentor-card h2 {
  max-width: 670px;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.02;
}

.mentor-card p:not(.eyebrow) {
  max-width: 660px;
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.5;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.learning-grid article {
  min-height: 250px;
  padding: 48px 42px 42px;
}

.soft-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--green);
  background: var(--sage-soft);
  display: grid;
  place-items: center;
  font-size: 21px;
  font-weight: 800;
}

.learning-grid h3 {
  font-size: 36px;
  line-height: 1.08;
}

.learning-grid p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.45;
}

.space-card {
  margin-top: 62px;
  padding: 68px 80px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.space-copy h2 {
  max-width: 440px;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.02;
}

.space-copy p {
  max-width: 470px;
  margin: 20px 0 0;
  font-size: 18px;
}

.space-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.space-media img {
  height: 230px;
  border-radius: 4px;
}

.space-list {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 42px;
}

.space-list li,
.price-card li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
}

.space-list li::before,
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.join {
  padding: 118px 0 112px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.price-card,
.signup-card {
  padding: 54px 62px;
}

.price-card h2,
.signup-card h2 {
  font-size: 34px;
  line-height: 1.12;
}

.signup-card h2 {
  display: grid;
  justify-items: center;
  gap: 18px;
  color: var(--green);
  text-align: center;
  font-size: clamp(42px, 5vw, 62px);
}

.signup-card h2::after {
  content: "";
  width: 82px;
  height: 2px;
  background: var(--copper);
}

.price-card {
  color: white;
  background: var(--green);
  border-color: transparent;
}

.price-card h2,
.price-card strong,
.price-card p,
.price-card li {
  color: white;
}

.price-card strong {
  display: block;
  margin: 24px 0 18px;
  font-family: var(--serif);
  font-size: clamp(56px, 5.8vw, 76px);
  line-height: 1;
}

.price-card p {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
}

.price-card ul {
  margin: 40px 0 32px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 36px;
}

.price-card .button {
  min-width: 270px;
}

.price-card li::before {
  color: white;
}

.signup-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px;
}

.signup-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
}

.signup-steps li > span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 750;
}

.signup-steps h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.signup-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.signup-form {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 20px;
}

.form-row {
  min-width: 0;
}

.form-row-full,
.signup-form button {
  grid-column: 1 / -1;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.form-row input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--paper);
  font: 500 16px/1.35 var(--sans);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 72, 56, 0.1);
}

.signup-form button {
  width: 100%;
  margin-top: 10px;
  border: 0;
  cursor: pointer;
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 72px max(48px, calc((100vw - 1280px) / 2)) 90px;
  color: white;
  background: var(--green);
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-item {
  overflow: hidden;
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
}

.faq-item:nth-child(n + 4) {
  grid-column: span 1;
}

.faq-section button {
  width: 100%;
  min-height: 62px;
  padding: 0 24px;
  border: 0;
  background: var(--soft);
  color: var(--ink);
  font: 650 15px/1.35 var(--sans);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-section button:focus-visible {
  outline: 2px solid rgba(183, 198, 181, 0.95);
  outline-offset: -2px;
}

.faq-section button span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-section button.is-open span {
  transform: rotate(225deg);
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.faq-item:has(button.is-open) p {
  display: block;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 38px max(48px, calc((100vw - 1280px) / 2));
  color: white;
  background: var(--green-deep);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 170px;
  height: 210px;
  background: url("assets/leaf-outline.svg") center / contain no-repeat;
  opacity: 0.18;
}

.site-footer::before {
  left: 24px;
  transform: scaleX(-1);
}

.site-footer::after {
  right: 24px;
}

.footer-contact svg,
.footer-social svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-contact a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.footer-contact svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .intro-section,
  .audience,
  .benefits,
  .mentor-card,
  .learning,
  .space-card,
  .join {
    width: min(100% - 48px, 820px);
  }

  .site-header {
    height: auto;
    padding: 26px 0;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero,
  .mentor-card,
  .space-card,
  .join {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 38px;
  }

  .learning-grid,
  .benefits-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .benefits,
  .mentor-card,
  .space-card,
  .price-card,
  .signup-card {
    padding-left: 34px;
    padding-right: 34px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .intro-section,
  .audience,
  .benefits,
  .mentor-card,
  .learning,
  .space-card,
  .join {
    width: min(100% - 28px, 480px);
  }

  .brand {
    font-size: 31px;
  }

  .header-cta {
    min-width: 0;
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

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

  .hero-lead {
    font-size: 18px;
  }

  .hero-text,
  .text-panel p,
  .learning-grid p,
  .mentor-card p:not(.eyebrow),
  .space-copy p,
  .price-card p,
  .signup-card p {
    font-size: 16px;
  }

  .intro-section,
  .learning {
    padding-top: 78px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .text-panel,
  .audience-grid article,
  .learning-grid article,
  .benefits,
  .mentor-card,
  .space-card,
  .price-card,
  .signup-card {
    padding: 30px 24px;
  }

  .audience-grid,
  .space-media,
  .space-list,
  .price-card ul,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .audience-grid h3,
  .learning-grid h3,
  .price-card h2,
  .signup-card h2 {
    font-size: 28px;
  }

  .benefits-grid {
    gap: 22px;
  }

  .benefits-grid h3 {
    color: var(--ink);
    font-size: 25px;
  }

  .benefits-grid p {
    color: var(--muted);
    font-size: 16px;
  }

  .mentor-card,
  .space-card {
    margin-top: 72px;
    gap: 28px;
  }

  .mentor-card > div {
    display: contents;
  }

  .mentor-card h2 {
    order: 1;
  }

  .mentor-card img {
    order: 2;
  }

  .mentor-card p {
    order: 3;
  }

  .space-card .space-copy {
    order: 1;
  }

  .space-card .space-media {
    display: contents;
  }

  .space-card .space-media img:first-child {
    order: 2;
  }

  .space-card .space-list {
    order: 3;
  }

  .space-card .space-media img:last-child {
    order: 4;
  }

  .space-list {
    gap: 16px;
  }

  .join {
    padding: 72px 0;
  }

  .price-card strong {
    font-size: 48px;
  }

  .faq-section {
    padding: 56px 14px 34px;
  }
}
