:root {
  --green: #003f38;
  --green-2: #07584f;
  --rose: #d7b4a8;
  --rose-2: #b98274;
  --mint: #dce9e2;
  --paper: #fbfaf8;
  --white: #ffffff;
  --ink: #18332f;
  --muted: #5e6f6b;
  --line: #e7ded9;
  --shadow: 0 22px 50px rgba(0, 43, 38, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 20;
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 43, 38, 0.16);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 126px;
  height: 62px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--green);
}

.brand-name {
  display: none;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  outline: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-call:hover,
.header-call:focus {
  background: var(--rose);
  color: #17322e;
  outline: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.icon,
[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  background: var(--rose);
  color: #17322e;
}

.button.primary:hover,
.button.primary:focus {
  background: #e4c6bd;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover,
.button.secondary:focus {
  background: rgba(255, 255, 255, 0.16);
}

.button.ghost {
  border-color: rgba(0, 63, 56, 0.18);
  color: var(--green);
  background: var(--white);
}

.button.ghost:hover,
.button.ghost:focus {
  border-color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--green);
}

.hero-home {
  background-image:
    linear-gradient(90deg, rgba(0, 63, 56, 0.98) 0%, rgba(0, 63, 56, 0.9) 54%, rgba(0, 63, 56, 0.42) 100%),
    url("https://static.wixstatic.com/media/c89b1b_6ecd53fb19b3491d8d04e6556c8519cd~mv2.jpg/v1/fill/w_720,h_760,al_c,q_85,usm_0.66_1.00_0.01/c89b1b_6ecd53fb19b3491d8d04e6556c8519cd~mv2.jpg");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(710px, 100%);
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 3.5rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 2.15rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.16rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero-proof-list {
  display: grid;
  gap: 10px;
  width: min(720px, 100%);
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero-proof-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.hero-proof-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 78px 0;
  background: var(--paper);
}

.section.white {
  background: var(--white);
}

.section.mint {
  background: var(--mint);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header p,
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 63, 56, 0.06);
}

.service-card {
  padding: 22px;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--green);
  background: var(--mint);
}

.service-card p,
.team-card p,
.course-card p,
.step-card p,
.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.why-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 36px;
}

.why-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(0, 63, 56, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.tick {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--green);
  background: var(--rose);
}

.brand-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.brand-panel img {
  width: 240px;
  margin-bottom: 26px;
  border-radius: 6px;
}

.brand-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.credential-strip {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--white);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: start;
}

.proof-grid,
.review-grid {
  display: grid;
  gap: 16px;
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.proof-card,
.review-card {
  padding: 22px;
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 1.06rem;
  line-height: 1.25;
}

.proof-card span,
.review-card p {
  color: var(--muted);
}

.people-card {
  overflow: hidden;
}

.people-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
}

.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card blockquote {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}

.review-card cite {
  color: var(--rose-2);
  font-style: normal;
  font-weight: 900;
}

.cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
}

.cta .section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.discovery-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-left: 5px solid var(--rose);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 43, 38, 0.1);
}

.discovery-panel h2 {
  margin: 0 0 10px;
}

.discovery-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.newsletter-card {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(0, 63, 56, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 22px 56px rgba(0, 43, 38, 0.1);
  text-align: center;
}

.newsletter-card h2 {
  margin-bottom: 12px;
}

.newsletter-card > p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.newsletter-signup {
  width: 100%;
  max-width: 640px;
  margin: 24px auto 0;
}

.newsletter-card #mc_embed_signup {
  width: 100%;
  clear: none;
  background: transparent;
  font: inherit;
}

.newsletter-card #mc_embed_signup form {
  margin: 0;
  padding: 0;
}

.newsletter-form #mc_embed_signup_scroll {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.newsletter-form .mc-field-group {
  display: grid;
  gap: 8px;
  min-height: 0;
  padding-bottom: 0;
  text-align: left;
}

.newsletter-form label {
  color: var(--green);
  font-weight: 800;
}

.newsletter-form input.email {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(0, 63, 56, 0.24);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.newsletter-form input.email:focus {
  border-color: var(--green);
  outline: 3px solid rgba(215, 180, 168, 0.45);
}

.newsletter-form input[type="submit"].button {
  width: auto;
  min-height: 52px;
  margin: 0;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.newsletter-card #mc_embed_signup .mc-field-group input.email {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(0, 63, 56, 0.24);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

.newsletter-card #mc_embed_signup input[type="submit"].button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 52px;
  margin: 0;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 20px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 63, 56, 0.18);
  font: inherit;
  font-weight: 900;
}

