:root {
  --green: #0f3f32;
  --green-2: #123f35;
  --gold: #e7bd5c;
  --gold-2: #f3d789;
  --cream: #f6f1e5;
  --paper: #fffdf8;
  --ink: #14211c;
  --muted: #6e756f;
  --line: #ded8cb;
  --shadow: 0 14px 35px rgba(27, 42, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.container {
  width: min(1180px, 92vw);
  margin: auto;
}

.centered {
  text-align: center;
}

.section {
  padding: 74px 0;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow.dark {
  color: #2e4c42;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 13px 20px;
  border-radius: 28px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #24311f;
  box-shadow: 0 7px 18px rgba(172, 124, 29, 0.22);
}

.btn-outline {
  border: 1px solid rgba(231, 189, 92, 0.85);
  color: #fff;
  background: transparent;
}

.btn-outline .play {
  display: inline-grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.55rem;
}

.btn-dark {
  background: #173d32;
  color: #fff;
}

.wide {
  justify-content: center;
  width: fit-content;
  min-width: 160px;
}

.film-grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid #e4dfd3;
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 2px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-copy em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #99701f;
  margin-top: 3px;
  font-weight: 700;
}

.brand-copy small {
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #65706a;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
}

.main-nav a {
  padding: 8px 2px;
}

.main-nav a.active {
  color: #99701f;
  box-shadow: inset 0 -1.5px 0 var(--gold);
}

.nav-cta {
  font-size: 0.78rem;
  padding: 11px 16px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0b2f27;
  color: #fff;
  min-height: clamp(520px, 78vh, 720px);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 28, 24, 0.55) 0%,
      rgba(8, 28, 24, 0.28) 42%,
      rgba(8, 28, 24, 0.08) 62%,
      transparent 78%
    ),
    linear-gradient(180deg, rgba(8, 28, 24, 0.18) 0%, transparent 30%, rgba(8, 28, 24, 0.35) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: inherit;
}

.hero-copy {
  padding: 68px 0 34px;
  z-index: 1;
  max-width: 36rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.94;
  margin: 8px 0 20px;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-weight: 500;
  font-style: italic;
  color: #f3dfaa;
}

.hero-text {
  max-width: 560px;
  color: #e5eee9;
  line-height: 1.65;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 30px;
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 0.72rem;
  color: #d8e4df;
  align-items: center;
}

.hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.feat-ico {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  display: inline-block;
  position: relative;
}

.feat-ico.chart {
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(var(--gold), var(--gold)) 0 100% / 3px 60% no-repeat,
    linear-gradient(var(--gold), var(--gold)) 5px 100% / 3px 85% no-repeat,
    linear-gradient(var(--gold), var(--gold)) 10px 100% / 3px 45% no-repeat;
}

.feat-ico.people,
.feat-ico.globe {
  border-radius: 50%;
}

.hero-quote {
  align-self: end;
  justify-self: end;
  text-align: right;
  padding: 0 0 48px;
  max-width: 14rem;
}

.hero-quote blockquote {
  margin: 0 0 0.55rem;
  font-family: 'Great Vibes', 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  font-style: normal;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-quote small {
  color: #d7c27a;
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-quote small b {
  display: block;
  margin-top: 2px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.section-heading h2,
.book-copy h2,
.about-copy h2,
.cta-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  line-height: 1;
  margin: 0 0 14px;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

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

.price-head.forest {
  background: #0c372d;
}

.price-card {
  border: 1px solid #ddd6c9;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-head {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  color: #fff;
}

.price-head.green {
  background: #2e684d;
}

.price-head.charcoal {
  background: #203a31;
}

.icon-round {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f0f1d8;
  flex-shrink: 0;
  position: relative;
}

.icon-round.sprout::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #2e684d;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C9 6 5 8.5 5 13a7 7 0 0 0 14 0c0-4.5-4-7-7-11z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C9 6 5 8.5 5 13a7 7 0 0 0 14 0c0-4.5-4-7-7-11z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.gold-icon {
  background: #efc964;
}

.icon-round.bars::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #203a31;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 19h2V9H3v10zm5 0h2V5H8v14zm5 0h2v-7h-2v7zm5 0h2V3h-2v16z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 19h2V9H3v10zm5 0h2V5H8v14zm5 0h2v-7h-2v7zm5 0h2V3h-2v16z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.price-head h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.65rem;
}

.price-head p {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: #e6eee9;
}

.price-body {
  padding: 22px 24px 26px;
}

.price-body > p {
  color: #5b665f;
  line-height: 1.6;
  margin: 0 0 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.price-row strong {
  font-size: 1.9rem;
}

.price-row span {
  color: #7a817d;
  font-size: 0.8rem;
}

.price-body ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  font-size: 0.84rem;
}

.price-body li:before {
  content: '✓';
  color: #5e8d35;
  font-weight: 800;
  margin-right: 7px;
}

.price-card:nth-child(2) .price-body li:before {
  color: #b8913f;
}

.learn-strip {
  background: #f6f2e7;
  border-top: 1px solid #e2dccf;
  border-bottom: 1px solid #e2dccf;
  padding: 28px 0;
}

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

.learn-grid.journey-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.learn-grid.journey-steps article {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.learn-grid article {
  text-align: center;
  padding: 6px 16px;
  border-right: 1px solid #ddd5c6;
}

.learn-grid article:last-child {
  border-right: 0;
}

.learn-ico {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #b8913f;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.learn-ico.foundations {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z'/%3E%3C/svg%3E");
}

.learn-ico.options {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm4 18H6V4h7v5h5v11z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8l-6-6zm4 18H6V4h7v5h5v11z'/%3E%3C/svg%3E");
}

.learn-ico.price {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4v2h2v12H5v2h6v-2H9V6h2V4H5zm8 0v2h2v5h2V6h2V4h-6zm4 9v7h2v-7h-2zm-4 3v4h2v-4h-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4v2h2v12H5v2h6v-2H9V6h2V4H5zm8 0v2h2v5h2V6h2V4h-6zm4 9v7h2v-7h-2zm-4 3v4h2v-4h-2z'/%3E%3C/svg%3E");
}

.learn-ico.structure {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h6v4H3V5zm8 0h10v4H11V5zM3 11h10v4H3v-4zm12 0h6v4h-6v-4zM3 17h6v4H3v-4zm8 0h10v4H11v-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5h6v4H3V5zm8 0h10v4H11V5zM3 11h10v4H3v-4zm12 0h6v4h-6v-4zM3 17h6v4H3v-4zm8 0h10v4H11v-4z'/%3E%3C/svg%3E");
}

.learn-ico.risk {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z'/%3E%3C/svg%3E");
}

.learn-ico.psych {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7z'/%3E%3C/svg%3E");
}

.learn-grid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin: 8px 0 4px;
}

.learn-grid p {
  font-size: 0.7rem;
  color: #69736e;
  line-height: 1.4;
  margin: 0;
}

.book-section {
  background: #fff;
}

.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.7fr;
  align-items: center;
  gap: 24px;
}

.book-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin: -4px 0 12px;
  color: #29473d;
}

