:root {
  --sage: #6B7D52;
  --sage-light: #EAF3DE;
  --sage-pastel: #B9C4A9;
  --terracotta: #C2703D;
  --terracotta-light: #FAECE7;
  --terracotta-pastel: #E7C1A5;
  --off-white: #F3EEE4;
  --cream: #EDE6D6;
  --olive: #3E4632;
  --olive-soft: #8A9A6B;
  --white: #FFFFFF;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--olive);
  line-height: 1.6;
}

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

img, .placeholder { display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--off-white);
  border-bottom: 1px solid rgba(62,70,50,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.01em;
}

.logo-mark { flex-shrink: 0; }

.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--terracotta);
  font-weight: 500;
  margin-top: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 14px;
  color: var(--olive);
  transition: color 0.2s ease;
}

nav a:hover { color: var(--terracotta); }

nav a.active { color: var(--terracotta); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olive);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: 30px;
  text-align: center;
  transition: opacity 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn:hover { opacity: 0.88; }

.btn-terracotta { background: var(--terracotta-pastel); color: var(--olive); }
.btn-sage { background: var(--sage-pastel); color: var(--olive); }
.btn-outline { background: transparent; border: 1px solid var(--olive); color: var(--olive); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--terracotta-pastel);
  text-align: center;
  padding: 96px 24px 80px;
}

.hero.hero-compact { padding: 72px 24px 56px; }

.hero > * { position: relative; z-index: 1; }

.hero .hero-blob { position: absolute; border-radius: 50%; z-index: 0; }
.hero .hero-blob-1 { width: 340px; height: 340px; top: -150px; left: -110px; background: var(--sage-pastel); }
.hero .hero-blob-2 { width: 260px; height: 260px; bottom: -140px; right: -100px; background: var(--off-white); opacity: 0.7; }

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 56px);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.15;
  color: var(--olive);
}

.hero .subhead {
  font-size: 17px;
  color: var(--sage);
  max-width: 480px;
  margin: 20px auto 0;
}

.hero .body {
  font-size: 15px;
  color: var(--olive);
  opacity: 0.85;
  max-width: 520px;
  margin: 16px auto 0;
}

.cta { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Section header (eyebrow + heading), reused across subpages */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 44px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: 8px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15px;
  color: var(--olive);
  opacity: 0.85;
}

/* Pillars */
.pillars {
  padding: 64px 24px 88px;
}

.pillars-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-icon svg { width: 20px; height: 20px; }

.pillar-card.yoga .pillar-icon { background: var(--sage-pastel); }
.pillar-card.clinical .pillar-icon { background: var(--terracotta-pastel); }
.pillar-card.workplace .pillar-icon { background: var(--cream); }

.pillar-card .strapline {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: 6px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--olive);
  opacity: 0.85;
  margin-bottom: 18px;
}

.pillar-card .link {
  font-size: 13px;
  font-weight: 500;
  color: var(--terracotta);
}

/* Why section, organic blob accents */
.why-section {
  position: relative;
  overflow: hidden;
  background: var(--sage-pastel);
  padding: 80px 24px;
}

.why-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.why-blob-1 { width: 320px; height: 320px; top: -130px; right: -90px; background: var(--terracotta-pastel); }
.why-blob-2 { width: 220px; height: 220px; bottom: -110px; left: -70px; background: var(--off-white); opacity: 0.7; }

.why-section.terracotta-variant { background: var(--terracotta-pastel); }
.why-section.terracotta-variant .why-blob-1 { background: var(--sage-pastel); }
.why-section.terracotta-variant .why-blob-2 { background: var(--off-white); }
.why-section.terracotta-variant .why-list li::before { background: var(--sage); }

.why-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.why-section .section-inner {
  position: relative;
  z-index: 1;
}

.why-inner h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--olive);
  margin-bottom: 24px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-list li {
  font-size: 15px;
  color: var(--olive);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* Generic content sections */
.section {
  padding: 64px 24px 88px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-alt {
  background: var(--cream);
  padding: 72px 24px;
}

/* Class / service list */
.class-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(62,70,50,0.12);
  border-radius: 16px;
  overflow: hidden;
}

.class-item {
  background: var(--white);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.class-item .name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--olive);
}

.class-item .meta {
  font-size: 13px;
  color: var(--olive-soft);
  margin-top: 4px;
}

.class-item .price {
  font-size: 15px;
  font-weight: 500;
  color: var(--terracotta);
  white-space: nowrap;
}

