:root {
  --ink: #111111;
  --soft-ink: #312f2d;
  --muted: #716b65;
  --paper: #fbfaf6;
  --paper-warm: #f3eee7;
  --white: #ffffff;
  --red: #d71920;
  --accent: #86533f;
  --accent-light: #f0d5ba;
  --teal: #007b84;
  --gold: #d7a849;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 28px 90px rgba(28, 24, 21, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(215, 25, 32, 0.12), transparent 30rem),
    radial-gradient(circle at 18% 26%, rgba(0, 123, 132, 0.11), transparent 26rem),
    linear-gradient(180deg, var(--paper), var(--paper-warm) 52%, var(--paper));
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 8vw, 8.7rem);
  line-height: 0.9;
}

h2 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5.1vw, 6rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  line-height: 1.1;
}

p {
  color: var(--muted);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 246, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 148px;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 36px);
  font-size: 0.88rem;
  font-weight: 850;
}

nav a,
.header-cta,
.button,
.text-link,
.site-footer a {
  text-decoration: none;
}

.header-cta,
.button,
.lead-form button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
}

.header-cta,
.button.primary,
.lead-form button {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.16);
}

.header-cta,
.button,
.lead-form button,
nav a {
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.header-cta:hover,
.button:hover,
.lead-form button:hover {
  transform: translateY(-2px);
}

nav a:hover {
  opacity: 0.62;
}

.header-cta {
  padding: 0 18px;
}

.button {
  padding: 0 22px;
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.feature-panel .eyebrow,
.start .eyebrow {
  color: var(--accent-light);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.56);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px) clamp(118px, 13vw, 190px);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
}

.hero::before {
  width: 38vw;
  height: 38vw;
  right: 5vw;
  top: 6vh;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.15), transparent 68%);
}

.hero::after {
  width: 34vw;
  height: 34vw;
  left: 4vw;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 123, 132, 0.12), transparent 68%);
}

.hero-cover {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  z-index: -2;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.7) 66%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.16), rgba(17, 17, 17, 0.54));
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(100%, 1120px);
  padding: clamp(50px, 8vw, 90px) clamp(18px, 5vw, 54px);
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.logos-band {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(22px, 4vw, 56px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.22);
  overflow: hidden;
}

.logos-band span {
  position: relative;
  display: grid;
  min-height: 78px;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.75rem, 1.2vw, 0.92rem);
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(17, 17, 17, 0.42);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  transition:
    color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.logos-band span::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 17px;
  height: 2px;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.logos-band span:hover {
  color: var(--white);
  background: rgba(134, 83, 63, 0.72);
  transform: translateY(-3px);
}

.logos-band span:hover::after {
  transform: scaleX(1);
}

.logos-band span:last-child {
  border-right: 0;
}

.statement,
.method,
.start {
  padding: clamp(62px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.statement {
  margin-top: clamp(22px, 4vw, 50px);
  text-align: center;
}

.statement h2 {
  margin-inline: auto;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: clamp(34px, 5vw, 68px) auto 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.statement-grid article {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.statement-grid article:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.feature-panel {
  position: relative;
  min-height: clamp(620px, 78vw, 940px);
  display: grid;
  place-items: center;
  padding: clamp(76px, 10vw, 150px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 4vw, 58px);
  z-index: -1;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(17, 17, 17, 0.16), rgba(17, 17, 17, 0.58) 66%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.48));
  box-shadow: var(--shadow);
  transition: transform 700ms ease;
}

.feature-panel > img {
  position: absolute;
  inset: clamp(18px, 4vw, 58px);
  z-index: -2;
  width: calc(100% - clamp(36px, 8vw, 116px));
  height: calc(100% - clamp(36px, 8vw, 116px));
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  transition: transform 700ms ease;
}

.feature-panel:hover > img {
  transform: scale(1.035);
}

.feature-panel:hover::before {
  transform: scale(1.035);
}

.feature-panel .feature-copy {
  display: grid;
  justify-items: center;
  width: min(100%, 780px);
  padding: clamp(26px, 5vw, 54px);
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.52);
}

.feature-copy p:not(.eyebrow),
.team-copy p,
.start p {
  max-width: 620px;
  font-size: 1.05rem;
}

.feature-panel .feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.feature-panel .text-link {
  color: var(--white);
  border-color: var(--accent-light);
}

.lead-magnet {
  display: grid;
  justify-items: center;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: clamp(76px, 10vw, 150px) clamp(18px, 5vw, 72px);
  background: var(--white);
  text-align: center;
}

.lead-magnet h2 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(2.25rem, 5.1vw, 6rem);
  line-height: 0.94;
}

