/* =========================================================
   STILLPOINT YOGA — stylesheet
   Design tokens live at the top. Change colors/fonts here
   and they update across all three pages.
   ========================================================= */

:root {
  /* ---- Color: warm stone + moss + dusty clay, not the usual cream/terracotta ---- */
  --ink: #23281f;
  --ink-soft: #4b5245;
  --stone: #efe9db;
  --stone-deep: #e2d9c4;
  --paper: #faf7f0;
  --moss: #5f7355;
  --moss-deep: #3c4a35;
  --clay: #c7a189;
  --clay-deep: #a97f68;
  --gold: #b3924f;
  --line: rgba(35, 40, 31, 0.14);

  /* ---- Type ---- */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Public Sans", "Segoe UI", sans-serif;

  /* ---- Rhythm ---- */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 3rem;
  --space-5: 5rem;
  --space-6: 8rem;
  --radius-soft: 1.25rem;
  --max-width: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 var(--space-2); line-height: 1.15; color: var(--ink); }
p { margin: 0 0 var(--space-2); color: var(--ink-soft); }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-3); }
section { padding: var(--space-5) 0; }

:focus-visible {
  outline: 2px solid var(--moss-deep);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-deep);
  margin-bottom: var(--space-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--moss-deep);
  color: var(--paper);
  box-shadow: 0 8px 20px -8px rgba(60, 74, 53, 0.55);
}
.btn-primary:hover { background: var(--moss); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--ink); }
.btn-ghost {
  background: var(--paper);
  color: var(--moss-deep);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--moss-deep); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 233, 219, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--space-3);
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand em { font-style: italic; color: var(--moss-deep); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav-links a:not(.btn) {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--moss-deep);
  transition: right 0.25s ease;
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--stone);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-3);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a:not(.btn) { font-size: 1.15rem; }
  .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); }
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-6) 0 var(--space-5);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  max-width: 12ch;
}
.hero h1 em { font-style: italic; color: var(--moss-deep); font-weight: 500; }
.hero-copy p {
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: var(--space-3);
}
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

/* ---- Signature element: the breathing orb ---- */
.breath-orb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breath-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.breath-ring:nth-child(1) { inset: 0; }
.breath-ring:nth-child(2) { inset: 12%; border-color: rgba(95, 115, 85, 0.28); }
.breath-orb-core {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #8a9c7d 0%, var(--moss) 45%, var(--moss-deep) 100%);
  box-shadow: 0 20px 60px -20px rgba(60, 74, 53, 0.55);
  animation: breathe-scale 8s ease-in-out infinite;
}
.breath-ring:nth-child(1) { animation: breathe-scale 8s ease-in-out infinite; }
.breath-ring:nth-child(2) { animation: breathe-scale 8s ease-in-out infinite 0.4s; }
@keyframes breathe-scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.16); }
}
.breath-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--paper);
}
.breath-label span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}
.breath-label .inhale { animation-name: show-inhale; }
.breath-label .exhale { animation-name: show-exhale; }
@keyframes show-inhale { 0%, 42% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes show-exhale { 0%, 42% { opacity: 0; } 50%, 92% { opacity: 1; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .breath-orb-core, .breath-ring { animation: none; }
  .breath-label .inhale { opacity: 1; }
  .breath-label .exhale { opacity: 0; }
}

/* ---------- Highlights strip ---------- */
.highlights {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--stone-deep);
}
.highlights .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  padding: var(--space-4) var(--space-3);
}
.highlight-item { display: flex; gap: var(--space-2); align-items: flex-start; }
.highlight-item svg { flex-shrink: 0; width: 28px; height: 28px; color: var(--moss-deep); margin-top: 2px; }
.highlight-item h4 { margin-bottom: 0.2rem; font-size: 1.05rem; }
.highlight-item p { margin: 0; font-size: 0.92rem; }

.meet-strip {
  background: var(--stone-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-4) 0;
}

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); max-width: 20ch; margin: 0; }
.section-head p { margin: 0; max-width: 42ch; }

