:root {
  --green: #0f3d35;
  --green-dark: #082822;
  --cream: #f8f1e7;
  --sand: #e4d1bd;
  --clay: #b96f43;
  --ink: #15312d;
  --muted: #6b7772;
  --white: #fffaf2;
  --line: rgba(15, 61, 53, 0.16);
  --shadow: 0 14px 34px rgba(15, 45, 38, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  font-size: 15px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  padding: 0 48px;
  background: rgba(248, 241, 231, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--green);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.header-cta,
.button.primary {
  background: var(--clay);
  color: #fff;
}

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

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 42vw, 760px);
  display: grid;
  place-items: center start;
  overflow: hidden;
  background: var(--green-dark);
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 58% 34%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 40, 34, 0.34), rgba(8, 40, 34, 0.08) 54%, rgba(8, 40, 34, 0.22)),
    linear-gradient(180deg, rgba(5, 13, 11, 0.22), rgba(5, 13, 11, 0.24)),
    rgba(216, 208, 199, 0.28);
}

.hero-content {
  position: relative;
  width: min(58vw, 800px);
  max-width: 820px;
  margin-left: clamp(30px, 12vw, 230px);
  padding: 120px 24px 92px;
  text-align: left;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 250, 242, 0.78);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  display: grid;
  justify-items: start;
  gap: 0.02em;
  text-align: left;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

h3 {
  font-size: 24px;
}

.hero-content > p:not(.eyebrow) {
  max-width: 440px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: 15px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-meta span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
  color: rgba(255, 250, 242, 0.82);
  font-size: 11px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 18px;
  margin-top: 30px;
}

.hero-actions .button {
  min-width: 166px;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.06);
  border-color: rgba(255, 250, 242, 0.82);
  color: var(--white);
  letter-spacing: 0.16em;
  text-transform: none;
}

.hero-actions .button.primary {
  background: rgba(255, 250, 242, 0.1);
}

.hero-actions .button:hover {
  background: rgba(255, 250, 242, 0.18);
}

.intro,
.first-visit,
.classes,
.pricing,
.premium-section,
.booking,
.app-section,
.faq,
.contact {
  padding: 56px 48px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 64px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.intro-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--green);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.app-teaser {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 1080px;
  margin: -24px auto 40px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.9), rgba(255, 250, 242, 0.62)),
    rgba(255, 250, 242, 0.72);
  box-shadow: 0 12px 30px rgba(15, 45, 38, 0.07);
}

.app-teaser__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
}

.app-teaser .eyebrow {
  margin-bottom: 5px;
}

.app-teaser h2 {
  font-size: 28px;
}

.app-teaser p:not(.eyebrow) {
  max-width: 620px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.app-teaser__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.app-teaser__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(15, 61, 53, 0.18);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbf5ed;
}

.pillars article {
  min-height: 160px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.pillars span {
  color: var(--clay);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
}

.pillars h3 {
  margin-top: 14px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillars p,
.first-visit p,
.class-card p,
.price-card p,
.price-card small,
.class-card li,
.app-copy p,
.app-card span,
.content-panel p,
.faq p,
.contact p,
.site-footer p,
address {
  color: var(--muted);
}

.first-visit {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  gap: 46px;
  align-items: start;
  background: var(--green);
  color: var(--white);
}

.first-visit .eyebrow {
  color: var(--sand);
}

.first-visit h2 {
  max-width: 440px;
}

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

.visit-points article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.06);
}

.visit-points span {
  color: var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.visit-points h3 {
  margin-top: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-points p {
  color: rgba(255, 250, 242, 0.72);
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.method {
  min-height: 470px;
}

.media {
  min-height: 440px;
  overflow: hidden;
}

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

.method .media img {
  object-position: 52% center;
}

.method .media {
  min-height: 470px;
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
  background: var(--white);
}

.content-panel p {
  max-width: 620px;
  font-size: 16px;
}

blockquote {
  margin: 24px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--clay);
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.08;
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 24px;
}

.class-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.class-card,
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.class-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  background:
    linear-gradient(180deg, rgba(228, 209, 189, 0.16), rgba(255, 250, 242, 0) 38%),
    var(--white);
  box-shadow: 0 12px 34px rgba(15, 45, 38, 0.09);
}

.class-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--green-dark);
}

