*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --ink: #2f2f30;
  --ink-soft: #5a5a5b;
  --ink-muted: #8a8a8b;
  --paper: #f5f5f5;
  --paper-alt: #ececec;
  --sage: #8a9e7a;
  --sage-dim: rgba(138, 158, 122, 0.12);
  --serif: 'Barlow Condensed', serif;
  --sans: "Inter", system-ui, sans-serif;
  --brand: "Montserrat", sans-serif;
  --max: 1320px;
  --gutter: clamp(1.25rem, 3.5vw, 2.5rem);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem var(--gutter);
  background: rgba(245, 245, 245, 0.94);
  backdrop-filter: blur(14px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-symbol {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}
.nav-wordmark {
  font-family: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.lang-toggle {
  display: flex;
  border: 1px solid rgba(47, 47, 48, 0.15);
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.32rem 0.65rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-btn.active {
  background: var(--ink);
  color: var(--paper);
}
.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--sage);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1.6rem;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.mobile-lang {
  display: flex;
  gap: 0;
  border: 1px solid rgba(47, 47, 48, 0.15);
}

.mobile-menu .mobile-cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  margin-top: 0.5rem;
}

/* HERO */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 4.5rem;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 6rem
    max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}
.hero-eyebrow {
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--sage);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--ink-soft);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 40ch;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--sage);
}
.btn-ghost {
  display: inline-block;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(47, 47, 48, 0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--paper-alt);
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  gap: 0.75rem;
  /* background fallback while image loads */
  background: linear-gradient(155deg, #e5e4e2 0%, #d6d4d0 100%);
}
.hero-img-placeholder picture,
.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-img-placeholder img {
  object-fit: cover;
}
.hero-img-placeholder svg {
  opacity: 0.12;
}
.hero-note {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* SHARED */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section {
  padding: 7rem 0;
}
section.light-section {
  background: var(--paper-alt);
}
.section-label {
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--sage);
}

/* OVERSIZED TYPOGRAPHY */
.section-headline {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2rem;
}
.section-headline em {
  font-style: italic;
  color: var(--ink-soft);
}
.section-body {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.85;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* DARK */
.dark-section {
  background: var(--ink);
}
.dark-section .section-label {
  color: var(--sage);
}
.dark-section .section-label::before {
  background: var(--sage);
}
.dark-section .section-headline {
  color: var(--paper);
}
.dark-section .section-headline em {
  color: rgba(245, 245, 245, 0.38);
}
.dark-section .section-body {
  color: rgba(245, 245, 245, 0.5);
}

/* PROBLEM */
.problem-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.problem-num {
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--sage);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  display: block;
}
.problem-item h3 {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 0.4rem;
}
.problem-item p {
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.42);
  line-height: 1.75;
  font-weight: 300;
}

/* OBJECTIONS */
.objections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
  background: var(--paper-alt);
}
.objection {
  padding: 2.5rem;
  border-bottom: 1px solid rgba(47, 47, 48, 0.07);
  border-right: 1px solid rgba(47, 47, 48, 0.07);
}
.objection:nth-child(even) {
  border-right: none;
}
.objection:nth-child(3),
.objection:nth-child(4) {
  border-bottom: none;
}
.objection-q {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.objection p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 10rem var(--gutter);
  background: var(--paper-alt);
}
.final-cta .section-label {
  justify-content: center;
}
.final-cta .section-label::before {
  display: none;
}
.final-cta .section-headline {
  margin: 1.5rem auto 2rem;
  max-width: 14ch;
}
.final-cta .section-body {
  margin: 0 auto 3rem;
}
.cta-note {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 1.5rem;
  color: var(--sage);
  font-weight: 500;
}

/* DOJO */
.dojo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 900px;
}
.dojo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  max-height: 900px;
}
.dojo-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 2px solid var(--paper);
}

.dojo-grid-item {
  overflow: hidden;
}

.dojo-grid-item picture,
.dojo-grid-item img {
  width: 100%;
  height: 100%;
  display: block;
}

