:root {
  --sky-bg: #dfe8f4;
  --sky-soft: #edf3fa;
  --sky-pale: #f8fbff;
  --ink: #2d3950;
  --ink-soft: #6c7a90;
  --white: #ffffff;
  --line: rgba(55, 77, 109, 0.12);
  --accent: #1d9ef2;
  --accent-2: #87cffd;
  --deep: #24344f;
  --shadow: 0 30px 70px rgba(76, 94, 122, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(180deg, #f3f7fc 0%, var(--sky-bg) 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
  appearance: none;
}

.cookie-slot:empty {
  display: none;
}

.site-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 0 0 42px;
  overflow: hidden;
}

.site-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.3);
  color: rgba(45, 57, 80, 0.72);
  font-size: 0.84rem;
}

.utility-meta,
.utility-social {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.utility-social span {
  font-weight: 700;
  opacity: 0.8;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.site-brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(47, 45, 68, 0.72);
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-header__cta {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  min-height: 620px;
  padding: 46px 48px 82px;
  border-radius: 0 0 38px 38px;
  background:
    linear-gradient(90deg, rgba(252, 254, 255, 0.95) 0%, rgba(241, 247, 253, 0.9) 46%, rgba(229, 238, 248, 0.74) 100%),
    url("../img/hero-soft-background.png") center/cover no-repeat;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.88), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(152, 213, 255, 0.14), transparent 20%);
  pointer-events: none;
  z-index: -1;
}

.hero-copy h1,
.section-head h2,
.feature-card h3,
.info-card h3,
.footer-grid h3,
.inner-hero h1 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 480px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.02;
  color: var(--deep);
  font-weight: 300;
}

.hero-copy h1 span {
  color: var(--accent);
  font-weight: 400;
}

.hero-copy p,
.section-head p,
.feature-card p,
.info-card p,
.footer-grid p,
.footer-grid a,
.inner-hero p,
.detail-list li,
.field span,
.checkbox-field span {
  color: var(--ink-soft);
  line-height: 1.72;
}

.hero-copy p {
  max-width: 430px;
  margin: 18px 0 0;
  font-size: 1.02rem;
  color: rgba(58, 73, 98, 0.84);
}

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

.button,
.button-outline,
.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 700;
}

.button {
  background: linear-gradient(135deg, var(--accent), #2ea7ff);
  color: var(--white);
}

.button-outline {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(45, 57, 80, 0.14);
  color: var(--deep);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero-yoga-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: translate(-10px, 12px);
  filter: drop-shadow(0 34px 48px rgba(82, 97, 125, 0.16));
}

.hero-note {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding-left: 18px;
  border-left: 3px solid rgba(29, 158, 242, 0.28);
}

.hero-note strong {
  color: var(--deep);
  font-size: 0.98rem;
}

.hero-note span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.section {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.section-kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(45, 57, 80, 0.56);
}

.section-head h2,
.inner-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.08;
}

.feature-grid,
.info-grid,
.footer-grid,
.contact-grid,
.form-grid,
.inner-card-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.info-card,
.inner-hero {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  min-width: 0;
}

.feature-card__visual {
  height: 180px;
  margin-bottom: 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.76), rgba(223, 236, 249, 0.88)),
    url("../img/hero-yoga-posture.png") center/contain no-repeat;
  position: relative;
  overflow: hidden;
}

.feature-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(29, 158, 242, 0.08));
}

.feature-card__visual--one {
  background-position: left center;
}

.feature-card__visual--two {
  background-position: center center;
  background-size: 80%;
}

.feature-card__visual--three {
  background-position: right center;
  background-size: 74%;
}

.info-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
}

.detail-list li + li {
  margin-top: 8px;
}