/* Booking panel (placeholder for scheduling embed) */
.booking-panel {
  background: var(--white);
  border: 1px dashed rgba(62,70,50,0.3);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.booking-panel h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-panel p {
  font-size: 14px;
  color: var(--olive);
  opacity: 0.8;
  margin-bottom: 20px;
}

.booking-panel .note {
  font-size: 12px;
  color: var(--olive-soft);
  margin-top: 16px;
}

/* Product / digital download cards */
.product-feature {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.product-feature .eyebrow { margin-bottom: 10px; }

.product-feature h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-feature p {
  font-size: 15px;
  color: var(--olive);
  opacity: 0.85;
  margin-bottom: 20px;
}

.product-feature .price {
  font-size: 15px;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.season-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px;
}

.season-card .season-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--olive);
}

.season-card .season-meta {
  font-size: 12px;
  color: var(--olive-soft);
  margin-top: 2px;
}

/* Forms (wired for Netlify Forms) */
.form-panel {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  max-width: 520px;
  margin: 0 auto;
}

form .field {
  margin-bottom: 16px;
  text-align: left;
}

form label {
  display: block;
  font-size: 13px;
  color: var(--olive-soft);
  margin-bottom: 6px;
}

form input,
form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--olive);
  background: var(--off-white);
  border: 1px solid rgba(62,70,50,0.18);
  border-radius: 8px;
  padding: 11px 14px;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--sage);
}

form textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 12px;
  color: var(--olive-soft);
  margin-top: 14px;
}

/* Credentials */
.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.credentials-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--olive);
  opacity: 0.9;
}

.credentials-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Process steps */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.process-step { text-align: center; }

.process-step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin: 0 auto 12px;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: var(--olive);
  opacity: 0.8;
}

/* Credential tags */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  background: var(--sage-pastel);
  color: var(--olive);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Coming soon / product teaser cards */
.badge-soon {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--olive-soft);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.coming-soon-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  opacity: 0.85;
}

.coming-soon-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.coming-soon-card p {
  font-size: 13px;
  color: var(--olive);
  opacity: 0.85;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(62,70,50,0.12);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  background: var(--white);
  padding: 20px 28px;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--olive);
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 18px;
  color: var(--terracotta);
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
  font-size: 14px;
  color: var(--olive);
  opacity: 0.85;
  margin-top: 12px;
}

/* About */
.about {
  background: var(--cream);
  padding: 72px 24px;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.about-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.about-blob {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 232px;
  height: 232px;
  border-radius: 50%;
  background: var(--terracotta-pastel);
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D8C9AE, #C4B692);
  flex-shrink: 0;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-text p {
  font-size: 15px;
  color: var(--olive);
  opacity: 0.85;
  margin-bottom: 16px;
}

.about-text .link {
  font-size: 13px;
  font-weight: 500;
  color: var(--terracotta);
}

/* Closing CTA */
.closing-cta {
  text-align: center;
  padding: 88px 24px;
}

.closing-cta h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.closing-cta p {
  font-size: 15px;
  color: var(--olive);
  opacity: 0.85;
  max-width: 440px;
  margin: 0 auto 28px;
}

/* Legal pages */
.legal {
  max-width: 720px;
  margin: 0 auto;
}

.legal .updated {
  font-size: 13px;
  color: var(--olive-soft);
  margin-bottom: 36px;
}

.legal h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--olive);
  margin: 36px 0 12px;
}

.legal h2:first-of-type { margin-top: 0; }

.legal p {
  font-size: 15px;
  color: var(--olive);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal li {
  font-size: 15px;
  color: var(--olive);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-note {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 13px;
  color: var(--olive);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Footer */
footer {
  border-top: 1px solid rgba(62,70,50,0.12);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--olive-soft);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--olive);
}

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-bottom {
  max-width: 1120px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(62,70,50,0.12);
  font-size: 12px;
  color: var(--olive-soft);
  text-align: center;
}

@media (max-width: 860px) {
  .about-inner { flex-direction: column; text-align: center; }
  .product-feature { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  header { position: sticky; }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-top: 1px solid rgba(62,70,50,0.12);
    border-bottom: 1px solid rgba(62,70,50,0.12);
  }

  nav.nav-open { display: block; }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }

  nav li { width: 100%; }

  nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(62,70,50,0.08);
  }

  nav li:last-child a { border-bottom: none; }

  .nav-toggle { display: block; }
  .header-inner .btn-terracotta { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 24px 56px; }
  .class-item { flex-direction: column; align-items: flex-start; }
  .season-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .why-blob-1 { width: 200px; height: 200px; top: -80px; right: -60px; }
  .why-blob-2 { width: 150px; height: 150px; bottom: -70px; left: -50px; }
  .about-photo-wrap { margin: 0 auto; }
  .hero .hero-blob-1 { width: 200px; height: 200px; top: -90px; left: -70px; }
  .hero .hero-blob-2 { width: 150px; height: 150px; bottom: -80px; right: -60px; }
}
