.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: min(100%, 360px);
  min-height: 67.9375px;
  padding: 0 20.8px;
  border: 3px solid var(--color-accent);
  border-radius: 300px;
  background: var(--color-accent);
  color: var(--color-surface);
  font-family: var(--font-display);
  font-size: 20.32px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
  transition: opacity 0.1s linear, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-surface);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-surface);
}

.btn-accent:hover {
  color: var(--color-surface);
}

.hero {
  min-height: clamp(620px, 82vh, 860px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(247, 253, 241, 0), var(--color-bg));
  pointer-events: none;
}

.hero-home {
  background:
    linear-gradient(90deg, rgba(247, 253, 241, 0.95) 0%, rgba(247, 253, 241, 0.76) 46%, rgba(247, 253, 241, 0.2) 100%),
    url("https://images.squarespace-cdn.com/content/v1/693256ae38fbbf1bafd758b4/1a1bf763-f86a-44ef-a196-d00e8842c45f/c91c4263-d401-447f-9fe1-24bdf4604285--2.png?format=1500w") center right / cover no-repeat;
}

.hero-programs {
  background: var(--color-lime);
}

.hero-about {
  background:
    linear-gradient(90deg, rgba(247, 253, 241, 0.94), rgba(247, 253, 241, 0.58)),
    url("https://images.squarespace-cdn.com/content/v1/693256ae38fbbf1bafd758b4/1a1bf763-f86a-44ef-a196-d00e8842c45f/c91c4263-d401-447f-9fe1-24bdf4604285--2.png?format=1500w") center right / cover no-repeat;
}

.hero-video-banner {
  background: var(--color-text);
  color: var(--color-surface);
}

.hero-video-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(20, 35, 27, 0.24);
  pointer-events: none;
}

.hero-split-video {
  min-height: 600px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  padding: 0;
}

.hero-split-video::after {
  display: none;
}

.hero-split-panel {
  position: relative;
  min-width: 0;
}

.hero-split-copy {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: var(--color-surface);
}

.hero-programs-content {
  max-width: 650px;
  color: var(--color-text);
}

.hero-programs-content h1 {
  max-width: 500px;
  color: var(--color-text);
  line-height: 1.05;
  margin-bottom: 15px;
}

.hero-programs-content h1:not(.h1, .h2, .h3, .h4, .h5, .h6) {
  font-size: clamp(42px, 4.8vw, 68px);
}

.hero-split-media {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 45px 45px 45px 90px;
  overflow: hidden;
  background: var(--color-lime);
}

.hero-split-media::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -310px;
  z-index: 1;
  width: 620px;
  height: 2200px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-lime);
  pointer-events: none;
}

.hero-video-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: 0 24px 70px rgba(47, 69, 57, 0.16);
}

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

