:root {
  --cream: #f4efe6;
  --cream-light: #fbf8f2;
  --ink: #211f1b;
  --muted: #746f66;
  --sage: #747b5c;
  --sage-dark: #555d43;
  --line: rgba(33, 31, 27, 0.12);
  --soft-line: rgba(116, 123, 92, 0.18);
  --shadow: 0 22px 70px rgba(32, 28, 21, 0.11);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(33, 31, 27, 0.08);
}

.brand img {
  width: 132px;
  max-height: 54px;
  object-fit: contain;
}

.nav-menu {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(33, 31, 27, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  transition: 0.22s ease;
}

.nav-menu a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
}

.nav-menu .nav-pill {
  background: var(--ink);
  color: #fff;
  padding-inline: 18px;
}

.nav-menu .nav-pill:hover {
  background: var(--sage-dark);
  color: #fff;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.64);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: grid;
  place-items: center start;
  overflow: hidden;
  padding: 150px clamp(20px, 7vw, 96px) 70px;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.96) brightness(0.82);
  transform: scale(1.02);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(30, 28, 24, 0.72) 0%, rgba(30, 28, 24, 0.42) 40%, rgba(30, 28, 24, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 670px;
  color: #fff;
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker { color: rgba(255,255,255,0.78); }
.eyebrow { color: var(--sage-dark); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
}

h1 { font-size: clamp(4.2rem, 9vw, 8.5rem); max-width: 8.8ch; }
h2 { font-size: clamp(2.8rem, 5.5vw, 5.8rem); }
h3 { font-size: clamp(2rem, 3vw, 3.2rem); }

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

.hero-text {
  margin-top: 22px;
  max-width: 540px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  padding: 15px 26px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transition: 0.22s ease;
}

.hero-link:hover { transform: translateY(-2px); background: var(--cream-light); }

.intro { text-align: center; }
.intro-inner { max-width: 850px; margin: 0 auto; }
.intro h2 { margin-bottom: 26px; }
.intro p:last-child {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 36px;
}
.section-head h2 { max-width: 720px; }

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.class-card {
  background: var(--cream-light);
  border: 1px solid var(--soft-line);
  overflow: hidden;
}

.class-image {
  aspect-ratio: 0.84;
  overflow: hidden;
}

.class-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.class-copy { padding: 26px; }
.class-copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.class-copy h3 { margin-bottom: 12px; }

.statement {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.statement-image img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.statement-copy {
  padding: clamp(28px, 5vw, 62px);
  background: var(--cream-light);
  border: 1px solid var(--soft-line);
}

.statement-copy p:last-child { margin-top: 22px; max-width: 570px; }

.events {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: center;
}

.events-copy {
  background: var(--cream-light);
  border: 1px solid var(--soft-line);
  padding: clamp(28px, 5vw, 58px);
}

.events-copy p:not(.eyebrow) { margin-top: 22px; }
.events-image img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.event-tags span {
  padding: 10px 13px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  color: var(--sage-dark);
  background: rgba(116, 123, 92, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.social-grid figure {
  margin: 0;
  aspect-ratio: 0.72;
  overflow: hidden;
  background: var(--cream-light);
}

.social-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.social-grid figure:hover img { transform: scale(1.04); }

.contact { padding-bottom: clamp(82px, 9vw, 130px); }
.contact-card {
  text-align: center;
  padding: clamp(38px, 7vw, 82px);
  background: var(--sage-dark);
  color: #fff;
}

.contact-card .eyebrow { color: rgba(255,255,255,0.7); }
.contact-card h2 { max-width: 860px; margin: 0 auto; }
.contact-card p:not(.eyebrow) {
  margin: 24px auto 0;
  color: rgba(255,255,255,0.76);
  max-width: 560px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.footer {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 38px 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer img { width: 138px; }
.footer p { font-weight: 700; color: var(--sage-dark); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .menu-btn { display: inline-flex; justify-self: end; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 14px;
    background: rgba(251, 248, 242, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.22s ease;
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-menu a { width: 100%; }
  .hero { min-height: 82vh; }
  .class-grid,
  .statement,
  .events { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
  .section-head .eyebrow { display: block; }
}

@media (max-width: 640px) {
  .brand img { width: 118px; }
  .hero { padding-inline: 22px; min-height: 78vh; }
  .hero-shade { background: linear-gradient(90deg, rgba(30, 28, 24, 0.78), rgba(30, 28, 24, 0.34)); }
  h1 { font-size: clamp(3.7rem, 16vw, 5.6rem); }
  .section { width: min(100% - 26px, 1160px); }
  .social-grid { grid-template-columns: 1fr; }
  .contact-actions a { width: 100%; }
}

/* Added class schedule */
.class-schedule {
  padding-top: clamp(56px, 6vw, 86px);
}

.schedule-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(30px, 6vw, 70px);
  background: var(--cream-light);
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow);
}

.schedule-heading {
  position: sticky;
  top: 112px;
}

.schedule-heading h2 {
  margin-bottom: 22px;
}

.schedule-heading p:not(.eyebrow) {
  max-width: 420px;
  font-size: 1.05rem;
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(116, 123, 92, 0.14);
  transition: 0.22s ease;
}

.schedule-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(32, 28, 21, 0.08);
}

.schedule-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: rgba(116, 123, 92, 0.1);
  color: var(--sage-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.schedule-row h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.schedule-row p {
  font-size: 0.95rem;
}

.schedule-row--group {
  background: rgba(116, 123, 92, 0.07);
}

.schedule-row--evening {
  background: var(--sage-dark);
  color: #fff;
}

.schedule-row--evening .schedule-time {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.schedule-row--evening p,
.schedule-row--evening h3 {
  color: rgba(255,255,255,0.86);
}

@media (max-width: 980px) {
  .schedule-wrap {
    grid-template-columns: 1fr;
  }

  .schedule-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .schedule-wrap {
    padding: 24px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .schedule-time {
    width: fit-content;
    min-height: 44px;
    padding-inline: 16px;
  }
}

/* Signature hero update - based on the approved visual direction */
.hero--signature {
  width: 100%;
  min-height: 92vh;
  padding: 138px clamp(22px, 4vw, 54px) 60px;
  background:
    radial-gradient(circle at 72% 30%, rgba(255,255,255,0.42), transparent 30%),
    linear-gradient(90deg, #e9e7dc 0%, #e4e2d7 54%, #e0ddd1 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--signature .hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  max-width: none;
  color: var(--ink);
}

.hero-signature-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(360px, 1.02fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.hero--signature .kicker {
  color: var(--sage-dark);
  margin-bottom: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.hero--signature h1 {
  max-width: 8.3ch;
  color: var(--ink);
  font-size: clamp(4.4rem, 9.5vw, 8.65rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero--signature .hero-text {
  max-width: 585px;
  margin-top: 28px;
  color: rgba(33,31,27,0.68);
  font-size: 1.02rem;
  line-height: 1.85;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(33,31,27,0.12);
  transition: 0.22s ease;
}

.hero-btn:hover { transform: translateY(-2px); }
.hero-btn--dark { background: var(--ink); color: #fff; box-shadow: 0 12px 30px rgba(33,31,27,0.16); }
.hero-btn--light { background: rgba(255,255,255,0.58); color: var(--ink); }

.hero-visual {
  position: relative;
  min-height: clamp(430px, 47vw, 585px);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% 4% 12%;
  border-radius: 34px;
  background: rgba(255,255,255,0.24);
  filter: blur(2px);
  z-index: -1;
}

.hero-visual__backdrop {
  position: absolute;
  right: 2%;
  top: 0;
  width: min(72%, 440px);
  height: 74%;
  border-radius: 34px;
  overflow: hidden;
  background: #eadfd1;
  box-shadow: 0 28px 70px rgba(33,31,27,0.10);
}

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

.hero-mini-card {
  position: absolute;
  width: min(36%, 190px);
  padding: 10px;
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 22px 48px rgba(33,31,27,0.14);
  transform: rotate(-5deg);
}

.hero-mini-card img {
  width: 100%;
  aspect-ratio: 0.96;
  object-fit: cover;
  border-radius: 17px;
}

.hero-mini-card strong {
  display: block;
  padding: 8px 6px 3px;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}

.hero-mini-card--pilates {
  left: 2%;
  top: 8%;
}

.hero-mini-card--rebounding {
  right: -2%;
  bottom: 3%;
  transform: rotate(5deg);
}

.hero-feature-card {
  position: absolute;
  left: 12%;
  bottom: 13%;
  width: min(54%, 330px);
  padding: 24px 26px;
  border-radius: 0 0 0 34px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 20px 52px rgba(33,31,27,0.13);
}

.hero-feature-card span {
  display: block;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-feature-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero-feature-card a {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero--signature {
    min-height: auto;
    padding-top: 132px;
  }

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

  .hero-visual {
    min-height: 520px;
    max-width: 620px;
  }

  .hero-mini-card--rebounding { right: 2%; }
}

@media (max-width: 640px) {
  .hero--signature {
    padding-inline: 22px;
    padding-bottom: 44px;
  }

  .hero--signature h1 {
    font-size: clamp(4.1rem, 18vw, 5.7rem);
  }

  .hero--signature .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions { width: 100%; }
  .hero-btn { flex: 1 1 100%; }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual__backdrop {
    width: 78%;
    height: 70%;
    right: 0;
  }

  .hero-mini-card {
    width: 42%;
  }

  .hero-feature-card {
    left: 2%;
    bottom: 10%;
    width: 62%;
    padding: 20px;
  }

  .hero-mini-card--rebounding {
    right: -1%;
    bottom: 1%;
  }
}


/* Arketa scheduling and pricing embed */
.arketa-booking {
  padding-top: clamp(56px, 6vw, 86px);
}

.arketa-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.arketa-heading h2 {
  margin-bottom: 22px;
}

.arketa-heading p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.05rem;
}

.arketa-panel {
  overflow: hidden;
  background: var(--cream-light);
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow);
}

.arketa-tabs {
  display: flex;
  gap: 10px;
  padding: 18px;
  border-bottom: 1px solid var(--soft-line);
  background: rgba(116, 123, 92, 0.06);
}

.arketa-tab {
  appearance: none;
  border: 1px solid rgba(33, 31, 27, 0.12);
  border-radius: 999px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  transition: 0.22s ease;
}

.arketa-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(33, 31, 27, 0.25);
}

.arketa-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.arketa-widget-wrap {
  position: relative;
  min-height: 900px;
  background: #fff;
}

.arketa-loading {
  position: absolute;
  inset: 36px 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  pointer-events: none;
}

#sutraWidgetIframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 900px;
  height: 1050px;
  border: 0;
  background: #fff;
}

@media (max-width: 640px) {
  .arketa-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }

  .arketa-tab {
    width: 100%;
    padding-inline: 12px;
  }

  .arketa-widget-wrap,
  #sutraWidgetIframe {
    min-height: 980px;
  }
}