.class-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 40, 34, 0.1), rgba(8, 40, 34, 0.58)),
    linear-gradient(90deg, rgba(8, 40, 34, 0.28), transparent 70%);
}

.class-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.class-card:hover img {
  transform: scale(1.035);
}

.class-card--foundation img {
  object-position: center 48%;
}

.class-card--progression img {
  object-position: 54% 48%;
}

.class-card--flow img {
  object-position: 52% center;
}

.class-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
}

.class-card__body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.class-kicker {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.class-card h3 {
  margin-top: 8px;
  font-size: 25px;
}

.class-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.class-meta span {
  padding: 5px 9px;
  border: 1px solid rgba(15, 61, 53, 0.13);
  border-radius: 999px;
  color: var(--green);
  background: rgba(248, 241, 231, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.class-card ul {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.class-card li {
  font-size: 13px;
}

.class-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid rgba(15, 61, 53, 0.42);
}

.price-grid {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1160px;
}

.price-card {
  position: relative;
  min-height: 198px;
  padding: 26px 20px 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(228, 209, 189, 0.18), rgba(255, 250, 242, 0) 46%),
    var(--white);
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 54px;
  height: 2px;
  background: var(--clay);
  transform: translateX(-50%);
  opacity: 0.62;
}

.price-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(185, 111, 67, 0.22);
  border-radius: 999px;
  color: var(--clay);
  background: rgba(255, 250, 242, 0.72);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 600;
}

.price-card h3 {
  margin: 12px 0 14px;
  font-size: 25px;
}

.price-card p {
  margin: 14px 0 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  white-space: nowrap;
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(228, 209, 189, 0.12), rgba(8, 40, 34, 0) 44%),
    var(--green);
  color: var(--white);
}

.price-card.featured p,
.price-card.featured strong,
.price-card.featured small,
.price-card.featured .price-mark {
  color: var(--white);
}

.price-card.featured .price-mark {
  border-color: rgba(255, 250, 242, 0.22);
  background: rgba(255, 250, 242, 0.08);
}

.price-card small {
  display: block;
  max-width: 190px;
  margin: 16px auto 0;
  font-size: 12px;
}

.premium-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 54px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 40, 34, 0.96), rgba(15, 61, 53, 0.9)),
    var(--green-dark);
  color: var(--white);
}

.premium-copy,
.premium-benefits {
  max-width: 560px;
}

.premium-copy {
  justify-self: end;
}

.premium-section .eyebrow {
  color: var(--sand);
}

.premium-copy p {
  color: rgba(255, 250, 242, 0.76);
  font-size: 15px;
}

.premium-note,
.premium-limit {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 2px solid var(--clay);
  background: rgba(255, 250, 242, 0.07);
}

.premium-options {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 2px solid var(--clay);
  background: rgba(255, 250, 242, 0.07);
}

.premium-options p {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 13px;
}

.premium-options strong {
  color: var(--white);
}

.premium-options span {
  color: rgba(255, 250, 242, 0.72);
}

.premium-limit {
  margin-top: 12px;
  border-left-color: rgba(255, 250, 242, 0.28);
  background: transparent;
}

.premium-benefits {
  display: grid;
  gap: 12px;
  justify-self: start;
}

.premium-benefits article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.06);
}

.premium-benefits span {
  grid-row: span 2;
  color: var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1;
}

.premium-benefits h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-benefits p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 13px;
}

.booking {
  background: #fbf5ed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 36px 60px;
  align-items: end;
  max-width: 1080px;
  margin: 0 auto 22px;
}

.booking-intro .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.booking-intro h2 {
  grid-column: 1;
  grid-row: 2;
}

.booking-intro p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.booking-widget {
  max-width: 1080px;
  min-height: 590px;
  margin: 0 auto;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

#bsport-widget-866981 {
  min-height: 560px;
}

#bsport-widget-866981 .bs-book-button-card {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 112px !important;
  min-height: 38px !important;
  padding: 0 16px !important;
  background: var(--green) !important;
  border: 1px solid rgba(15, 61, 53, 0.88) !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 18px rgba(15, 61, 53, 0.18) !important;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease !important;
}