.hero-cta-area {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

.hero-programs-button {
  padding-right: clamp(56px, 7vw, 125px);
  padding-left: clamp(56px, 7vw, 125px);
  font-size: 24px;
}

.hero-cta-note {
  width: fit-content;
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.hero-cta-note .small {
  margin-top: 14px;
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.trust-row.trust-row-checks {
  display: grid;
  flex-wrap: nowrap;
  gap: 5px;
  max-width: 520px;
  margin-top: 0;
}

.trust-row.trust-row-checks span {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.35;
  text-align: left;
}

.trust-row.trust-row-checks span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-surface);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.hero-slider {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  background: var(--color-text);
}

.hero-slider::after {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
}

.hero-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.hero-content {
  width: min(100%, 760px);
  position: relative;
  z-index: 1;
}

.hero-content-container {
  width: min(100%, 550px);
  margin-left: 50px;
  margin-right: 2rem;
  color: var(--color-surface);
  pointer-events: auto;
}

.hero-content-inner {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slider.is-ready .hero-content-inner {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider h1 {
  line-height: 1.05;
  margin-bottom: 15px;
}

.hero-slider h1:not(.h1, .h2, .h3, .h4, .h5, .h6) {
  font-size: 68px;
}

.hero-subhead {
  font-family: var(--font-base);
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-button {
  margin-top: 25px;
  min-height: auto;
  padding: 20px 48px;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: var(--color-surface);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-button:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-surface);
  transform: translateY(-1px);
}

.hero-word {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-word.is-changing-out {
  opacity: 0;
  transform: translateY(-8px);
}

.hero-word.is-changing-in {
  opacity: 0;
  transform: translateY(8px);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  font-weight: 800;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 12px 40px rgba(47, 69, 57, 0.06);
}

.card-border-dark {
  border: 1px solid var(--color-text);
}

.card-align {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
}

.card-align-media {
  display: grid;
  align-items: center;
  min-height: clamp(180px, 18vw, 260px);
  margin-bottom: clamp(18px, 2vw, 28px);
}

.card-align-media img {
  width: 100%;
  max-height: clamp(180px, 18vw, 260px);
  object-fit: contain;
}

.card-align-title {
  min-height: 2.8em;
  display: grid;
  align-items: center;
}

.card-align-body {
  margin-bottom: 0;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.profile-card-media {
  width: min(100%, 220px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 40px;
}

.profile-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-card-content {
  min-width: 0;
}

.card-flat {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.card-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card-content {
  padding: clamp(18px, 2.6vw, 28px);
}

.program-tour-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.program-tour-heading {
  max-width: 18ch;
}

.program-tour-manifesto {
  border-radius: 24px;
}

.program-tour-manifesto-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.program-tour-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(56px, 7vw, 88px);
}

.program-tour-row figure,
.program-tour-duo figure {
  margin: 0;
}

.program-tour-kicker {
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.program-tour-copy p {
  margin-bottom: 14px;
}

.program-tour-copy p:last-child {
  margin-bottom: 0;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: 0 18px 44px rgba(47, 69, 57, 0.14);
}

.browser-frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 14px;
  background: var(--color-lime);
  border-bottom: 1px solid var(--color-border);
}

.browser-frame-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border);
}

.browser-frame-label {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-text);
  opacity: 0.75;
}

.browser-frame img {
  width: 100%;
}

.program-tour-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text);
  opacity: 0.82;
  text-align: center;
}

.program-tour-duo {
  margin-top: clamp(56px, 7vw, 88px);
}

.program-tour-duo-head {
  max-width: 720px;
}

.program-tour-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 28px;
}

.program-tour-band {
  margin-top: clamp(64px, 8vw, 96px);
  padding: clamp(36px, 5vw, 56px);
  border-radius: 24px;
  background: var(--color-text);
  color: var(--color-surface);
}

.program-tour-band .program-tour-kicker {
  color: var(--color-accent);
}

.program-tour-band p {
  color: var(--color-surface);
}

.program-tour-band-head {
  max-width: 64ch;
}

.program-tour-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.program-tour-band figure {
  margin: 0;
}

.program-tour-band img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.program-tour-band figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-surface);
  opacity: 0.78;
}

.program-tour-cta {
  margin-top: clamp(56px, 7vw, 80px);
}

.program-tour-cta p {
  margin-top: 14px;
}

.program-tour-testimonials {
  padding-top: 50px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  border-radius: 24px;
}