.newsletter-card #mc_embed_signup input[type="submit"].button.primary:hover,
.newsletter-card #mc_embed_signup input[type="submit"].button.primary:focus {
  background: var(--green-2);
}

.newsletter-responses {
  grid-column: 1 / -1;
  text-align: left;
}

.newsletter-responses .response {
  margin-top: 8px;
  color: var(--green);
  font-weight: 800;
}

.newsletter-hidden {
  position: absolute;
  left: -5000px;
}

.newsletter-privacy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.page-hero {
  padding: 84px 0 76px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 63, 56, 0.98), rgba(7, 88, 79, 0.92)),
    radial-gradient(circle at 80% 30%, rgba(215, 180, 168, 0.34), transparent 36%);
}

.page-hero h1 {
  width: min(760px, 100%);
}

.page-hero p {
  width: min(760px, 100%);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

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

.team-card {
  overflow: hidden;
}

.team-photo,
.team-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mint);
}

.team-placeholder {
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 3rem;
  font-weight: 900;
}

.team-body {
  padding: 22px;
}

.role {
  margin-bottom: 14px;
  color: var(--rose-2);
  font-weight: 900;
}

.team-email {
  margin-bottom: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.team-email a {
  color: var(--green);
  text-decoration-color: rgba(0, 63, 56, 0.28);
  text-underline-offset: 3px;
}

.team-email a:hover,
.team-email a:focus {
  color: var(--rose-2);
  outline: none;
}

.future-card {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 28px;
  border: 2px dashed rgba(0, 63, 56, 0.22);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 24px;
}

.step-card::before {
  counter-increment: steps;
  content: counter(steps);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--green);
  background: var(--rose);
  font-weight: 900;
}

.reward {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.reward-amount {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--green);
  background: var(--rose);
  font-size: 2.8rem;
  font-weight: 900;
}

.small-print {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.course-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--green);
  background: var(--mint);
  font-size: 0.86rem;
  font-weight: 900;
}

.price {
  color: var(--rose-2);
  font-weight: 900;
}

.note-box {
  margin-top: 24px;
  padding: 24px;
  border-left: 5px solid var(--rose);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.details-grid {
  display: grid;
  gap: 14px;
}

.detail-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.hidden-field {
  display: none;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--green);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 63, 56, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(215, 180, 168, 0.45);
}

.form-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 50px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--green);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 32px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 16px;
  border-radius: 6px;
}

.footer-heading {
  margin-bottom: 12px;
  color: var(--rose);
  font-weight: 900;
}

.footer-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus {
  color: var(--white);
  outline: none;
  text-decoration: underline;
}

.copyright {
  width: min(1160px, calc(100% - 40px));
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 116px;
    height: 56px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: var(--green);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-call {
    display: none;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding: 74px 0 82px;
  }

  .services-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-layout,
  .proof-layout,
  .contact-layout,
  .reward,
  .discovery-panel,
  .cta .section-inner {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .courses-grid,
  .review-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .reward-amount {
    width: 118px;
    height: 118px;
    font-size: 2.25rem;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-inner,
  .copyright {
    width: min(100% - 28px, 1160px);
  }

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .hero-home {
    background-image:
      linear-gradient(180deg, rgba(0, 63, 56, 0.94) 0%, rgba(0, 63, 56, 0.92) 62%, rgba(0, 63, 56, 0.72) 100%),
      url("https://static.wixstatic.com/media/c89b1b_6ecd53fb19b3491d8d04e6556c8519cd~mv2.jpg/v1/fill/w_720,h_760,al_c,q_85,usm_0.66_1.00_0.01/c89b1b_6ecd53fb19b3491d8d04e6556c8519cd~mv2.jpg");
    background-position: center top;
  }

  .hero-copy {
    padding: 44px 0 34px;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .hero p,
  .page-hero p {
    font-size: 1.04rem;
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .services-grid,
  .steps-grid,
  .proof-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .discovery-panel {
    padding: 22px;
  }

  .newsletter-card {
    padding: 24px 18px;
  }

  .newsletter-form #mc_embed_signup_scroll {
    grid-template-columns: 1fr;
  }

  .newsletter-form input[type="submit"].button {
    width: 100%;
  }

  .newsletter-card #mc_embed_signup input[type="submit"].button.primary {
    width: 100%;
  }

  .course-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