#bsport-widget-866981 .bs-book-button-card--disabled,
#bsport-widget-866981 .bs-book-button-card.trps-widget-action--unavailable {
  background: rgba(15, 61, 53, 0.08) !important;
  border-color: rgba(15, 61, 53, 0.12) !important;
  box-shadow: none !important;
  transform: none !important;
}

#bsport-widget-866981 .bs-book-button-card--disabled .bs-book-button-card__inner__text,
#bsport-widget-866981 .bs-book-button-card.trps-widget-action--unavailable .bs-book-button-card__inner__text {
  color: rgba(15, 61, 53, 0.58) !important;
}

#bsport-widget-866981 .bs-book-button-card:hover,
#bsport-widget-866981 .bs-book-button-card:focus-within {
  background: var(--green-dark) !important;
  box-shadow: 0 10px 24px rgba(15, 61, 53, 0.24) !important;
  transform: translateY(-1px) !important;
}

#bsport-widget-866981 .bs-book-button-card--disabled:hover,
#bsport-widget-866981 .bs-book-button-card--disabled:focus-within,
#bsport-widget-866981 .bs-book-button-card.trps-widget-action--unavailable:hover,
#bsport-widget-866981 .bs-book-button-card.trps-widget-action--unavailable:focus-within {
  background: rgba(15, 61, 53, 0.08) !important;
  box-shadow: none !important;
  transform: none !important;
}

#bsport-widget-866981 .bs-book-button-card__inner {
  width: auto !important;
  min-height: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#bsport-widget-866981 .bs-book-button-card__inner__text {
  width: auto !important;
  color: var(--white) !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 360px;
  gap: 38px;
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
}

.app-section .eyebrow {
  color: var(--sand);
}

.app-copy {
  max-width: 720px;
}

.app-copy p {
  max-width: 620px;
  color: rgba(255, 250, 242, 0.76);
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.store-badge {
  display: grid;
  min-width: 160px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 250, 242, 0.26);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.08);
}

.store-badge span {
  font-size: 11px;
  color: rgba(255, 250, 242, 0.68);
}

.store-badge strong {
  font-size: 16px;
}

.app-card {
  justify-self: end;
  width: min(100%, 340px);
  padding: 30px;
  background: var(--white);
  color: var(--green);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.app-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 700;
}

.app-card p {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-card h3 {
  font-size: 30px;
}

.app-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

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

.studio ul {
  margin: 18px 0 30px;
  padding-left: 20px;
  color: var(--muted);
}

.collage {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 8px;
  padding: 8px;
  background: var(--white);
}

.collage img:first-child {
  grid-row: span 2;
}

.studio-photo {
  padding: 8px;
  background: var(--white);
}

.studio-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: 46px;
  max-width: 1292px;
  margin: 0 auto;
}

.faq .section-heading {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--green);
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 54px;
  align-items: start;
  background: var(--green-dark);
  color: var(--white);
}

.contact .eyebrow {
  color: var(--sand);
}

.contact p {
  color: rgba(255, 250, 242, 0.78);
  max-width: 520px;
}

.contact .button {
  margin-top: 12px;
  width: auto;
}

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

.contact-actions .button {
  margin-top: 0;
}

.contact-actions .button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 250, 242, 0.46);
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 14px;
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 250, 242, 0.24);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 6px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 4px;
  padding: 14px 16px;
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(360px, 1.25fr) minmax(230px, 0.9fr);
  gap: 34px;
  align-items: start;
  padding: 40px 56px 34px;
  background: var(--green);
  color: var(--white);
}

.site-footer h2 {
  margin: 0;
  font-size: 54px;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 8px 0 0;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  max-width: 440px;
}

.footer-nav p,
.footer-contact p {
  margin: 0 0 6px;
  color: rgba(255, 250, 242, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 250, 242, 0.78);
  font-size: 13px;
  font-weight: 600;
}

address {
  font-style: normal;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 242, 0.16);
  color: rgba(255, 250, 242, 0.72);
  font-size: 12px;
}