.inner-page {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.inner-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(45, 57, 80, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  outline: 0;
}

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

.checkbox-field {
  display: flex;
  align-items: start;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  padding: 24px;
  margin-top: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.footer-grid a {
  display: block;
}

.footer-grid a + a {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .hero,
  .feature-grid,
  .info-grid,
  .inner-card-grid,
  .contact-grid,
  .footer-grid,
  .form-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 12px);
  }

  .site-utility,
  .site-header,
  .hero,
  .section,
  .section-head,
  .feature-grid,
  .feature-card,
  .info-grid,
  .info-card,
  .footer-grid {
    min-width: 0;
  }

  .utility-meta {
    gap: 10px;
    font-size: 0.72rem;
    flex-wrap: wrap;
  }

  .utility-social {
    gap: 10px;
  }

  .site-nav {
    display: none;
  }

  .site-header__cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent);
  }

  .mobile-nav {
    display: none;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .hero {
    padding: 34px 22px 46px;
    min-height: auto;
    border-radius: 0 0 28px 28px;
  }

  .hero-visual {
    order: -1;
  }

  .site-brand {
    font-size: 1.6rem;
  }

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

  .hero-yoga-image {
    max-width: 360px;
    transform: translate(0, 8px);
  }

  .hero-copy h1,
  .section-head h2,
  .inner-hero h1 {
    font-size: 1.85rem;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .section-head {
    width: 100%;
  }

  .section-head > div,
  .section-head h2 {
    max-width: 100%;
  }
}

.flowstate-legacy-body {
  background: linear-gradient(180deg, #f7f1ed 0%, #fbf9f6 40%, #f6f0ea 100%);
  color: #35211b;
  overflow-x: hidden;
}

.flowstate-legacy-body .site-shell {
  width: min(1220px, calc(100% - 24px));
  padding: 0 0 44px;
}

.yoga-hero {
  position: relative;
  min-height: 660px;
  padding: 22px 28px 84px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(37, 16, 10, 0.28), rgba(37, 16, 10, 0.56)),
    url("../img/hero-sunset-yoga.png") center/cover no-repeat;
  box-shadow: 0 28px 64px rgba(52, 25, 18, 0.18);
}

.yoga-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.yoga-hero__topline,
.yoga-hero__nav,
.yoga-hero__content {
  position: relative;
  z-index: 1;
}

.yoga-hero__topline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: rgba(255, 245, 239, 0.92);
  font-size: 0.95rem;
}

.yoga-hero__topline span:last-child {
  text-align: right;
}

.yoga-hero__brand,
.site-brand--yoga {
  justify-self: center;
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff3ea;
  letter-spacing: 0.02em;
}

.yoga-hero__line {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 16px auto 10px;
  width: min(100%, 980px);
  background: rgba(255, 239, 229, 0.4);
}

.yoga-hero__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
}

.yoga-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.yoga-nav a,
.mobile-nav--yoga a {
  color: rgba(255, 243, 234, 0.9);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yoga-nav a.is-active,
.yoga-nav a:hover,
.mobile-nav--yoga a.is-active,
.mobile-nav--yoga a:hover {
  color: #ffd6c8;
}

.nav-toggle--yoga {
  display: none;
  border: 0;
  background: transparent;
}

.nav-toggle--yoga span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff3ea;
}

.mobile-nav--yoga {
  background: rgba(61, 24, 16, 0.96);
}

.mobile-nav--yoga .mobile-nav__cta {
  margin-top: 8px;
}

.yoga-hero__content {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin: 120px auto 0;
  color: #fff6f0;
}

.yoga-hero__content h1 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.yoga-hero__content p {
  margin: 18px 0 0;
  max-width: 620px;
  color: rgba(255, 241, 232, 0.9);
  line-height: 1.8;
  font-size: 1rem;
}

.yoga-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.yoga-button--pink {
  margin-top: 26px;
  background: linear-gradient(180deg, #ff74be, #f252a7);
  color: #fff8fd;
  box-shadow: 0 16px 34px rgba(242, 82, 167, 0.28);
}

.yoga-button--dark {
  background: #2f1b16;
  color: #fff5ef;
  margin-top: 18px;
}

.site-main--yoga {
  display: grid;
  gap: 28px;
  margin-top: 0;
}

.yoga-intro,
.yoga-programs {
  padding: 52px 34px 18px;
  background: #fffdfb;
}

.yoga-intro__heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.yoga-intro__heading h2,
.yoga-story-card h2,
.yoga-programs h2,
.yoga-cta h2 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.yoga-intro__heading h2 {
  color: #7b68d0;
}

.yoga-intro__heading p,
.yoga-story-card p,
.yoga-highlight-card p,
.yoga-program-card p,
.yoga-cta p,
.yoga-service-card p {
  color: #6f5c56;
  line-height: 1.8;
}

.yoga-service-grid,
.yoga-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.yoga-service-card,
.yoga-program-card,
.yoga-story-card,
.yoga-highlight-card {
  min-width: 0;
}

.yoga-service-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 16px 20px 10px;
}

.yoga-service-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 116, 190, 0.1);
  color: #ff60b6;
  font-size: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 116, 190, 0.16);
}

.yoga-service-card h3,
.yoga-program-card h3,
.yoga-highlight-card h3 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
}

.yoga-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 0 34px;
}

.yoga-story-card,
.yoga-highlight-card {
  padding: 32px;
  border-radius: 24px;
  background: #fffdfb;
  box-shadow: 0 18px 44px rgba(74, 40, 28, 0.08);
}

.yoga-label {
  margin: 0 0 10px;
  color: #ce6a96;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.yoga-story-card .detail-list {
  margin-top: 16px;
}

.yoga-program-card {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8f3 0%, #fff0e8 100%);
  box-shadow: 0 16px 32px rgba(91, 52, 40, 0.08);
}

.yoga-program-card span {
  color: #f16fa9;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.yoga-quote-band {
  padding: 26px 34px;
  text-align: center;
  background: #fffdfb;
}