/* ---------- Product / class cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.class-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.class-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -18px rgba(35, 40, 31, 0.25); }
.class-card .icon-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--stone-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
  color: var(--moss-deep);
}
.class-card .icon-mark svg { width: 22px; height: 22px; }
.class-card h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.class-meta {
  display: flex;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--moss-deep);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.class-card p { font-size: 0.95rem; flex-grow: 1; }
.class-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px dashed var(--line);
}
.class-price strong { font-family: var(--font-display); font-size: 1.15rem; }
.class-price span { font-size: 0.82rem; color: var(--ink-soft); }

.preview-cta { text-align: center; margin-top: var(--space-4); }

/* ---------- Pricing / package cards (classes page) ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.package-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: var(--space-3);
  text-align: center;
}
.package-card.featured {
  background: var(--moss-deep);
  color: var(--paper);
  border-color: var(--moss-deep);
  position: relative;
}
.package-card.featured h3, .package-card.featured .package-note { color: var(--paper); }
.package-card.featured .btn-ghost { background: var(--paper); }
.package-card .badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--clay-deep);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.package-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.package-price { font-family: var(--font-display); font-size: 2rem; margin: var(--space-1) 0; }
.package-price sup { font-size: 1rem; font-weight: 500; }
.package-note { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: var(--space-2); min-height: 2.4em; }

/* ---------- Testimonials (rotating) ---------- */
.testimonials { background: var(--stone-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonial-stage {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--ink);
  max-width: 34ch;
  margin-bottom: var(--space-2);
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.85rem; color: var(--ink-soft); }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.t-dots { display: flex; gap: 0.5rem; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
}
.t-dot.is-active { background: var(--moss-deep); width: 22px; border-radius: 999px; transition: width 0.25s ease, background 0.25s ease; }
.t-arrow {
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.t-arrow:hover { border-color: var(--moss-deep); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  border-radius: var(--radius-soft);
  padding: var(--space-5) var(--space-3);
  margin: 0 auto;
  max-width: var(--max-width);
}
.cta-band h2 { color: var(--paper); }
.cta-band p { color: rgba(250, 247, 240, 0.75); max-width: 44ch; margin: 0 auto var(--space-3); }
.cta-band .btn-secondary { color: var(--paper); border-color: rgba(250, 247, 240, 0.3); }
.cta-band .btn-secondary:hover { border-color: var(--paper); }

/* ---------- Page header (interior pages) ---------- */
.page-header { padding: var(--space-5) 0 var(--space-4); text-align: center; }
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.page-header p { max-width: 52ch; margin: 0 auto; font-size: 1.08rem; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
  gap: var(--space-5);
  align-items: start;
}
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: var(--space-4);
}
.info-row { display: flex; gap: var(--space-2); margin-bottom: var(--space-3); }
.info-row svg { width: 22px; height: 22px; color: var(--moss-deep); flex-shrink: 0; margin-top: 2px; }
.info-row h4 { margin-bottom: 0.15rem; font-size: 1rem; }
.info-row p { margin: 0; font-size: 0.95rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: var(--space-2); }
.hours-table td { padding: 0.35rem 0; font-size: 0.92rem; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }

.form-field { margin-bottom: var(--space-2); }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 0.6rem;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--moss-deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: var(--space-1); }
.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  overflow: hidden;
  margin-top: var(--space-3);
}
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-4) 0 var(--space-3);
  margin-top: var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
}
.footer-grid h4 { font-size: 0.95rem; margin-bottom: var(--space-2); }
.footer-grid a, .footer-grid p { font-size: 0.92rem; color: var(--ink-soft); }
.footer-grid ul li { margin-bottom: 0.5rem; }
.footer-grid ul a:hover { color: var(--moss-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: var(--space-2);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Social links (footer) ---------- */
.social-links { display: flex; gap: 0.6rem; margin-top: 0.9rem; }
.social-links a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover { color: var(--moss-deep); border-color: var(--moss-deep); }

/* ---------- Social links (header, smaller variant) ---------- */
.brand-block { display: flex; flex-direction: column; gap: 0.35rem; }
.social-links.social-links--nav { margin-top: 0; gap: 0.45rem; }
.social-links--nav a { width: 24px; height: 24px; border-color: var(--line); }
.social-links--nav a svg { width: 12px; height: 12px; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  padding: 1.1rem 1.4rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--moss-deep);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0.8rem 0 0; }

/* ---------- Hero photo (personalized) ---------- */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.hero-photo-frame {
  position: relative;
  border-radius: 42% 58% 63% 37% / 47% 40% 60% 53%;
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  box-shadow: 0 30px 60px -24px rgba(35, 40, 31, 0.35);
  border: 1px solid var(--line);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual .breath-ring {
  border-color: rgba(95, 115, 85, 0.22);
}
.hero-visual .breath-ring:nth-child(1) { inset: -6%; }
.hero-visual .breath-ring:nth-child(2) { inset: -14%; }

/* ---------- Meet the teacher strip (home) ---------- */
.meet-strip .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-4);
}
.meet-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--paper);
  box-shadow: 0 10px 24px -10px rgba(35, 40, 31, 0.4);
  flex-shrink: 0;
}
.meet-photo img { width: 100%; height: 100%; object-fit: cover; }
.meet-text h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.meet-text p { margin: 0; max-width: 60ch; }
.meet-strip .btn { flex-shrink: 0; }
@media (max-width: 700px) {
  .meet-strip .wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ---------- About / bio layout ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: var(--space-5);
  align-items: center;
}
.bio-photo {
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px -20px rgba(35, 40, 31, 0.3);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-copy .eyebrow { display: block; }
.bio-copy p { font-size: 1.02rem; }
.style-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: var(--space-2) 0 var(--space-3); }
.style-tag {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--stone-deep);
  color: var(--moss-deep);
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--moss-deep);
  max-width: 34ch;
  margin: var(--space-4) auto;
  text-align: center;
  line-height: 1.4;
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: start;
}
.expect-copy p { font-size: 1.02rem; }

@media (max-width: 820px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { max-width: 320px; margin: 0 auto; }
  .expect-grid { grid-template-columns: 1fr; }
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 1rem var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  box-shadow: 0 -8px 24px -10px rgba(0, 0, 0, 0.35);
}
.cookie-banner p {
  margin: 0;
  color: rgba(250, 247, 240, 0.85);
  font-size: 0.9rem;
  max-width: 60ch;
}
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.88rem; flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .breath-orb-wrap { order: -1; max-width: 260px; }
  .hero-visual { order: -1; max-width: 320px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .highlights .wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: var(--space-4) 0; }
  .hero { padding-top: var(--space-4); }
}