.footer-legal p {
  width: 100%;
  margin: 0 0 2px;
  color: rgba(255, 250, 242, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-legal a {
  border-bottom: 1px solid rgba(255, 250, 242, 0.28);
}

.mobile-booking-bar {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 62px;
    padding: 0 20px;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 11px;
  }

  .menu-toggle span {
    height: 2px;
    background: var(--green);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .main-nav a {
    padding: 18px 24px;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(78vw, 620px);
    margin-left: clamp(22px, 9vw, 80px);
  }

  .section-grid,
  .first-visit,
  .booking-intro,
  .app-section,
  .split,
  .faq,
  .contact,
  .premium-section {
    grid-template-columns: 1fr;
  }

  .intro,
  .first-visit,
  .classes,
  .pricing,
  .premium-section,
  .booking,
  .app-section,
  .faq,
  .contact {
    padding: 44px 22px;
  }

  .pillars,
  .visit-points,
  .class-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-panel {
    padding: 42px 22px;
  }

  .booking-widget {
    min-height: 540px;
    padding: 12px;
  }

  .app-card {
    justify-self: start;
  }

  .premium-copy,
  .premium-benefits {
    max-width: none;
    justify-self: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 22px;
  }

  address {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 34px;
  }

  h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    letter-spacing: 0.03em;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 23px;
  }

  body {
    font-size: 14px;
    padding-bottom: 72px;
  }

  .hero {
    min-height: 650px;
    place-items: end start;
  }

  .hero img {
    object-position: 58% 32%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 40, 34, 0.12), rgba(8, 40, 34, 0.72)),
      linear-gradient(90deg, rgba(8, 40, 34, 0.5), rgba(8, 40, 34, 0.12) 78%),
      rgba(216, 208, 199, 0.18);
  }

  .hero-content {
    width: min(92vw, 430px);
    margin-left: 22px;
    text-align: left;
    padding: 0 0 44px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .hero-title {
    justify-items: start;
    text-align: left;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 340px;
    font-size: 14px;
  }

  .hero-meta {
    gap: 6px;
    margin-top: 16px;
  }

  .hero-meta span {
    padding: 6px 9px;
    font-size: 10px;
  }

  .hero-actions {
    justify-content: flex-start;
    gap: 10px;
    width: calc(100vw - 44px);
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    min-height: 44px;
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 0.09em;
  }

  .contact .button {
    width: 100%;
  }

  .pillars,
  .class-grid,
  .price-grid,
  .collage {
    grid-template-columns: 1fr;
  }

  .intro,
  .first-visit,
  .classes,
  .pricing,
  .premium-section,
  .booking,
  .app-section,
  .faq,
  .contact {
    padding: 36px 18px;
  }

  .section-grid {
    gap: 22px;
  }

  .app-teaser {
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin: -16px 18px 26px;
    padding: 15px;
  }

  .app-teaser__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 20px;
  }

  .app-teaser h2 {
    font-size: 24px;
  }

  .app-teaser p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.45;
  }

  .app-teaser__links {
    grid-column: 1 / -1;
    justify-content: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .app-teaser__links a {
    min-height: 36px;
  }

  .first-visit {
    gap: 22px;
  }

  .visit-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .visit-points article {
    min-height: auto;
    padding: 15px 16px;
  }

  .visit-points h3 {
    margin-top: 8px;
  }

  .visit-points p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .pillars article {
    padding: 22px 16px;
  }

  .pillars article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .pillars article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .pillars article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .pillars span {
    font-size: 24px;
  }

  .pillars h3 {
    margin-top: 10px;
    font-size: 11px;
  }

  .pillars p {
    font-size: 12px;
  }

  .class-card img {
    height: 210px;
  }

  .class-card {
    grid-template-rows: 160px auto;
  }

  .class-card__body {
    display: block;
    padding: 16px;
  }

  .class-card h3 {
    font-size: 22px;
  }

  .class-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .class-card ul {
    gap: 4px;
    margin-top: 10px;
  }

  .class-meta {
    margin-top: 12px;
  }

  .class-link {
    margin-top: 12px;
    padding-top: 0;
  }

  .price-card {
    min-height: auto;
    padding: 18px;
    text-align: left;
  }

  .price-card::before {
    left: 18px;
    width: 46px;
    transform: none;
  }

  .price-mark {
    min-width: 0;
    min-height: 22px;
    padding: 0 9px;
    font-size: 14px;
  }

  .price-card h3 {
    margin: 10px 0 8px;
    font-size: 24px;
  }

  .price-card p {
    margin: 10px 0 0;
    font-size: 10px;
  }

  .price-card strong {
    font-size: 29px;
  }

  .price-card small {
    max-width: none;
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .premium-section {
    gap: 20px;
  }

  .premium-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .premium-options {
    margin-top: 14px;
    padding: 12px 14px;
  }

  .premium-options p {
    grid-template-columns: 1fr;
    gap: 1px;
    font-size: 12px;
  }

  .premium-limit {
    margin-top: 10px;
    padding: 0 0 0 14px;
  }

  .premium-benefits article {
    grid-template-columns: 32px 1fr;
    gap: 3px 12px;
    padding: 13px 14px;
  }

  .premium-benefits span {
    font-size: 22px;
  }

  .premium-benefits p {
    font-size: 12px;
    line-height: 1.45;
  }

  .booking-intro {
    display: block;
    margin-bottom: 8px;
  }

  .booking-intro h2 {
    margin-bottom: 8px;
  }

  .booking-intro p:not(.eyebrow) {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .booking-widget {
    margin-left: -2px;
    margin-right: -2px;
    padding: 6px;
  }

  #bsport-widget-866981 .bs-marketplace-filters__list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
    overflow: visible !important;
  }

  #bsport-widget-866981 .bs-marketplace-filters__list > * {
    min-width: 0 !important;
    width: auto !important;
  }

  #bsport-widget-866981 .bs-marketplace-filters__list button,
  #bsport-widget-866981 .bs-marketplace-filters__list [role="button"] {
    width: 100% !important;
    min-width: 0 !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  #bsport-widget-866981 .bs-week__header__date__weekDay[data-trps-short-label],
  #bsport-widget-866981 .bs-marketplace-date-picker__placeholder[data-trps-short-label],
  #bsport-widget-866981 .bs-week__listMode__content__day__date[data-trps-short-label] {
    font-size: 0 !important;
  }

  #bsport-widget-866981 .bs-week__header__date__weekDay[data-trps-short-label]::after,
  #bsport-widget-866981 .bs-marketplace-date-picker__placeholder[data-trps-short-label]::after,
  #bsport-widget-866981 .bs-week__listMode__content__day__date[data-trps-short-label]::after {
    content: attr(data-trps-short-label);
    font-size: 14px !important;
  }

  #bsport-widget-866981 .bs-marketplace-date-picker__placeholder[data-trps-short-label]::after,
  #bsport-widget-866981 .bs-week__listMode__content__day__date[data-trps-short-label]::after {
    font-size: 16px !important;
  }

  .media {
    min-height: 310px;
  }

  .method .media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .method .media img {
    object-position: 52% center;
  }

  .collage,
  .studio-photo {
    min-height: auto;
  }

  .app-section {
    gap: 24px;
  }

  .store-links {
    display: grid;
  }

  .store-badge {
    min-width: 0;
  }

  .app-card {
    width: 100%;
    padding: 22px;
  }

  .app-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
    border-radius: 18px;
    font-size: 28px;
  }

  .faq {
    gap: 24px;
  }

  details {
    padding: 15px 16px;
  }

  .contact {
    gap: 26px;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    padding: 32px 18px 28px;
  }

  .site-footer h2 {
    font-size: 42px;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    align-items: center;
  }

  .footer-contact p {
    width: 100%;
    margin-bottom: 0;
  }

  .footer-contact a,
  .footer-contact span {
    font-size: 11px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .footer-contact a[href^="mailto"] {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .footer-nav div,
  .footer-legal {
    gap: 8px 14px;
  }

  .mobile-booking-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 250, 242, 0.24);
    border-radius: 999px;
    background: rgba(8, 40, 34, 0.92);
    box-shadow: 0 18px 46px rgba(8, 40, 34, 0.26);
    backdrop-filter: blur(16px);
  }

  .mobile-booking-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-booking-bar a:last-child {
    background: var(--clay);
  }
}
