/* ===========================================================
   Cosmic Consciousness — Design System
   Palette drawn directly from the foundation's mandala logo:
   sacred green (centre circle), terracotta (lotus petals),
   warm cream-gold (hexagram/merkaba), charcoal + flame amber
   (the diya at the heart of the mark).
   =========================================================== */

:root {
  --green-deep: #2f6b45;
  --green-mid: #4ca050;
  --green-pale: #eaf3e6;
  --terracotta: #b8442b;
  --terracotta-dark: #8f3320;
  --cream: #fbf6ec;
  --cream-deep: #f2e8d3;
  --gold: #d98a2b;
  --gold-light: #f0b35c;
  --charcoal: #221f1a;
  --charcoal-soft: #56504a;
  --line: rgba(34, 31, 26, 0.1);
  --shadow: 0 20px 45px -25px rgba(34, 31, 26, 0.35);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--green-deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.1em; color: var(--charcoal-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(47, 107, 69, 0.55);
}
.btn-primary:hover { background: #255837; transform: translateY(-2px); }

.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: inherit;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-ghost {
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.btn-ghost:hover { background: var(--green-deep); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-deep);
}
.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}

/* Single list of nav items — one source of truth for both the desktop
   horizontal row and the mobile slide-in drawer (see media query below).
   The last <li> (.nav-cta-item) carries the "Book a Session" button. */
.main-nav { }
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--green-deep); }

/* CTA lives inside the same list, styled with the existing .btn/.btn-ghost
   utility classes so it looks identical to buttons used elsewhere on the site. */
.nav-cta-item { display: flex; }

/* ---------- Mobile menu mechanics (checkbox hack — no JS required) ----------
   #nav-toggle is a visually-hidden checkbox. Toggling it (via either the
   hamburger label or the backdrop label, both linked with for="nav-toggle")
   flips :checked, which the drawer/backdrop/icon below react to with pure
   CSS sibling selectors ( ~ ). This only takes visual effect inside the
   @media (max-width: 640px) block; on desktop the checkbox has no target
   to toggle, so it's inert. */
.nav-toggle-input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  pointer-events: none;
}

/* Hamburger icon — hidden by default, only revealed on mobile */
.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px; height: 48px;
  cursor: pointer;
  z-index: 60;
  position: relative;
}
.nav-toggle-label span {
  display: block;
  width: 28px; height: 3px;
  margin: 0 auto;
  background: var(--charcoal);
  border-radius: 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 18%, var(--green-pale) 0%, var(--cream) 55%);
  padding: 90px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(184, 68, 43, 0.18);
}
.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(47, 107, 69, 0.18);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}
.hero h1 { margin-bottom: 20px; }
.hero-lede { font-size: 1.1rem; max-width: 46ch; }
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
  font-size: 1.05rem;
  margin-bottom: 22px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img { width: 100%; max-width: 340px; filter: drop-shadow(0 30px 40px rgba(34,31,26,0.18)); }

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.stat-row div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--green-deep);
}
.stat-row div span {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Sections ---------- */
section { padding: 86px 0; }
.section-alt { background: var(--green-pale); }
.section-dark {
  background: var(--charcoal);
  color: #f2ede2;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #cfc8bb; }

.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards / Grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon-badge { margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 0.95rem; }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-pale);
  color: var(--green-deep);
}
.icon-badge.terracotta { background: #f5e3dd; color: var(--terracotta); }
.icon-badge.gold { background: #faead2; color: var(--gold); }

/* ---------- Founders ---------- */
.founder-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 40px 34px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
}
.avatar-ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: conic-gradient(from 210deg, var(--green-mid), var(--gold), var(--terracotta), var(--green-mid));
  padding: 6px;
}
.avatar-ring span {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
}
.founder-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-deep); margin-bottom: 2px; }
.founder-title { color: var(--terracotta); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green-deep);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ---------- Accordion (courses) ---------- */
.course-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}
.course-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-deep);
  font-weight: 600;
  gap: 16px;
}
.course-item summary::-webkit-details-marker { display: none; }
.course-summary-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.course-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -8px rgba(34,31,26,0.4);
}
.course-item summary .tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: #f5e3dd;
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: auto;
  margin-left: 16px;
  white-space: nowrap;
}
.course-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--terracotta);
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform 0.2s ease;
}
.course-item[open] summary::after { transform: rotate(45deg); }
.course-body { padding: 0 28px 28px; }
.course-body p { font-size: 0.96rem; }
.course-body ul { padding-left: 20px; color: var(--charcoal-soft); }
.course-body li { margin-bottom: 6px; }