.lead-magnet p {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.lead-magnet .text-link {
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: currentColor;
  font-weight: 950;
  border-bottom: 3px solid currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.text-link:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}

.method {
  background:
    radial-gradient(circle at 82% 14%, rgba(215, 25, 32, 0.14), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.18));
}

.method-intro {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: clamp(34px, 6vw, 84px);
  text-align: center;
}

.method-intro p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.method-image {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.method-image img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  object-position: 50% 28%;
  transition: transform 700ms ease;
}

.method-image:hover img {
  transform: scale(1.025);
}

.story-feature {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(82px, 10vw, 150px) clamp(18px, 5vw, 72px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.story-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.78) 68%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.56), rgba(17, 17, 17, 0.74));
}

.story-feature > video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-feature-copy {
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.52);
}

.story-feature .eyebrow {
  color: var(--accent-light);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1120px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.story-grid article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  text-align: left;
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.story-grid article:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.team {
  display: grid;
  place-items: center;
  padding: clamp(82px, 10vw, 150px) clamp(18px, 5vw, 72px);
  background: var(--white);
  text-align: center;
}

.team-copy {
  width: min(100%, 980px);
}

.team-copy p {
  margin-inline: auto;
  max-width: 620px;
}

.testimonials {
  display: grid;
  gap: 0;
  padding: 0 0 clamp(82px, 10vw, 140px);
  background: var(--paper-warm);
  color: var(--ink);
  text-align: center;
}

.testimonials-hero {
  position: relative;
  display: grid;
  min-height: clamp(360px, 45vw, 580px);
  place-items: center;
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.testimonials-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.7) 68%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.68));
}

.testimonials-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-intro {
  width: min(100%, 980px);
  margin: 0 auto;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.52);
}

.testimonials .eyebrow {
  color: var(--accent-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1180px);
  margin: clamp(36px, 6vw, 74px) auto 0;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.testimonial-grid article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-align: left;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.testimonial-grid article:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.testimonial-grid h3 {
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  text-transform: none;
}

.credit {
  color: var(--soft-ink);
  font-weight: 900;
}

.testimonial-photo img {
  width: 100%;
  max-width: 1280px;
  margin: clamp(34px, 6vw, 72px) auto 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 700ms ease;
}

.testimonial-photo:hover img {
  transform: scale(1.018);
}

.start {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.64)),
    url("assets/images/teen-grappling.jpg") center / cover;
  overflow: hidden;
  isolation: isolate;
}

.start::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.58));
}

.start-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start p {
  color: rgba(255, 255, 255, 0.76);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 900;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.lead-form select,
.lead-form textarea,
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: var(--white);
}

.lead-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.lead-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 32px clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer img {
  width: 142px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 950;
}

.page-hero,
.content-section,
.benefit-grid,
.faq-preview,
.program-routing,
.about-grid,
.instructor-grid,
.faq-page,
.offer-layout,
.guarantee-note,
.contact-hero,
.newsletter,
.testimonial-strip,
.cta-strip {
  padding: clamp(70px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.page-hero {
  min-height: calc(82vh - 76px);
}

.page-hero h1,
.contact-hero h1 {
  font-size: clamp(3rem, 6.6vw, 6.8rem);
}

.clean-hero,
.content-section.centered,
.cta-strip,
.guarantee-note,
.testimonial-strip {
  display: grid;
  align-content: center;
  place-items: center;
  gap: 16px;
  text-align: center;
}

.clean-hero p:not(.eyebrow),
.content-section.centered p,
.cta-strip p,
.guarantee-note p,
.testimonial-strip > p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.media-hero {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.media-hero::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  z-index: -1;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.7) 68%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.56));
  box-shadow: var(--shadow);
}