.testimonial-rating {
  margin-bottom: 18px;
  color: var(--color-accent);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.testimonial-quote {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.testimonial-body {
  margin-top: 14px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-surface);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.testimonial-name {
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.3;
}

.testimonial-meta {
  margin-top: 2px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-text);
  opacity: 0.78;
}

.library-card {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  justify-items: center;
  text-align: center;
}

.library-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.library-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library-card-date {
  margin-bottom: 0;
  font-weight: 900;
}

.library-card-link {
  color: var(--color-muted);
  font-weight: 700;
}

.post {
  width: min(100%, 900px);
  margin: 0 auto;
}

.post-header {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.post-date {
  font-weight: 900;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.post-title {
  max-width: 820px;
}

.post-hero {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.post-hero img {
  width: 100%;
  aspect-ratio: 2 / 0.95;
  object-fit: cover;
}

.post-content {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.post-content > * {
  margin: 0;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: clamp(10px, 2vw, 22px);
}

.post-content ul {
  padding-left: 1.4rem;
}

.post-next {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  padding-top: clamp(70px, 9vw, 130px);
  color: var(--color-text);
  text-decoration: none;
}

.post-prev {
  justify-content: flex-start;
}

.post-next-title {
  width: min(100%, 520px);
  margin: 0;
}

.post-next-arrow {
  font-size: 2rem;
  line-height: 1;
}

.media-circle {
  width: var(--media-size);
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-surface);
}

.media-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-sm {
  --media-size: clamp(96px, 12vw, 140px);
}

.media-md {
  --media-size: clamp(140px, 18vw, 220px);
}

.media-lg {
  --media-size: clamp(220px, 24vw, 340px);
}

.media-xl {
  --media-size: clamp(300px, 36vw, 520px);
}

.icon-mark {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--color-soft);
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 150px;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 150px;
  flex-shrink: 0;
}

.logo-group img {
  width: auto;
  height: 75px;
  flex-shrink: 0;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.image-frame-circle {
  width: var(--media-size);
  max-width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
}

.image-frame-circle img {
  height: 100%;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--color-accent);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.48em;
  width: 8px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-list-arrow li {
  padding-left: 46px;
}

.check-list-arrow li::before {
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23c5e6aa' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm45.66-93.66a8,8,0,0,1,0,11.32l-32,32a8,8,0,0,1-11.32-11.32L148.69,136H88a8,8,0,0,1,0-16h60.69l-18.35-18.34a8,8,0,0,1,11.32-11.32Z'%3E%3C/path%3E%3C/svg%3E") center / contain no-repeat;
}

.check-list-arrow li::after {
  display: none;
}

.pricing-card {
  max-width: 520px;
  margin: 34px auto 0;
}

.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--color-soft);
  color: var(--color-text);
  padding: 7px 13px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 12px 0;
}

.team-member {
  align-items: center;
}

.advisor {
  appearance: none;
  cursor: pointer;
  width: 100%;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: inherit;
  font: inherit;
}

.advisor-photo {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffffff, var(--color-soft));
  border: 1px solid var(--color-border);
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.advisor-name,
.advisor-title {
  display: block;
}

.advisor-name {
  min-height: calc(clamp(1.2rem, 2vw, 1.8rem) * 1.4 * 2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.2em;
}

.advisor-title {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
}

.advisor-photo img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
  object-position: center top;
}

.advisor-photo--zoom img {
  transform: scale(1.45);
  transform-origin: center top;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--page-pad);
}

.modal.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 27, 0.62);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 840px);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: 0 24px 70px rgba(47, 69, 57, 0.22);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-text);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.modal-inner {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
}

.modal-photo {
  max-width: 240px;
  margin-bottom: 0;
}

.modal-name,
.modal-title,
.modal-bio {
  margin-right: 0;
  margin-left: 0;
}

.modal-title {
  color: var(--color-accent);
  font-weight: 800;
}

.modal-bio {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.faq {
  border-top: 1px solid var(--color-border);
}

.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 800;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 2rem;
  line-height: 1;
  color: var(--color-accent);
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--color-muted);
}

.email-form {
  display: flex;
  gap: 10px;
}

.email-form input {
  min-width: 0;
  flex: 1;
  min-height: 52px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  color: var(--color-text);
  background: #ffffff;
}