.course-body-top {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin: 4px 0 20px;
}
.course-body-hero {
  max-width: 280px;
  max-height: 280px;
  width: auto;
  height: auto;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: block;
}
.course-body-intro { flex: 1; min-width: 0; }
.course-body-intro p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .course-body-top {
    flex-direction: column;
  }
  .course-body-hero {
    max-width: 100%;
    max-height: 260px;
  }
}

/* ---------- Course carousel banner ---------- */
.course-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
  background: var(--cream);
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.65,0,.35,1);
}
.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 2.62 / 1;
  background: var(--cream);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(34,31,26,0.45);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.carousel-arrow:hover { background: rgba(34,31,26,0.7); }
.carousel-arrow.prev { left: 14px; }
.carousel-arrow.next { right: 14px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dots button.active {
  background: #fff;
  transform: scale(1.3);
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px;
  margin-bottom: 26px;
}
.quote-card .quote-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.quote-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-deep);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
  flex-shrink: 0;
}
.quote-card p { font-size: 0.96rem; }
.quote-card .quote-name { font-weight: 700; color: var(--green-deep); }
.quote-card .quote-role { font-size: 0.8rem; color: var(--terracotta); text-transform: uppercase; letter-spacing: 0.04em; }
.quote-line {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta-dark);
  border-top: 1px dashed var(--line);
  margin-top: 14px;
  padding-top: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.testimonial-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  align-self: start;
}
.testimonial-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.testimonial-item summary::-webkit-details-marker { display: none; }
.testimonial-summary-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.testimonial-summary-head .quote-name { display: block; }
.testimonial-summary-head .quote-role { display: block; margin-top: 2px; }
.testimonial-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--terracotta);
  font-family: var(--font-body);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.testimonial-item[open] summary::after { transform: rotate(45deg); }
.testimonial-body { padding: 0 24px 26px; }
.testimonial-body p { font-size: 0.94rem; }
.testimonial-body .quote-line { font-size: 0.94rem; }

.testimonials-google {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-google .eyebrow { margin-bottom: 8px; }
.testimonials-google .lede {
  color: var(--charcoal-soft);
  font-size: 0.92rem;
  max-width: 640px;
  margin: 10px auto 26px;
}
.testimonials-google .sk-ww-google-reviews {
  width: 100%;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 30px;
  margin-bottom: 24px;
}
.contact-card h3 { margin-bottom: 12px; }
.contact-card iframe {
  width: 100%; height: 220px; border: 0; border-radius: 12px; margin-top: 16px;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--charcoal); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-mid);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-tile {
  aspect-ratio: 1;
  border-radius: 18px;
  display: block;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 30px -18px rgba(34,31,26,0.5);
}
.gallery-tile svg { width: 62%; height: 62%; opacity: 0.9; }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 16px 12px;
  background: linear-gradient(to top, rgba(34,31,26,0.78), rgba(34,31,26,0));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.gallery-note {
  text-align: center;
  max-width: 520px;
  margin: 36px auto 0;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: #cfc8bb;
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 40px; }
.footer-brand strong { font-family: var(--font-display); color: #fff; font-size: 1.1rem; }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #8f897c;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Sacred geometry decorative dots ---------- */
.divider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 40px;
}
.divider-dots span {
  width: 7px; height: 7px; border-radius: 50%;
}
.divider-dots span:nth-child(1) { background: var(--terracotta); }
.divider-dots span:nth-child(2) { background: var(--gold); }
.divider-dots span:nth-child(3) { background: var(--green-mid); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--green-deep);
  color: #fff;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(217,138,43,0.25), transparent 60%);
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: #d8e5da; max-width: 60ch; }