.media-hero > img {
  position: absolute;
  inset: clamp(18px, 3vw, 42px);
  z-index: -2;
  width: calc(100% - clamp(36px, 6vw, 84px));
  height: calc(100% - clamp(36px, 6vw, 84px));
  object-fit: cover;
  border-radius: var(--radius);
}

.media-hero > div {
  width: min(100%, 1040px);
  padding: clamp(42px, 8vw, 92px) clamp(18px, 5vw, 56px);
  display: grid;
  justify-items: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.52);
}

.media-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.program-routing {
  display: grid;
  gap: clamp(24px, 5vw, 60px);
}

.program-routing article,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  justify-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
  text-align: center;
}

.program-routing article:nth-child(even),
.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.program-routing article:nth-child(even) img {
  order: 2;
}

.program-routing img,
.about-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-grid img {
  aspect-ratio: 4 / 5;
  object-position: 50% 28%;
}

.benefit-grid,
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1240px);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.benefit-grid article,
.instructor-grid article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 230px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.74);
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.benefit-grid article:hover,
.instructor-grid article:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.compact-story {
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.faq-preview,
.faq-page {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  text-align: center;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.question-list,
.faq-group {
  display: grid;
  gap: 12px;
}

details {
  padding: 22px clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

details p {
  margin: 14px 0 0;
}

.testimonial-strip {
  background: var(--paper-warm);
}

.movement-section,
.schedule-section {
  display: grid;
  place-items: center;
  gap: 16px;
  padding: clamp(70px, 10vw, 140px) clamp(18px, 5vw, 72px);
  text-align: center;
}

.movement-section p:not(.eyebrow),
.schedule-section > p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 980px);
  margin-top: clamp(20px, 4vw, 44px);
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.schedule-grid article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 300px;
  padding: clamp(26px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.status-note {
  max-width: 360px;
  color: var(--accent);
  font-weight: 900;
}

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

.offer-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 36px);
  width: min(100%, 1120px);
  margin: 0 auto;
}

.offer-layout article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 360px;
  padding: clamp(30px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.48fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
  text-align: center;
}

.contact-hero h1 {
  max-width: 820px;
  margin-inline: auto;
}

.contact-hero p {
  max-width: 620px;
  margin-inline: auto;
}

.contact-facts {
  justify-items: center;
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--soft-ink);
  font-weight: 900;
}

.contact-facts a {
  text-decoration: none;
}

.page-form {
  background: var(--white);
}

.newsletter {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--paper-warm);
}

.newsletter-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 900px);
  margin-top: 24px;
}

.newsletter-form label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
}

.newsletter-form button {
  min-height: 48px;
  align-self: end;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .team,
  .testimonials,
  .lead-magnet,
  .start,
  .program-routing article,
  .program-routing article:nth-child(even),
  .about-grid,
  .faq-preview,
  .faq-page,
  .contact-hero,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .program-routing article:nth-child(even) img {
    order: 0;
  }

  .statement-grid,
  .logos-band,
  .story-grid,
  .testimonial-grid,
  .benefit-grid,
  .instructor-grid,
  .newsletter-form,
  .schedule-grid,
  .preschool-testimonials .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 11px 16px;
  }

  .brand img {
    width: 118px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(3.25rem, 18vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 13vw, 3.4rem);
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 320px;
    min-height: calc(100vh - 68px);
  }

  .hero-background {
    inset: 12px;
  }

  .hero-background img {
    object-position: center;
  }

  .feature-panel {
    min-height: 560px;
    padding-inline: 12px;
  }

  .feature-panel::before,
  .feature-panel > img {
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }

  .statement-grid,
  .logos-band,
  .story-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .logos-band {
    bottom: 20px;
  }

  .method-image img {
    aspect-ratio: 4 / 5;
  }

  .benefit-grid,
  .instructor-grid,
  .newsletter-form,
  .schedule-grid,
  .preschool-testimonials .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: calc(78vh - 68px);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