.yoga-quote-band blockquote {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  color: #432520;
}

.yoga-quote-band p {
  margin: 14px 0 0;
  color: #8f7670;
}

.yoga-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #43231d 0%, #6d3524 100%);
  color: #fff4ee;
}

.yoga-cta p {
  color: rgba(255, 241, 232, 0.84);
}

.site-footer--yoga {
  background: transparent;
}

.footer-grid--yoga {
  background: #fffdfb;
}

.site-brand--yoga {
  color: #43231d;
}

@media (max-width: 980px) {
  .yoga-service-grid,
  .yoga-program-grid,
  .yoga-story-grid,
  .yoga-cta {
    grid-template-columns: 1fr;
  }

  .yoga-cta {
    display: grid;
  }
}

@media (max-width: 760px) {
  .flowstate-legacy-body .site-shell {
    width: calc(100% - 12px);
  }

  .yoga-hero {
    min-height: auto;
    padding: 18px 18px 52px;
  }

  .yoga-hero__topline {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
    font-size: 0.82rem;
  }

  .yoga-hero__topline span:last-child {
    text-align: center;
  }

  .yoga-nav {
    display: none;
  }

  .nav-toggle--yoga {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-nav.is-open.mobile-nav--yoga,
  .mobile-nav--yoga.is-open {
    display: grid;
  }

  .yoga-hero__nav {
    justify-content: flex-end;
  }

  .yoga-hero__content {
    margin-top: 72px;
    max-width: 330px;
  }

  .yoga-hero__content h1 {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  .yoga-hero__content p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .yoga-intro__heading,
  .yoga-intro__heading h2,
  .yoga-intro__heading p,
  .yoga-service-card,
  .yoga-service-card p,
  .yoga-story-card,
  .yoga-highlight-card,
  .yoga-program-card,
  .yoga-quote-band,
  .yoga-cta {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .yoga-intro__heading h2,
  .yoga-story-card h2,
  .yoga-programs h2,
  .yoga-cta h2 {
    font-size: 1.7rem;
    line-height: 1.14;
  }

  .yoga-intro__heading {
    max-width: 330px;
    margin: 0 auto;
  }

  .yoga-intro,
  .yoga-programs,
  .yoga-story-grid,
  .yoga-quote-band,
  .yoga-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .yoga-service-grid,
  .yoga-program-grid {
    grid-template-columns: 1fr;
  }

  .yoga-story-grid {
    padding-top: 0;
  }

  .yoga-story-card,
  .yoga-highlight-card,
  .yoga-program-card {
    padding: 24px;
  }

  .yoga-cta {
    border-radius: 20px;
  }
}

.flowstate-body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f7f4ec 0%, #f3efe6 100%);
  color: #2d2a26;
  overflow-x: hidden;
}

.fs-shell {
  width: min(1320px, calc(100% - 34px));
  padding-top: 24px;
  padding-bottom: 56px;
}

.fs-main {
  display: grid;
  gap: 34px;
}

.fs-header {
  display: flex;
  justify-content: flex-start;
  padding: 8px 6px 20px;
}

.fs-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #23201d;
}

.fs-mark__dot,
.fs-brand-lockup__icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(35, 32, 29, 0.28);
  font-size: 0.84rem;
}

.fs-mark strong,
.fs-brand-lockup span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.fs-mark span:last-child {
  font-size: 0.78rem;
  color: #7b746d;
}

.fs-hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: 30px;
  align-items: start;
}

.fs-intro {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 56px;
  padding: 64px 0 0 10px;
}

.fs-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4c463f;
}

.fs-brand-block h1,
.fs-panel h2,
.fs-panel h3 {
  margin: 18px 0 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.04em;
}

.fs-brand-block h1 {
  font-size: clamp(3rem, 4vw, 4.8rem);
  line-height: 0.92;
  font-weight: 600;
}

.fs-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #4b463f;
}

.fs-meta__badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(98, 88, 74, 0.12);
  font-weight: 800;
}

.fs-meta strong {
  display: block;
}

.fs-meta span {
  display: block;
  font-size: 0.86rem;
  color: #8d857c;
}

.fs-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.66fr 0.96fr;
  gap: 14px;
  align-items: start;
}

.fs-card {
  min-width: 0;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(101, 92, 80, 0.08);
  overflow: hidden;
}

.fs-card__content {
  padding: 14px;
}

.fs-card strong,
.fs-card span,
.fs-card p {
  display: block;
}

.fs-card span,
.fs-card p,
.fs-panel p,
.fs-footer p,
.fs-footer a {
  color: #7d766f;
  line-height: 1.7;
}