.breadcrumb {
  font-size: 0.82rem;
  color: #b9d4c0;
  margin-bottom: 18px;
}
.breadcrumb a { color: #fff; font-weight: 600; }

/* ---------- Page hero — light variant (alternates with the green default) ---------- */
.page-hero.light {
  background: linear-gradient(180deg, var(--cream-deep), var(--cream));
  color: var(--charcoal);
}
.page-hero.light::before {
  background: radial-gradient(circle at 85% 20%, rgba(184,68,43,0.14), transparent 60%);
}
.page-hero.light .eyebrow { color: var(--terracotta); }
.page-hero.light .eyebrow::before { background: var(--terracotta); }
.page-hero.light h1 { color: var(--green-deep); }
.page-hero.light p { color: var(--charcoal-soft); }
.page-hero.light .breadcrumb { color: var(--charcoal-soft); }
.page-hero.light .breadcrumb a { color: var(--green-deep); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 220px; margin: 0 auto 20px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: left; }
  .avatar-ring { width: 90px; height: 90px; }
  .carousel-slide { aspect-ratio: 16 / 10; }
}

@media (max-width: 520px) {
  .course-item summary { flex-wrap: wrap; }
  .course-item summary .tag { margin-left: 0; }
  .course-thumb { width: 44px; height: 44px; }
}

@media (max-width: 640px) {
  .header-inner { padding: 12px 20px; }
  .brand { min-width: 0; flex-shrink: 1; }
  .brand-text strong { font-size: 1rem; }
  .brand-text span { font-size: 0.6rem; }

  /* Reveal the hamburger, push it to the far right of the header row.
     Its bars turn white on :checked (see below) so they stay visible
     against the dark drawer background once open. */
  .nav-toggle-label { display: flex; margin-left: auto; }

  /* Full-screen takeover drawer: fixed panel spanning the full width,
     sitting below the sticky header (top:71px) so the logo stays visible,
     off-screen by default (translateX(100%)) and slid into view when the
     checkbox is checked. Dark, gold-flecked background echoes the
     .page-hero treatment used elsewhere on the site, so the menu still
     reads as unmistakably "Cosmic Consciousness" rather than a generic
     dark overlay. Being fully opaque, it also does the job a separate
     dimming backdrop would — nothing behind it needs its own overlay. */
  .main-nav {
    position: fixed;
    top: 71px; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(circle at 85% 12%, rgba(217, 138, 43, 0.22), transparent 55%),
      var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 40;
    overflow-y: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 10px 8vw;
    margin: 0;
  }
  .nav-list li { border-bottom: 1px solid rgba(251, 246, 236, 0.12); }
  .nav-list li.nav-cta-item { border-bottom: none; }
  .nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 2px;
    font-size: 1.1rem;
    color: var(--cream);
  }
  .nav-link::after { display: none; } /* underline-on-hover is a desktop-only affordance */
  .nav-link.active { color: var(--gold-light); }
  .nav-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    display: flex;
    color: var(--gold-light);
  }
  .nav-icon svg { width: 100%; height: 100%; }

  .nav-cta-item { margin-top: 22px; padding: 0 2px; }
  .nav-cta-item .btn {
    width: 100%;
    justify-content: center;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
    font-weight: 700;
  }
  .nav-cta-item .btn:hover { background: var(--gold-light); border-color: var(--gold-light); }

  /* Small tagline echoing the hero, anchoring the bottom of the menu */
  .nav-footer {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.78rem;
    color: rgba(240, 179, 92, 0.8);
    border-top: 1px solid rgba(251, 246, 236, 0.12);
    padding: 18px 8vw 26px;
    margin-top: 26px;
  }

  /* ---- Checked state: slide the drawer in, morph hamburger into a close (X).
     The icon sits on the header's own cream bar (not the dark drawer), so
     its bars stay charcoal-coloured — only the shape changes to an X. ---- */
  .nav-toggle-input:checked ~ .main-nav { transform: translateX(0); }
  .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle-input:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .grid-3, .grid-2, .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .field-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 60px 0 70px; }
  .container { padding: 0 20px; }
}

/* Respect reduced-motion preference: disable the slide/fade animation */
@media (prefers-reduced-motion: reduce) {
  .main-nav,
  .nav-toggle-label span {
    transition: none;
  }
}