.dojo-grid-item img {
  object-fit: cover;
}

.dojo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem var(--gutter);
}

/* COACHES */
.coaches-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2.5rem;
  margin-top: 4rem;
}

.coach-card {
  width: min(100%, 380px);
  text-align: center;
}
.coach-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, #e5e4e2, #cccac6);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.coach-belt {
  font-weight: 500;
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.55rem;
}
.coach-name {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.coach-philosophy {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: 4rem;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-attr {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

/* SCHEDULE */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 3rem;
  background: var(--paper-alt);
}
.schedule-day {
  border-right: 1px solid rgba(47, 47, 48, 0.07);
}
.schedule-day:last-child {
  border-right: none;
  
}
.schedule-day:last-child .class-slot .type {
  color: var(--ink-muted);
  font-weight: 300;
}
.day-name {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 1rem;
  border-bottom: 1px solid rgba(47, 47, 48, 0.07);
  display: block;
  text-align: center;
}
.day-classes {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  gap: 0.5rem;
}
.class-slot {
  padding: 0.65rem 0.5rem;
  background: rgba(47, 47, 48, 0.03);
  font-size: 1rem;
  text-align: center;
  line-height: 1.45;
}
.class-slot .time {
  display: block;
  color: var(--ink-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.class-slot .type {
  display: block;
  color: var(--ink);
  font-weight: 400;
  font-size: 1rem;
}
.class-slot .sub-type {
  display: block;
  color: #5a7a4a;
  font-weight: 400;
  font-size: 0.85rem;
}
.class-slot.beginners {
  background: var(--sage-dim);
}
.class-slot.beginners .type {
  color: #5a7a4a;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.pricing-card {
  padding: 2.5rem 2rem;
  background: var(--paper-alt);
  position: relative;
  text-align: center;
}
.pricing-card.featured {
  background: var(--ink);
}
.pricing-badge {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.5rem;
}
.pricing-plan {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}
.pricing-card.featured .pricing-plan {
  color: rgba(245, 245, 245, 0.38);
}
.pricing-amount {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card.featured .pricing-amount {
  color: var(--paper);
}
.pricing-period {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}
.pricing-card.featured .pricing-period {
  color: rgba(245, 245, 245, 0.38);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 300;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(47, 47, 48, 0.08);
}
.pricing-card.featured .pricing-features li {
  color: rgba(245, 245, 245, 0.55);
  border-color: rgba(245, 245, 245, 0.08);
}
.btn-light {
  display: inline-block;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: background 0.2s;
}
.btn-light:hover {
  background: var(--sage);
  color: var(--paper);
}
.pricing-note {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1.5rem;
  color: var(--sage);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  max-width: 64ch;
}
.faq-item {
  border-top: 1px solid rgba(47, 47, 48, 0.1);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(47, 47, 48, 0.1);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--sage);
  transition: transform 0.2s, opacity 0.2s;
}
.faq-icon::before {
  width: 16px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-icon::after {
  width: 1px;
  height: 16px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  display: none;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 300;
  padding-bottom: 1.5rem;
}
.faq-item.open .faq-a {
  display: block;
}

/* MERCH */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.merch-img {
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, #e5e4e2, #cccac6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.merch-name {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.merch-price {
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.merch-soon {
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
  display: block;
  margin-top: 2.5rem;
}

/* LOCATION */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-map {
  aspect-ratio: 4/3;
  background: var(--paper-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.location-row {
  display: flex;
  gap: 2rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(47, 47, 48, 0.08);
  align-items: center;
}
.location-row:last-child {
  border-bottom: 1px solid rgba(47, 47, 48, 0.08);
}
.loc-label {
  font-weight: 500;
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  min-width: 5rem;
  flex-shrink: 0;
}
.loc-val {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
}
.contact-messengers {
  display: inline-flex;
  vertical-align: sub;
  gap: 0.6rem;
  margin-left: 0.5rem;
}
.messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.85rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 4rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-symbol {
  width: 33px;
  height: auto;
}
.footer-wordmark {
  font-family: var(--brand);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--paper);
}
.footer-sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.22);
  margin-top: 0.35rem;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* color: rgba(245, 245, 245, 0.32); */
  text-decoration: none;
  transition: color 0.2s;

  color: var(--ink-muted);
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--paper);
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(245, 245, 245, 0.16);
  letter-spacing: 0.04em;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-eyebrow {
  animation: fadeUp 0.6s ease both;
}
.hero-headline {
  animation: fadeUp 0.6s 0.12s ease both;
}
.hero-sub {
  animation: fadeUp 0.6s 0.24s ease both;
}
.hero-actions {
  animation: fadeUp 0.6s 0.36s ease both;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 8rem var(--gutter) 5rem;
  }
  .two-col,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .dojo-section {
    grid-template-columns: 1fr;
    min-height: 70vh;
    max-height: none;
  }
  .dojo-grid {
    grid-template-columns: 1fr 1fr;
    order: 1;
    max-height: none;
  }
  .dojo-text {
    order: -1;
  }
  /* .coaches-grid {
    grid-template-columns: 1fr 1fr;
  } */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .merch-grid {
    grid-template-columns: 1fr 1fr;
  }
  .path-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
    overflow-x: auto;
  }
  .schedule-grid .schedule-day:last-child {
    grid-column: 1 / -1;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .section-headline {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .hero-headline {
    font-size: clamp(3.2rem, 11vw, 5rem);
  }
  .dojo-grid { grid-template-columns: 1fr; }
  .dojo-grid-item {
    margin: 5px var(--gutter);
    height: 250px;

  }
  .coaches-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .objections-grid {
    grid-template-columns: 1fr;
  }
  .objection {
    border-right: none !important;
  }
  .objection:nth-child(3) {
    border-bottom: 1px solid rgba(47, 47, 48, 0.07) !important;
  }
  .objection:nth-child(4) {
    border-bottom: none !important;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MODAL OVERLAY */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47,47,48,0.7);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

/* MODAL CARD */
.modal {
  background: var(--paper);
  width: 100%;
  max-width: 480px;
  max-height: 90svh;
  overflow-y: auto;
  padding: 3rem 2.5rem;
  position: relative;
  animation: modalIn .25s ease both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-muted);
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem;
  transition: color .2s;
}

.modal-close:hover { color: var(--ink); }

.modal-label {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

.modal-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--sage);
}

.modal-title {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: .75rem;
}

.modal-desc {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* FORM FIELDS */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-input {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper-alt);
  border: 1px solid transparent;
  padding: .85rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--ink-muted); }
.form-input:focus { border-color: rgba(47,47,48,.25); }
.form-input.error { border-color: #c0392b; }

.form-error-text {
  font-size: .75rem;
  color: #c0392b;
  display: none;
}

.form-input.error + .form-error-text { display: block; }

/* SWITCH */
.switch-group {
  display: flex;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(47,47,48,.15);
}

.switch-btn {
  cursor: pointer;
  flex: 1;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: .65rem .8rem;
}
.switch-btn.active {
  background: var(--sage);
  color: var(--paper);
}

/* SUBMIT */
.form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  margin-top: .5rem;
}

.form-submit:hover { background: var(--sage); }
.form-submit:disabled { background: var(--ink-muted); cursor: not-allowed; }

.form-submit .submit-spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top-color: var(--paper);
  border-right-color: var(--paper);
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
  opacity: 0;
  pointer-events: none;
}

.form-submit.loading .submit-spinner {
  display: inline-block;
  opacity: 1;
}

@keyframes spinner-rotate {
  to { transform: rotate(360deg); }
}

/* MESSAGES */
.form-message {
  display: none;
  padding: 1rem;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center;
}

.form-message.success {
  display: block;
  background: var(--sage-dim);
  color: #3d5c30;
}

.form-message.error {
  display: block;
  background: rgba(192,57,43,.08);
  color: #c0392b;
}

/* RESPONSIVE */
@media(max-width: 600px) {
  .modal { padding: 2.5rem 1.5rem; }
}