.contact-form {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

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

.form-field {
  display: grid;
  gap: 8px;
  text-align: left;
  font-weight: 800;
}

.form-field span {
  color: var(--color-accent);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: var(--color-surface);
  color: var(--color-text);
  font: inherit;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-on-dark {
  color: var(--color-surface);
}

.form-on-dark .form-field span {
  color: var(--color-surface);
  opacity: 0.72;
}

.form-on-dark input,
.form-on-dark textarea {
  border-color: var(--color-surface);
  background: transparent;
  color: var(--color-surface);
}

.form-on-dark .btn {
  width: 100%;
  border-color: var(--color-surface);
  background: transparent;
  color: var(--color-surface);
}

.form-on-dark .btn:hover {
  background: var(--color-surface);
  border-color: var(--color-surface);
  color: var(--color-text);
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.social-icon-links a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .hero-split-video {
    min-height: 540px;
    grid-template-columns: 58% 42%;
  }

  .hero-split-copy {
    padding: 34px 24px 34px 36px;
  }

  .hero-split-media {
    min-height: 540px;
    padding: 34px 18px 34px 44px;
  }

  .hero-split-media::before {
    left: -210px;
    width: 420px;
  }

  .hero-programs-content {
    max-width: 100%;
  }

  .hero-programs-content h1 {
    max-width: 520px;
  }

  .hero-programs-content h1:not(.h1, .h2, .h3, .h4, .h5, .h6) {
    font-size: clamp(32px, 4vw, 42px);
  }

  .hero-programs-content p {
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-programs-button {
    padding-right: 56px;
    padding-left: 56px;
    font-size: 17px;
  }

  .hero-cta-note {
    max-width: 360px;
  }

  .hero-video-frame {
    width: min(100%, 380px);
  }

  .program-tour-top,
  .program-tour-row,
  .program-tour-band-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 620px;
    align-items: end;
    padding-bottom: 74px;
  }

  .hero-home,
  .hero-about {
    background:
      linear-gradient(180deg, rgba(247, 253, 241, 0.55) 0%, rgba(247, 253, 241, 0.95) 58%, var(--color-bg) 100%),
      url("https://images.squarespace-cdn.com/content/v1/693256ae38fbbf1bafd758b4/1a1bf763-f86a-44ef-a196-d00e8842c45f/c91c4263-d401-447f-9fe1-24bdf4604285--2.png?format=1000w") center top / cover no-repeat;
  }

  .hero-slider {
    height: 72vh;
    min-height: 420px;
    padding-bottom: 0;
  }

  .hero-content-container {
    width: min(90%, 342px);
    max-width: none;
    margin-right: 24px;
    margin-left: 24px;
    text-align: center;
  }

  .hero-slider h1 {
    line-height: 1.05;
  }

  .hero-slider h1:not(.h1, .h2, .h3, .h4, .h5, .h6) {
    font-size: 42px;
  }

  .hero-subhead {
    font-size: 28px;
  }

  .hero-button {
    width: auto;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 16px;
  }

  .hero-split-video {
    display: flex;
    flex-direction: column;
    min-height: auto;
    align-items: stretch;
    padding-bottom: 0;
  }

  .hero-split-copy {
    order: 1;
    padding: 12px 14px 6px;
    background: transparent;
  }

  .hero-split-media {
    order: 2;
    min-height: auto;
    padding: 24px 14px 32px;
    overflow: visible;
  }

  .hero-split-media::before {
    top: 0;
    left: 50%;
    width: 150%;
    height: 190px;
    transform: translateX(-50%);
    border-radius: 0 0 50% 50%;
  }

  .hero-programs-content {
    width: 100%;
    max-width: 100%;
    padding: 18px 16px 16px;
    border-radius: 18px;
    background: var(--color-surface);
    text-align: center;
  }

  .hero-programs-content h1 {
    max-width: 100%;
    margin: 4px auto 12px;
    text-align: center;
  }

  .hero-programs-content h1:not(.h1, .h2, .h3, .h4, .h5, .h6) {
    font-size: 34px;
  }

  .hero-programs-content p {
    text-align: center;
  }

  .hero-cta-area {
    display: flex;
    width: 100%;
  }

  .hero-programs-button {
    width: 100%;
    max-width: 100%;
    margin: 4px 0 10px;
    padding: 14px 20px;
    font-size: 16px;
    white-space: normal;
  }

  .hero-cta-note {
    width: 100%;
    max-width: 320px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .hero-cta-note .small {
    margin-top: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.35;
  }

  .trust-row.trust-row-checks {
    width: 100%;
    gap: 5px;
    margin-top: 0;
  }

  .trust-row.trust-row-checks span {
    width: 100%;
    font-size: 14px;
    line-height: 1.3;
  }

  .hero-video-frame {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(47, 69, 57, 0.14);
  }

  .hero-frame-video {
    border-radius: 24px;
  }

  .hero-actions,
  .email-form {
    flex-direction: column;
    align-items: stretch;
  }

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

  .program-tour-top,
  .program-tour-row,
  .program-tour-duo-grid,
  .program-tour-band-grid {
    grid-template-columns: 1fr;
  }

  .program-tour-heading {
    margin-right: auto;
    margin-left: auto;
  }

  .program-tour-band {
    border-radius: var(--radius-md);
  }

  .post-next {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .btn.hero-button {
    width: auto;
  }

  .btn.hero-programs-button {
    width: 100%;
  }

  .profile-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-card-media {
    width: min(100%, 190px);
    margin-right: auto;
    margin-left: auto;
  }

  .modal-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .modal-photo {
    max-width: 190px;
    margin-right: auto;
    margin-left: auto;
  }

  .modal-name,
  .modal-title,
  .modal-bio {
    margin-right: auto;
    margin-left: auto;
  }

  .trust-row {
    display: grid;
  }

  .trust-row.trust-row-checks {
    gap: 5px;
    margin-top: 0;
  }
}
