:root {
  --ink: #13243c;
  --muted: #667085;
  --paper: #fffdfa;
  --cream: #f8f2ec;
  --lavender: #ebeaff;
  --blush: #ffe7f6;
  --sage: #68704a;
  --sage-dark: #4c5532;
  --line: #e7dfd7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(19, 36, 60, 0.1);
  --soft-shadow: 0 10px 30px rgba(19, 36, 60, 0.07);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 250, 0.88);
  border-bottom: 1px solid rgba(231, 223, 215, 0.78);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(19, 36, 60, 0.08);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  color: #1e293b;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  background: var(--sage);
  content: "";
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta {
  background: #161616;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(76, 85, 50, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: rgba(19, 36, 60, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(19, 36, 60, 0.18);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn svg,
.nav-cta svg,
.brand svg,
.quick-proof svg,
.contact-list svg,
.footer-links svg,
.footer-contact svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 130px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 250, 1) 0%,
      rgba(255, 253, 250, 0.98) 36%,
      rgba(255, 253, 250, 0.86) 58%,
      rgba(255, 253, 250, 0.1) 100%
    ),
    url("assets/images/hero-yoga-hd.png") center center / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0), var(--paper));
  content: "";
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 66px;
}

.rating-row,
.quick-proof,
.promise-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.rating-row {
  font-weight: 700;
  color: #2c3442;
}

.stars {
  color: #d6a72c;
  font-weight: 800;
}

.trusted {
  margin: 8px 0 34px;
  color: var(--muted);
  font-weight: 600;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 68px;
  line-height: 0.98;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: #475467;
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions,
.stacked-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.quick-proof {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.quick-proof li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #263244;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.quick-proof svg {
  color: var(--sage);
}

.brand-strip {
  border-top: 1px solid rgba(231, 223, 215, 0.7);
  border-bottom: 1px solid rgba(231, 223, 215, 0.7);
  background: rgba(255, 255, 255, 0.72);
  padding: 24px 0;
  text-align: center;
}

.brand-strip p {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.studio-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  color: #9096a2;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
}

.split-section {
  background: linear-gradient(135deg, var(--lavender), var(--paper) 44%, var(--blush));
}

.split-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 54px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-intro h2,
.center-heading h2 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
}

.section-intro h2 span,
.center-heading h2 span {
  display: block;
  color: var(--sage);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.section-intro p,
.center-heading p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.stacked-actions {
  margin-top: 30px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.timeline svg {
  width: 56px;
  height: 56px;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--sage);
  box-shadow: inset 0 0 0 1px rgba(19, 36, 60, 0.08);
}

.timeline h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.timeline p {
  margin-bottom: 0;
  color: #475467;
}

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

.center-heading p {
  margin-right: auto;
  margin-left: auto;
}

.results-section {
  background: var(--paper);
}

.result-grid {
  display: grid;
  gap: 18px;
}

.result-card {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: stretch;
  gap: 18px;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.problem,
.solution {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  column-gap: 22px;
  padding: 26px;
}

.problem p,
.solution p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.problem svg,
.solution svg {
  grid-row: span 2;
  width: 70px;
  height: 70px;
  padding: 18px;
  border-radius: 50%;
}

.problem svg {
  background: var(--blush);
  color: #7a443d;
}

.solution svg {
  background: var(--lavender);
  color: var(--sage-dark);
}

.problem h3,
.solution h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.result-arrow {
  align-self: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 50%;
  background: var(--white);
  color: var(--sage);
  box-shadow: inset 0 0 0 1px var(--line), var(--soft-shadow);
}

.work-section {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.work-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card,
.testimonial-card,
.pricing-card,
.contact-form {
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.work-card {
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-bottom: 1px solid rgba(19, 36, 60, 0.08);
}

.work-card h3 {
  margin: 20px 22px 8px;
  font-size: 21px;
}

.work-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 22px 24px;
  color: var(--sage-dark);
  font-weight: 800;
}

.work-card a svg {
  width: 18px;
  height: 18px;
}

.pricing-section {
  background: var(--paper);
}

.pricing-grid {
  grid-template-columns: 0.8fr 1fr 1fr;
}

.pricing-card {
  padding: 28px;
}

.pricing-card.featured {
  background: linear-gradient(180deg, var(--white), #fbf9ff);
  border-color: rgba(104, 112, 74, 0.28);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.1;
}

.pricing-card > p:not(.plan-label) {
  color: var(--muted);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  color: #334155;
  font-weight: 700;
}

.pricing-card li svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex: 0 0 auto;
}

.testimonial-section {
  background: linear-gradient(135deg, var(--paper), var(--lavender) 52%, var(--paper));
}

.testimonial-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 28px;
}

.testimonial-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card blockquote {
  margin: 8px 0 20px;
  color: #344054;
}

.testimonial-card h3 {
  margin-bottom: 2px;
  font-size: 19px;
}

.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
}

.metric-strip div {
  padding: 28px;
  text-align: center;
}

.metric-strip div + div {
  border-left: 1px solid var(--line);
}

.metric-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sage-dark);
  font-size: 36px;
  line-height: 1;
}