.fs-card--hero { grid-column: 1; grid-row: 1; }
.fs-card--welcome { grid-column: 2; grid-row: 1; }
.fs-card--explore { grid-column: 3; grid-row: 1; }
.fs-card--discover { grid-column: 1; grid-row: 2; }
.fs-card--stats { grid-column: 2; grid-row: 2; }
.fs-card--feature { grid-column: 3; grid-row: 2; }
.fs-card--quote { grid-column: 1; grid-row: 3; }
.fs-card--wide { grid-column: 2 / span 2; grid-row: 3; }
.fs-card--footer-row { grid-column: 2 / span 2; grid-row: 4; }

.fs-card__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fs-card__image--meditation {
  height: 180px;
  background-image: url("../img/hero-flowstate-meditation.png");
}

.fs-card__image--instructor {
  height: 156px;
  background-image: url("../img/hero-flowstate-instructors.png");
}

.fs-card__image--pose {
  height: 200px;
  background-image: url("../img/hero-flowstate-pose.png");
}

.fs-card__image--wide {
  height: 220px;
  background-image: url("../img/hero-yoga-posture.png");
}

.fs-pill {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #506656;
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
}

.fs-mini-grid,
.fs-mini-tiles,
.fs-bottom-strip {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.fs-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fs-mini-grid__item,
.fs-mini-tiles__item,
.fs-bottom-strip__item {
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fs-mini-grid__item {
  height: 82px;
  background-image: url("../img/hero-yoga-posture.png");
}

.fs-mini-grid__item--pose {
  background-image: url("../img/hero-flowstate-pose.png");
}

.fs-mini-grid__item--teacher {
  background-image: url("../img/hero-flowstate-meditation.png");
}

.fs-mini-tiles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fs-mini-tiles__item {
  height: 92px;
  background-image: url("../img/hero-yoga-posture.png");
}

.fs-mini-tiles__item--two {
  background-image: url("../img/hero-flowstate-pose.png");
}

.fs-mini-tiles__item--three {
  background-image: url("../img/hero-flowstate-meditation.png");
}

.fs-stats {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  background: #546554;
}

.fs-stats strong,
.fs-wide-stats span {
  color: #ffffff;
  font-size: 1.14rem;
}

.fs-stats span {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
}

.fs-overlay-copy {
  padding: 16px;
  background: rgba(86, 103, 86, 0.08);
}

.fs-quote-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.fs-quote-person__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: url("../img/hero-flowstate-instructors.png") center/cover no-repeat;
}

.fs-wide-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 14px 18px;
  background: #556654;
  text-align: center;
}

.fs-bottom-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fs-bottom-strip__item {
  height: 86px;
  background-image: url("../img/hero-yoga-posture.png");
}

.fs-bottom-strip__item--alt {
  background-image: url("../img/hero-flowstate-meditation.png");
}

.fs-bottom-strip__item--pose {
  background-image: url("../img/hero-flowstate-pose.png");
}

.fs-sections {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}

.fs-panel,
.fs-footer {
  min-width: 0;
  border-radius: 28px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 18px 34px rgba(101, 92, 80, 0.08);
}

.fs-panel {
  padding: 28px;
}

.fs-panel--accent {
  background: linear-gradient(180deg, #eef0ea, #ffffff);
}

.fs-label {
  margin: 0 0 10px;
  color: #8d857c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fs-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.fs-panel h3 {
  font-size: 2rem;
  line-height: 1.04;
}

.fs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #4f6554;
  color: #fff;
  font-weight: 700;
}

.fs-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.7fr;
  gap: 22px;
  padding: 28px;
}

.fs-footer strong {
  display: block;
  color: #25211f;
  font-size: 1.18rem;
}

.fs-footer h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #25211f;
}

.fs-footer a {
  display: block;
}

.fs-footer a + a {
  margin-top: 8px;
}

@media (max-width: 1180px) {
  .fs-hero,
  .fs-sections,
  .fs-footer {
    grid-template-columns: 1fr;
  }

  .fs-intro {
    position: static;
    padding-top: 0;
    gap: 26px;
  }
}

@media (max-width: 860px) {
  .fs-shell {
    width: calc(100% - 18px);
  }

  .fs-collage {
    grid-template-columns: 1fr;
  }

  .fs-card--hero,
  .fs-card--welcome,
  .fs-card--explore,
  .fs-card--discover,
  .fs-card--stats,
  .fs-card--feature,
  .fs-card--quote,
  .fs-card--wide,
  .fs-card--footer-row {
    grid-column: auto;
    grid-row: auto;
  }

  .fs-brand-block h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 620px) {
  .fs-brand-block h1,
  .fs-panel h2,
  .fs-panel h3 {
    font-size: 1.92rem;
    line-height: 1.04;
  }

  .fs-shell {
    width: calc(100% - 14px);
  }

  .fs-footer,
  .fs-sections {
    gap: 16px;
  }

  .fs-panel,
  .fs-footer {
    padding: 22px;
  }
}
