:root {
  --green: #0d4838;
  --green-deep: #09362b;
  --green-soft: #174f3f;
  --ink: #20201f;
  --muted: #62605c;
  --copper: #bd7f55;
  --copper-soft: #e8cabc;
  --paper: #ffffff;
  --paper-warm: #fbfaf8;
  --panel: #f7f3ee;
  --line: #e5ddd4;
  --shadow: 0 18px 45px rgba(28, 28, 24, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.ga-header {
  position: relative;
  z-index: 4;
  width: min(100% - 116px, 1280px);
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 108px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero {
  position: relative;
  min-height: 500px;
  margin-top: -2px;
  display: grid;
  grid-template-columns: minmax(52px, 1fr) minmax(370px, 560px) minmax(420px, 770px) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 221, 212, 0.72);
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: center;
  padding: 58px 42px 56px 0;
}

.eyebrow,
.small-label {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.statement h2,
.not-for-everyone h2,
.program-intro h2,
.registration h2,
.faq h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1.03;
}

.hero-lead {
  max-width: 470px;
  margin: 22px 0 0;
  color: #343531;
  font-size: 15px;
  line-height: 1.62;
}

.hero-facts {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  color: #5d5a55;
  font-size: 13px;
  font-weight: 650;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-facts svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-actions p {
  margin: 0;
  color: #595650;
  font-size: 13px;
  font-weight: 650;
}

.button {
  min-height: 54px;
  border: 0;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.outline-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.outline-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 230px;
  padding: 0 24px;
  color: white;
  background: var(--green);
  box-shadow: 0 18px 36px rgba(13, 72, 56, 0.18);
}

.button-light {
  min-width: 230px;
  padding: 0 24px;
  color: var(--green);
  background: #ead7ca;
}

.hero-media {
  position: relative;
  grid-column: 3 / 5;
  min-height: 500px;
  overflow: hidden;
  background: #f4eee7;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 32%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 28%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.audience {
  width: min(100% - 112px, 1260px);
  margin: 34px auto 0;
  padding: 0 0 56px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  color: #191918;
  font-size: clamp(34px, 3vw, 45px);
  line-height: 1.12;
}

.section-heading p {
  margin: 15px 0 0;
  color: #41403c;
  font-size: 15px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.audience-grid article {
  min-height: 210px;
  padding: 6px 36px 0;
}

.audience-grid article + article {
  border-left: 1px solid var(--line);
}

.audience-grid svg {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-grid h3 {
  margin: 0 0 13px;
  font-size: 17px;
  line-height: 1.28;
}

.audience-grid p {
  margin: 0;
  color: #4b4945;
  font-size: 14px;
  line-height: 1.62;
}

.statement {
  width: min(100% - 112px, 1260px);
  margin: 0 auto 34px;
  padding: 42px 64px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(90deg, #f7f3ee, #fbfaf8);
}

.statement img {
  display: none;
}

.statement > div {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.statement h2 {
  font-size: clamp(25px, 2.3vw, 38px);
  line-height: 1.16;
}

.statement p {
  max-width: 720px;
  margin: 7px 0 0;
  color: #373531;
  font-size: 17px;
  line-height: 1.5;
}

.statement a {
  border-bottom: 1px solid var(--copper);
}

.not-for-everyone {
  width: min(100% - 112px, 1260px);
  margin: 0 auto 48px;
}

.negative {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
}

.not-for-everyone h2,
.outcomes-highlight h2 {
  font-size: clamp(29px, 2.6vw, 42px);
  line-height: 1.15;
}

.not-for-everyone h2 {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.not-for-everyone p:not(.small-label),
.outcomes-highlight p:not(.small-label) {
  margin: 12px 0 0;
  color: #4c4944;
  font-size: 15px;
}

.outcomes-highlight {
  position: relative;
  width: min(100% - 112px, 1260px);
  margin: 0 auto 38px;
  padding: 28px 64px 46px;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, var(--green-deep), #0d4838 62%, #0a3028);
}

.outcomes-highlight::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  background: url("assets/leaf-outline.svg") center / contain no-repeat;
  opacity: 0.17;
  filter: invert(1);
}

.outcomes-highlight > * {
  position: relative;
  z-index: 1;
}

.outcomes-highlight .small-label {
  color: rgba(255, 255, 255, 0.72);
}

.outcomes-highlight h2 {
  color: white;
  text-align: center;
  font-size: clamp(34px, 3vw, 48px);
}

.outcomes-highlight p:not(.small-label) {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  text-align: center;
}

.outcomes-highlight .check-columns {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}

.outcomes-highlight .check-columns li {
  color: rgba(255, 255, 255, 0.9);
}

.outcomes-highlight .check-columns li::before {
  color: #d7b59e;
}

.negative-content {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 28px;
}

.negative-list {
  width: 100%;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
}

.negative-list span {
  min-height: 33px;
  padding: 8px 12px 8px 34px;
  border-radius: 4px;
  color: #4d4740;
  background: #f5f0ea;
  font-size: 13px;
  position: relative;
}

.negative-list span::before {
  content: "×";
  position: absolute;
  left: 13px;
  top: 6px;
  color: #c96d44;
  font-size: 18px;
  line-height: 1;
}

.negative-image {
  margin: 0;
  min-height: 230px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f0ea;
}

.negative-image img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  display: block;
  object-fit: cover;
}

.check-columns {
  margin-top: 23px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.check-columns ul,
.price-cards ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-columns li,
.price-cards li {
  position: relative;
  padding-left: 26px;
  color: #3f3d39;
  font-size: 14px;
  line-height: 1.55;
}

.check-columns li + li,
.price-cards li + li {
  margin-top: 9px;
}

.check-columns li::before,
.price-cards li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.program-band {
  position: relative;
  padding: 54px max(56px, calc((100vw - 1260px) / 2)) 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.08), transparent 25%),
    linear-gradient(135deg, var(--green-deep), #0c3f32 58%, #0a3028);
}

.program-band::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 24px;
  width: 150px;
  height: 150px;
  background: url("assets/leaf-outline.svg") center / contain no-repeat;
  opacity: 0.24;
  filter: invert(1);
}

.program-intro {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.program-intro .small-label {
  color: rgba(255, 255, 255, 0.72);
}

.program-intro h2 {
  color: white;
  font-size: clamp(35px, 3.4vw, 48px);
  line-height: 1.08;
}

.program-intro p:not(.small-label) {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.7;
}

.outline-button {
  min-width: 238px;
  min-height: 54px;
  margin-top: 34px;
  padding: 0 24px;
  border: 0;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--green);
  background: #ead7ca;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.program-intro .outline-button {
  margin-left: auto;
  margin-right: auto;
}

.outline-button:hover {
  background: #f0ddcf;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.15);
}

.program-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}

.program-list li {
  min-height: 79px;
  padding: 0 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
}

.program-list li + li {
  padding-top: 15px;
}

.program-list span {
  color: #d6b9a6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.program-list h3 {
  margin: 0;
  color: white;
  font-size: 15px;
  line-height: 1.25;
}

.program-list p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.4;
}

.instructor-section {
  width: min(100% - 112px, 1260px);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.instructor-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1.35 / 1;
  background: #f3eee8;
  box-shadow: var(--shadow);
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 10% center;
}

.instructor-copy {
  max-width: 560px;
}

.instructor-copy h2,
.brands-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.15;
}

.instructor-copy p:not(.small-label) {
  margin: 12px 0 22px;
  color: #4d4a45;
  font-size: 14px;
  line-height: 1.66;
}

.brands-section {
  width: min(100% - 112px, 1260px);
  margin: 58px auto 0;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.brands-section h2 {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(31px, 2.8vw, 44px);
}

.brand-logos {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.brand-logo {
  min-height: 74px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #353330;
  position: relative;
  overflow: hidden;
}

.brand-logo img {
  max-width: min(170px, 86%);
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
}

.registration {
  width: 100%;
  margin: 62px 0 0;
  padding: 64px max(56px, calc((100% - 1260px) / 2)) 70px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 42px;
  color: white;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, var(--green-deep), #0d4838 72%, #092e27);
}

.registration > * + * {
  padding-left: 0;
  border-left: 0;
}

.registration h2,
.faq h2 {
  font-size: clamp(29px, 2.3vw, 39px);
  line-height: 1.14;
}

.registration h2 {
  color: white;
}

.price-column > p:not(.small-label) {
  margin: 10px 0 22px;
  color: #4c4945;
  font-size: 14px;
}

.price-column {
  width: 100%;
}

.price-column h2 {
  text-align: center;
}

.price-cards {
  width: min(100%, 980px);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 440px));
  justify-content: center;
  gap: 22px;
}

.price-cards article {
  width: 100%;
  min-height: 356px;
  padding: 31px 34px 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.price-cards h3 {
  margin: 0;
  color: #34312e;
  font-size: 16px;
  line-height: 1.35;
}

.price-cards .price-note {
  display: block;
  min-height: 18px;
  margin: 6px 0 18px;
  color: #776f66;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.price-cards .price-note-placeholder {
  visibility: hidden;
}

.price-cards strong {
  display: block;
  color: #bf744c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.price-cards ul {
  margin-top: 20px;
}

.price-cards li {
  color: #3f3d39;
  font-size: 13px;
}

.signup-form {
  width: min(100%, 980px);
  padding: 24px 30px 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-self: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  background: var(--paper);
}

.form-row {
  display: contents;
}

.signup-form label {
  display: grid;
  gap: 6px;
}

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

.signup-form span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  color: #34312e;
  font-size: 15px;
  font-weight: 800;
}

.signup-form input,
.signup-form select {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper-warm);
  font-size: 14px;
  outline: none;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: #d7b59e;
  box-shadow: 0 0 0 3px rgba(215, 181, 158, 0.22);
}

.signup-form .button {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  color: white;
  background: #c68155;
  box-shadow: none;
}

.signup-form .button:hover {
  background: #b8744d;
}

.form-status {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #9b1c1c;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.faq-section {
  width: min(100% - 112px, 980px);
  margin: 54px auto 64px;
}

.faq-section h2 {
  margin: 0 0 24px;
  text-align: center;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.faq-item + .faq-item {
  margin-top: 0;
}

.faq button {
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #34312e;
  background: #fbfaf8;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq button span {
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 11px 13px 13px;
  color: #4d4944;
  font-size: 13px;
  line-height: 1.52;
}

.faq-item.is-open p {
  display: block;
}

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

@media (max-width: 1100px) {
  .ga-header,
  .audience,
  .statement,
  .outcomes-highlight,
  .not-for-everyone,
  .instructor-section,
  .brands-section,
  .faq-section {
    width: min(100% - 56px, 860px);
  }

  .registration {
    width: 100%;
    padding-right: 28px;
    padding-left: 28px;
  }

  .ga-header {
    height: auto;
    padding: 24px 0 16px;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
  }

  .hero-copy,
  .hero-media {
    grid-column: 2;
  }

  .hero-copy {
    padding: 46px 0 28px;
  }

  .hero-media {
    min-height: 420px;
    border-radius: 8px;
  }

  .hero-media::before {
    content: none;
  }

  .audience {
    margin-top: 50px;
  }

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

  .audience-grid article:nth-child(3) {
    border-left: 0;
  }

  .audience-grid article {
    padding: 24px 26px;
    border-top: 1px solid var(--line);
  }

  .statement {
    grid-template-columns: 120px 1fr;
    padding: 28px 34px;
  }

  .not-for-everyone,
  .outcomes-highlight,
  .negative,
  .negative-content,
  .instructor-section,
  .program-band {
    grid-template-columns: 1fr;
  }

  .brand-logos {
    grid-template-columns: 1fr 1fr;
  }

  .not-for-everyone > div + div,
  .registration > * + * {
    padding-left: 0;
    border-left: 0;
  }

  .program-list {
    grid-template-columns: 1fr;
  }

  .instructor-photo {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .ga-header,
  .audience,
  .statement,
  .outcomes-highlight,
  .not-for-everyone,
  .instructor-section,
  .brands-section,
  .faq-section,
  .registration {
    width: min(100% - 36px, 560px);
  }

  .registration {
    width: 100%;
    padding: 46px 18px 52px;
  }

  .ga-header {
    gap: 18px;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 18px minmax(0, 1fr) 18px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-actions,
  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-actions p {
    width: 100%;
    text-align: center;
  }

  .button-primary,
  .button-light {
    width: 100%;
  }

  .hero-media {
    min-height: 320px;
  }

  .audience-grid,
  .negative-list,
  .check-columns,
  .brand-logos,
  .price-cards,
  .registration,
  .faq-list,
  .signup-form,
  .form-row {
    grid-template-columns: 1fr;
  }

  .audience-grid article + article,
  .audience-grid article:nth-child(3) {
    border-left: 0;
  }

  .statement {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .outcomes-highlight {
    padding: 22px 28px 34px;
  }

  .statement img {
    justify-self: start;
  }

  .program-band {
    padding: 42px 28px 46px;
  }

  .program-band::after {
    display: none;
  }

  .instructor-section,
  .registration {
    gap: 34px;
  }

  .price-cards article {
    width: 100%;
    max-width: 360px;
  }

  .signup-form {
    padding: 22px 18px 24px;
    gap: 14px;
  }

  .signup-form span {
    font-size: 14px;
  }

  .signup-form input,
  .signup-form select {
    height: 42px;
  }

  .signup-form .button {
    min-height: 48px;
  }

  .brands-section {
    margin-top: 42px;
    padding-top: 34px;
  }

  .brand-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-logo {
    min-height: 70px;
    padding: 10px 8px;
  }

  .brand-logo img {
    max-width: 88%;
    max-height: 44px;
  }

}
