:root {
  --ink: #263127;
  --muted: #6e6b61;
  --paper: #fbf8f1;
  --cream: #eee8dc;
  --clay: #a65331;
  --sage: #75866d;
  --sage-dark: #586650;
  --line: rgba(38, 49, 39, 0.16);
  --shadow: 0 28px 80px rgba(41, 46, 37, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(117, 134, 109, 0.24), transparent 26rem),
    radial-gradient(circle at 92% 32%, rgba(166, 83, 49, 0.12), transparent 20rem),
    linear-gradient(135deg, #ece8dc 0%, #faf7f0 48%, #dfe7da 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
}

body::before {
  width: 36rem;
  height: 36rem;
  left: -10rem;
  top: 8rem;
  background: url("assets/background-picture.avif") center/cover;
  border-radius: 44% 56% 59% 41%;
  filter: saturate(0.45) contrast(0.85);
}

body::after {
  width: 28rem;
  height: 42rem;
  right: -8rem;
  top: 2rem;
  background: url("assets/oils-background.avif") center/cover;
  border-radius: 52% 48% 40% 60%;
  filter: saturate(0.55) contrast(0.95);
}

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

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

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

.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a,
.site-footer a,
.text-link {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  border-color: currentColor;
}

.header-cta {
  padding: 10px 18px;
  color: #fff;
  background: var(--sage);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-link {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--sage-dark);
  background: rgba(117, 134, 109, 0.1);
  border: 1px solid rgba(88, 102, 80, 0.22);
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-link:hover {
  color: #fff;
  background: var(--sage);
  transform: translateY(-1px);
}

.icon-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-section {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  padding: 52px;
  color: #fff;
  background: var(--sage-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 30, 25, 0.62), rgba(25, 30, 25, 0.18) 54%, rgba(25, 30, 25, 0.28)),
    url("assets/hero-mindful-movement.jpg") center 45%/cover;
}

.hero-copy {
  position: relative;
  width: min(590px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.95;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7.3vw, 6rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}

h3.with-extra-space {
  margin-bottom: 36px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-dark {
  color: #fff;
  background: var(--clay);
}

.section-pad {
  padding: 92px 72px;
}

.philosophy-section {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-section .eyebrow,
.unique-section .eyebrow,
.classes-section .eyebrow,
.teacher-section .eyebrow,
.testimonials-section .eyebrow,
.faq-section .eyebrow,
.booking-section .eyebrow {
  color: var(--sage-dark);
}

.philosophy-section h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}

.philosophy-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.unique-section,
.testimonials-section {
  background: #f4efe6;
  text-align: center;
}

.unique-section h2,
.testimonials-section h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.feature-grid article {
  padding: 28px 24px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 248, 241, 0.72);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--clay);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1.2rem;
}

.feature-grid p,
.section-heading p,
.class-card p:not(.difficulty),
.method-copy p,
.teacher-copy p,
.faq-answer p,
.booking-section p {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: end;
}

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

.class-card {
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.class-card img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
}

.class-card img.foundations-photo {
  object-position: 42% 52%;
}

.class-card img.vinyasa-photo {
  object-position: center 53%;
}

.class-card img.restore-photo {
  object-position: 68% 52%;
}

.class-card > div {
  padding: 22px 22px 24px;
}

.class-tagline {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 800;
}

.class-note {
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.class-accordion {
  margin-top: 18px;
}

.class-accordion summary {
  display: inline-flex;
  cursor: pointer;
  color: var(--sage-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  list-style: none;
}

.class-accordion summary::-webkit-details-marker {
  display: none;
}

.class-accordion summary:hover {
  color: var(--clay);
}

.class-details {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.class-details section {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.class-details h4 {
  margin: 0 0 10px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.class-details ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.class-details li::marker {
  color: var(--clay);
}

.difficulty {
  display: inline-flex;
  margin: 0;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.method-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 92px 72px;
  background: var(--sage);
  color: #fff;
}

.method-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 120px 120px 0 0;
  object-position: center 48%;
}

.method-copy p,
.method-copy li {
  color: rgba(255, 255, 255, 0.82);
}

.method-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 24px 0;
  padding-left: 18px;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 10px;
  margin: 24px 0;
}

.method-cards span {
  display: grid;
  place-items: center;
  min-height: 28px;
  padding: 6px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.teacher-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 68px;
  align-items: center;
  background: #f7f3ea;
}

.teacher-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  border-radius: 0 80px 0 0;
  object-position: center 48%;
}

.teacher-background {
  margin-top: 26px;
  padding: 22px 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.teacher-background h3 {
  margin-bottom: 16px;
  color: var(--sage-dark);
  font-size: 1.55rem;
}

.teacher-background ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.location-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.location-label {
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-pins {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-pins span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.location-pins svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--clay);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 34px;
}

blockquote {
  margin: 0;
  padding: 28px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.64);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.18;
}

cite {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

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

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

.faq-list details {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 22px 64px 22px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.08;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--sage-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
  padding-bottom: 2px;
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  max-width: 760px;
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 92px 72px;
  color: #fff;
  background: var(--sage-dark);
}

.booking-section .eyebrow,
.booking-section p {
  color: rgba(255, 255, 255, 0.8);
}

.booking-intro {
  max-width: 440px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.contact-path {
  display: grid;
  justify-items: stretch;
  gap: 12px;
  max-width: 420px;
  width: 100%;
}

.contact-path a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 18px 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-path a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.contact-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.contact-symbol svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.84);
  background: #252d25;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-footer .icon-link {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-footer .icon-link:hover {
  color: var(--ink);
  background: var(--paper);
}

@media (max-width: 900px) {
  .page-shell {
    width: 100%;
    margin: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .hero-section {
    min-height: 620px;
    padding: 36px 24px;
  }

  .section-pad,
  .method-section,
  .booking-section {
    padding: 66px 24px;
  }

  .feature-grid,
  .class-grid,
  .testimonial-grid,
  .method-section,
  .teacher-section,
  .booking-section,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .method-section,
  .teacher-section,
  .booking-section {
    gap: 34px;
  }

}

@media (max-width: 560px) {
  .site-header {
    min-height: 60px;
    padding: 0 16px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.68rem;
  }

  .site-header .contact-icons {
    display: none;
  }

  .brand {
    font-size: 1.12rem;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-section {
    min-height: 560px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 18px 56px 18px 18px;
  }

  .faq-list summary::after {
    right: 18px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }

  .method-copy ul,
  .site-footer,
  .footer-contact {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}