.metric-strip span {
  color: var(--muted);
  font-weight: 700;
}

.faq-section {
  background: var(--paper);
}

.promise-row {
  justify-content: center;
  margin-top: 22px;
}

.promise-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--sage-dark);
  font-weight: 800;
}

.promise-row svg {
  width: 18px;
  height: 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(19, 36, 60, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 68px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(135deg, var(--cream), var(--paper) 50%, var(--blush));
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
}

.contact-list svg {
  color: var(--sage);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.contact-form label,
.newsletter-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(19, 36, 60, 0.12);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input,
.newsletter-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(104, 112, 74, 0.14);
}

.site-footer {
  background: #111827;
  color: #f8fafc;
  padding: 74px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 54px;
}

.footer-brand img {
  width: 106px;
  height: 106px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-brand h2 {
  margin-bottom: 14px;
  font-size: 34px;
}

.footer-brand p,
.footer-contact p,
.newsletter-form small {
  color: #cbd5e1;
}

.footer-brand .btn {
  margin-top: 18px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-links h3,
.footer-contact h3,
.newsletter-form label {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.footer-links svg,
.footer-contact svg {
  color: #c3d1a0;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 0;
}

.newsletter-form input {
  border-radius: 8px 0 0 8px;
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: var(--sage);
  color: var(--white);
}

.newsletter-form button svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-wrap {
    gap: 16px;
  }

  .main-nav {
    gap: 20px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 56px;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid .section-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand span {
    max-width: 132px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: var(--cream);
  }

  .main-nav a::after {
    display: none;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 253, 250, 0.94) 0%,
      rgba(255, 253, 250, 0.94) 58%,
      rgba(255, 253, 250, 0.72) 100%
    ),
      url("assets/images/hero-yoga-hd.png") center bottom / auto 68% no-repeat;
  }

  .hero-content {
    padding-top: 62px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.05;
  }

  .hero-copy {
    font-size: 19px;
  }

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

  .section {
    padding: 72px 0;
  }

  .split-grid,
  .pricing-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-intro h2,
  .center-heading h2 {
    font-size: 38px;
  }

  .result-card,
  .problem,
  .solution {
    grid-template-columns: 1fr;
  }

  .problem,
  .solution {
    text-align: center;
  }

  .problem p,
  .solution p {
    grid-column: auto;
  }

  .problem svg,
  .solution svg,
  .result-arrow {
    justify-self: center;
  }

  .result-arrow {
    transform: rotate(90deg);
  }

  .work-grid,
  .testimonial-grid,
  .faq-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 13px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .stacked-actions,
  .btn {
    width: 100%;
  }

  .quick-proof li {
    width: 100%;
  }

  .section-intro h2,
  .center-heading h2 {
    font-size: 32px;
  }

  .timeline article,
  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .testimonial-card img {
    width: 76px;
    height: 76px;
  }

  .contact-form,
  .pricing-card {
    padding: 22px;
  }
}