.book-copy p {
  color: #66716b;
  line-height: 1.6;
}

.book-showcase {
  display: flex;
  justify-content: center;
  align-items: end;
}

.book-photo {
  width: min(100%, 420px);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.book-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-style: italic;
  line-height: 1.15;
  color: #2c4c40;
  margin: 0;
}

.book-quote cite {
  display: block;
  margin-top: 12px;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #84651d;
}

.about-section {
  background: #f8f6ef;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1.5fr;
  gap: 28px;
  align-items: center;
}

.about-photo {
  height: 250px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  background: #d9c19a;
}

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

.about-copy p {
  color: #65706a;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  color: #2b5a46;
  font-weight: 700;
}

.inside-grid > .eyebrow {
  margin-bottom: 12px;
}

.inside-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.inside-card {
  font-size: 0.72rem;
  text-align: center;
}

.inside-card img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border: 5px solid #182723;
}

.inside-card strong {
  display: block;
  margin-top: 6px;
}

.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 760px;
  margin: 28px auto 0;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  padding: 14px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--green);
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-band {
  background: #0d4335;
  color: #fff;
  padding: 26px 0;
  border-top: 4px solid #d5b258;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 16px,
    rgba(255, 255, 255, 0.04) 16px,
    rgba(255, 255, 255, 0.04) 17px
  );
  pointer-events: none;
}

.cta-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-wrap .eyebrow {
  color: var(--gold-2);
}

.cta-wrap h2 {
  font-size: 2.1rem;
  margin-bottom: 5px;
  color: #fff;
}

.cta-wrap p {
  margin: 0;
  color: #dceae5;
}

.site-footer {
  padding: 28px 0 20px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.footer-grid nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 0.75rem;
}

.footer-utils {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green);
}

.footer-lang {
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted);
}

.footer-slogan {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--green);
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #e4ded2;
  margin-top: 18px;
  padding-top: 15px;
  font-size: 0.62rem;
  color: #8a8e8a;
}

.footer-bottom p:first-child {
  max-width: 760px;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.5;
}

.whatsapp-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 35;
  background: #25d366;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

@media (max-width: 980px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 4vw;
    border-bottom: 1px solid #ddd;
  }

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

  .hero-quote {
    justify-self: start;
    text-align: left;
    padding: 0 0 28px;
    max-width: none;
  }

  .hero-banner {
    object-position: 72% center;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(8, 28, 24, 0.35) 0%, rgba(8, 28, 24, 0.72) 55%, rgba(8, 28, 24, 0.88) 100%),
      linear-gradient(90deg, rgba(8, 28, 24, 0.55) 0%, transparent 70%);
  }

  .pricing-grid,
  .pricing-grid.programs {
    grid-template-columns: 1fr;
  }

  .learn-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }

  .learn-grid.journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .learn-grid article:nth-child(3) {
    border-right: 0;
  }

  .book-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .book-quote {
    grid-column: 1 / -1;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .inside-grid {
    grid-column: 1 / -1;
  }

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

  .footer-grid nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-utils {
    align-items: flex-start;
  }

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

  .cta-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 52px 0;
  }

  .hero-copy {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hero-quote blockquote {
    font-size: 1.45rem;
  }

  .price-body ul {
    grid-template-columns: 1fr;
  }

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

  .learn-grid.journey-steps {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .learn-grid article {
    border-right: 1px solid #ddd5c6;
  }

  .learn-grid article:nth-child(2n) {
    border-right: 0;
  }

  .book-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .book-showcase {
    order: 2;
  }

  .book-quote {
    order: 3;
  }

  .inside-cards {
    grid-template-columns: 1fr 1fr 1fr;
    overflow-x: auto;
  }

  .cta-wrap h2 {
    font-size: 2rem;
  }

  .footer-grid nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
  }

  .brand-copy strong {
    font-size: 1rem;
  }
}
