/* 
  Shaking Medicine — Professional Website
  Ultra-polished, high-end wellness aesthetic
  Earthy luxury: spacious, refined, trustworthy, vibrant yet grounded.
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --sm-green: #628339;
  --sm-green-dark: #4f6a2e;
  --sm-orange: #C67511;
  --sm-gold: #e7da69;
  --sm-cream: #f8f4eb;
  --sm-cream-dark: #f0e9dc;
  --sm-earth: #2c2118;
  --sm-earth-light: #3f2a1d;
  --sm-sage: #4a5d3a;
  --sm-text: #2c2118;
  --sm-text-muted: #5c4a3a;
  --sm-border: #d9c9a8;
}

/* Font setup is in HTML for self-hosted + Google for body polish */

/* Global polish */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-feature-settings: "kern" "tnum" "liga" "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}

.serif-heading {
  font-family: 'Californian FB', 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-feature-settings: "kern" "tnum" "liga";
  letter-spacing: -0.015em;
}

.body-sans {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Professional buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 9999px;
  transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--sm-green);
  color: white;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}
.btn-primary:hover {
  background-color: var(--sm-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--sm-earth);
  border: 1.5px solid var(--sm-earth);
}
.btn-secondary:hover {
  background-color: var(--sm-earth);
  color: white;
  border-color: var(--sm-earth);
}

.btn-ghost {
  background-color: transparent;
  color: var(--sm-earth);
  border: 1px solid var(--sm-border);
}
.btn-ghost:hover {
  background-color: var(--sm-cream-dark);
  border-color: var(--sm-green);
  color: var(--sm-green);
}

.btn-accent {
  background-color: var(--sm-orange);
  color: white;
}
.btn-accent:hover {
  background-color: #a35e0e;
  transform: translateY(-1px);
}

/* Section rhythm */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
}

.section-title {
  font-size: clamp(2.2rem, 5.4vw, 3.55rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sm-earth);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--sm-text-muted);
  max-width: 42ch;
}

/* Elegant cards */
.card {
  background: white;
  border: 1px solid var(--sm-border);
  border-radius: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
              border-color 0.2s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.12);
  border-color: #c9b48a;
}

.dark-card {
  background: var(--sm-earth);
  color: var(--sm-cream);
  border-color: #463526;
}
.dark-card:hover {
  border-color: var(--sm-gold);
}

/* Trust / badge bar */
.trust-bar {
  background: rgba(248, 244, 235, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sm-border);
}

/* Premium image treatments */
.img-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  border: 1px solid var(--sm-border);
}

.img-frame img,
.img-frame video {
  transition: transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-frame:hover img,
.img-frame:hover video {
  transform: scale(1.035);
}

/* Keith rotator: keep the face in cropped frames until JS sets a per-photo position */
img[data-keith-photo] {
  object-fit: cover;
  object-position: center 18%;
}

/* Quote styling - very professional */
.quote {
  font-family: 'Californian FB', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--sm-earth-light);
}

.testimonial {
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -0.6rem;
  left: -0.1rem;
  font-size: 4.5rem;
  line-height: 1;
  font-family: 'Californian FB', Georgia, serif;
  color: var(--sm-gold);
  opacity: 0.25;
  pointer-events: none;
}

/* ------------------------------------------------------------------
   Shared header / footer chrome
   Aligned with live shakingmedicine.com: Open Sans nav, linear layout,
   favicon mark, icon socials, calm cream bar.
   ------------------------------------------------------------------ */

/* --- Header --- */
.site-nav,
#nav.site-nav {
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(44, 33, 24, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Open Sans', 'Inter', system-ui, sans-serif;
}
#nav.scrolled,
.site-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 8px rgb(0 0 0 / 0.06);
}

.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: env(safe-area-inset-top, 0px) max(1.25rem, env(safe-area-inset-right, 0px)) 0 max(1.25rem, env(safe-area-inset-left, 0px));
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--sm-earth);
  flex-shrink: 0;
}
.site-brand:hover { opacity: 0.88; }

.site-brand-mark {
  width: auto;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 0;
  display: block;
}
.site-brand-mark--favicon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

/* Always show brand text next to logo (including mobile) */
.site-brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.site-brand-text {
  font-family: 'Lora', 'Californian FB', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--sm-earth);
}
@media (min-width: 400px) {
  .site-brand-text {
    font-size: 1.15rem;
  }
}

.site-brand-sub {
  font-family: 'Open Sans', Inter, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--sm-text-muted);
  margin-top: 0.12rem;
}
@media (min-width: 400px) {
  .site-brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }
}

.site-nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 1.35rem;
  flex: 1;
}
@media (min-width: 1024px) {
  .site-nav-links { display: flex; }
}

.site-nav .nav-link {
  position: relative;
  font-family: 'Open Sans', 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #3f2a1d;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.site-nav .nav-link:hover {
  color: var(--sm-green);
}
.site-nav .nav-link.is-active,
#nav .nav-link.is-active,
#nav a.is-active:not(.btn):not(.site-nav-cta) {
  color: var(--sm-green);
  font-weight: 600;
}
.site-nav .nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--sm-green);
  border-radius: 1px;
}

.nav-dd {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  padding-bottom: 0.85rem;
  margin-bottom: -0.85rem;
}
.nav-dd-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f2a1d;
  cursor: pointer;
  border-radius: 999px;
}
.nav-dd-toggle:hover,
.nav-dd:hover .nav-dd-toggle,
.nav-dd.is-open .nav-dd-toggle {
  color: var(--sm-green);
  background: rgba(98, 131, 57, 0.1);
}
.nav-dd-menu {
  display: none;
  position: absolute;
  top: calc(100% - 0.35rem);
  left: 0;
  min-width: 12.75rem;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid #d9c9a8;
  border-radius: 0.9rem;
  box-shadow: 0 14px 32px rgba(44, 33, 24, 0.12);
  z-index: 80;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu,
.nav-dd.is-open .nav-dd-menu {
  display: block;
}
.nav-dd-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  font-size: 0.875rem;
  font-weight: 550;
  color: #3f2a1d;
  text-decoration: none;
  white-space: nowrap;
}
.nav-dd-menu a:hover,
.nav-dd-menu a.is-active {
  background: rgba(98, 131, 57, 0.1);
  color: var(--sm-green);
}
.site-nav-mobile-sub {
  padding-left: 1.15rem !important;
  font-size: 0.88rem !important;
  color: #5c4a3a !important;
}

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-nav-cta {
  display: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--sm-green);
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
.site-nav-cta:hover {
  background: var(--sm-green-dark);
  color: #fff;
}
@media (min-width: 1024px) {
  .site-nav-cta { display: inline-flex; align-items: center; }
}

.site-nav-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0.5rem;
  color: var(--sm-earth);
  background: transparent;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  flex-shrink: 0;
}
.site-nav-burger svg {
  width: 2rem;
  height: 2rem;
  display: block;
}
.site-nav-burger:hover { background: rgba(44, 33, 24, 0.06); }
@media (min-width: 1024px) {
  .site-nav-burger { display: none; }
}

.site-nav-mobile {
  display: none;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0.35rem 0.35rem 0.65rem 1.15rem;
  border-top: 1px solid rgba(44, 33, 24, 0.08);
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  animation: slideDown 0.2s ease forwards;
  max-height: calc(100dvh - 4.5rem - env(safe-area-inset-top, 0px));
  overscroll-behavior: contain;
}
.site-nav-mobile:not(.hidden) {
  display: flex;
}
.site-nav-mobile-list {
  flex: 1 1 auto;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0.15rem 0.65rem 1.35rem 0;
  scrollbar-width: thin;
  scrollbar-color: #628339 rgba(44, 33, 24, 0.08);
}
.site-nav-mobile-list::-webkit-scrollbar {
  width: 5px;
}
.site-nav-mobile-list::-webkit-scrollbar-thumb {
  background: #628339;
  border-radius: 99px;
}
.site-nav-mobile-scrollcue {
  flex: 0 0 1.45rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #628339;
  padding: 0.85rem 0 1.1rem;
  pointer-events: none;
}
.site-nav-mobile-scrollcue svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
  opacity: 0.9;
}
.site-nav-mobile-scrollcue-bar {
  width: 3px;
  flex: 1 1 3.5rem;
  max-height: 5.5rem;
  border-radius: 99px;
  background: linear-gradient(#628339, rgba(98, 131, 57, 0.22), #628339);
}
.site-nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(44, 33, 24, 0.06);
  font-size: 0.95rem;
  font-weight: 500;
  color: #3f2a1d;
  text-decoration: none;
}
.site-nav-mobile a:hover,
.site-nav-mobile a.is-active {
  color: var(--sm-green);
}
.site-nav-cta-mobile {
  display: inline-flex !important;
  justify-content: center;
  margin-top: 1rem;
  border-bottom: none !important;
  text-align: center;
}
html.sm-menu-open,
body.sm-menu-open {
  overflow: hidden !important;
}

/* Fixed header clearance for non-hero pages */
body.has-site-chrome .page-main {
  padding-top: calc(5.25rem + env(safe-area-inset-top, 0px));
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile menu polish */
#mobile-menu {
  animation: slideDown 0.2s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Footer ---
   Mobile: logo → heading → socials → 2-col links → copy
   Desktop: left brand column (logo, heading, socials, copy) + right links
*/
.site-footer {
  background: var(--sm-cream, #f8f4eb);
  border-top: 1px solid rgba(44, 33, 24, 0.08);
  font-family: 'Open Sans', 'Inter', system-ui, sans-serif;
  color: #3f2a1d;
  scroll-margin-top: 5.5rem;
}
@media (min-width: 768px) {
  .site-footer {
    border-top: none;
  }
}

.site-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.65rem 1.35rem 3.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.site-footer-branding {
  display: contents;
}
@media (min-width: 768px) {
  .site-footer-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    max-width: 52rem;
    padding: 5rem 2.25rem 5.75rem;
    gap: 5.5rem;
  }
  .site-footer-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
  }
}

.site-footer-brand {
  display: inline-block;
  margin: 0 0 0.35rem;
  line-height: 0;
}
@media (min-width: 768px) {
  .site-footer-brand {
    margin: 0 0 0.2rem;
  }
}
.site-footer-brand:hover { opacity: 0.88; }

/* Logo — top on all viewports (restored desktop order) */
.site-footer-mark {
  width: auto;
  height: 8.25rem;
  max-width: min(92vw, 22rem);
  object-fit: contain;
  border-radius: 0;
}
@media (min-width: 768px) {
  .site-footer-mark {
    height: 10.75rem;
    max-width: 26rem;
  }
}

/* How to begin — TRE-style 2×2 glass tiles over full-bleed photo */
.begin-offer {
  background: #f8f4eb;
  border-top: 1px solid #d9c9a8;
  border-bottom: 1px solid #d9c9a8;
}
.begin-offer-intro {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.begin-offer-lead {
  margin-top: 0.85rem;
  font-size: 1.14rem;
  line-height: 1.65;
  color: #5c4a3a;
  max-width: 46ch;
}
.begin-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 700px) {
  .begin-offer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 980px) {
  .begin-offer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.begin-offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.65rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid #d9c9a8;
  border-radius: 1.25rem;
  box-shadow: 0 8px 22px rgb(44 33 24 / 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.begin-offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgb(44 33 24 / 0.08);
}
.begin-offer-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #628339;
  margin-bottom: 0.4rem;
}
.begin-offer-card h3 {
  margin: 0 0 0.65rem;
  font-family: 'Californian FB', 'Playfair Display', Georgia, serif;
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2c2118;
  line-height: 1.15;
}
.begin-offer-card p {
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #5c4a3a;
}
.begin-offer-card .btn {
  width: fit-content;
}
.begin-offer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 0.85rem;
}
.begin-offer-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #628339;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.begin-offer-links a:hover {
  color: #4f6a2e;
}

/* Home Voices — quote cards from Wins text */
.voices-scroller {
  padding-inline: 3.1rem;
}
.voices-cards {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 0.35rem 0.15rem 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.voices-cards::-webkit-scrollbar {
  display: none;
  height: 0;
}
.voices-scroller .explore-blog-arrow {
  display: inline-flex;
  top: 50%;
  transform: translateY(-50%);
  width: 3.45rem;
  height: 3.45rem;
  border-width: 1.75px;
}
.voices-scroller .explore-blog-arrow svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke-width: 2.6;
}
.voices-scroller .explore-blog-arrow--prev { left: 0; }
.voices-scroller .explore-blog-arrow--next { right: 0; }
@media (max-width: 767px) {
  .voices-scroller {
    margin-inline: -1.75rem;
    padding-inline: 3.55rem;
  }
  .voices-scroller .explore-blog-arrow--prev { left: 0.12rem; }
  .voices-scroller .explore-blog-arrow--next { right: 0.12rem; }
  /* Nested columns (blog, 1:1): bleed to the screen so arrows sit at the edge and cards can be wider */
  .blog-article-body .explore-blog-scroller,
  .oto-wrap .explore-blog-scroller {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-inline: 3.55rem;
  }
}
@media (min-width: 700px) {
  .voices-scroller {
    padding-inline: 3.6rem;
  }
  .voices-scroller .explore-blog-arrow {
    width: 3.75rem;
    height: 3.75rem;
  }
  .voices-scroller .explore-blog-arrow svg {
    width: 1.7rem;
    height: 1.7rem;
  }
}
.voice-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 86%;
  max-width: 22rem;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 1px solid #d9c9a8;
  border-radius: 1rem;
  padding: 1.2rem 1.25rem 1.05rem;
  min-height: 0;
  box-sizing: border-box;
  box-shadow: 0 8px 22px rgba(44, 33, 24, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.voice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/fields/flower-of-life.jpg") center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.voice-card > * {
  position: relative;
  z-index: 1;
}
.voice-card-mark {
  display: block;
  font-family: 'Californian FB', 'Playfair Display', Georgia, serif;
  font-size: 3.4rem;
  line-height: 0.55;
  color: #c67511;
  opacity: 0.88;
  margin: 0 0 0.55rem;
  pointer-events: none;
}
.voice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(44, 33, 24, 0.12);
}
@media (min-width: 700px) {
  .voice-card {
    flex-basis: calc((100% - 1.15rem) / 2);
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .voice-card {
    flex-basis: calc((100% - 2.3rem) / 3);
  }
}
@media (max-width: 767px) {
  .voices-cards {
    gap: 1rem;
    scroll-padding-inline: 0.2rem;
  }
  .voice-card {
    flex: 0 0 80%;
    max-width: none;
    scroll-snap-align: center;
  }
}
.voice-card-quote {
  margin: 0 0 0.75rem;
  flex: 0 1 auto;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
  color: #3f2a1d;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
.voice-card-name {
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid #eadfc8;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c4a3a;
}

.home-wins-status {
  margin: 1rem 0 0;
  text-align: center;
  color: #5c4a3a;
}
.tt-wins-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem 1.25rem;
  background: rgba(44, 33, 24, 0.82);
}
.tt-wins-lightbox[hidden] { display: none; }
.tt-wins-lightbox-figure {
  margin: 0;
  max-width: min(920px, 100%);
  max-height: 90vh;
}
.tt-wins-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
.tt-wins-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: #f8f4eb;
  color: #2c2118;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

/* Floating WhatsApp (scrolls with page / fixed on viewport) */
.sm-whatsapp-float {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.1rem, calc(1.1rem + env(safe-area-inset-bottom, 0px)));
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #628339;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(98, 131, 57, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.sm-whatsapp-float:hover {
  background: #4f6a2e;
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(79, 106, 46, 0.42);
  color: #fff;
}
.sm-whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
}
@media (min-width: 768px) {
  .sm-whatsapp-float {
    right: max(1.5rem, env(safe-area-inset-right, 0px));
    bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom, 0px)));
    width: 3.75rem;
    height: 3.75rem;
  }
}
.sm-whatsapp-float .site-social-tip {
  left: auto;
  right: calc(100% + 0.7rem);
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  white-space: nowrap;
}
.sm-whatsapp-float .site-social-tip::after {
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #2c2118;
  border-top-color: transparent;
}
.sm-whatsapp-float:hover .site-social-tip,
.sm-whatsapp-float.is-copied .site-social-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(50%) translateX(0);
}
.sm-whatsapp-float.is-copied .site-social-tip {
  background: var(--sm-green);
}
.sm-whatsapp-float.is-copied .site-social-tip::after {
  border-left-color: var(--sm-green);
}

/* Tagline removed from footer markup; keep class inert if reintroduced */
.site-footer-tagline {
  display: none;
}

.site-footer-heading {
  font-family: 'Lora', 'Californian FB', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--sm-earth);
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1.3;
  max-width: none;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer-heading {
    font-size: 1.55rem;
    margin: 0 0 1rem;
    padding: 0;
    max-width: none;
    white-space: nowrap;
    text-align: center;
  }
}

/*
 * Social row — mobile: one row, large icons, near full viewport width
 * Desktop: centered compact circles
 */
.site-footer-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.45rem;
  box-sizing: border-box;
  /* Break out of .site-footer-inner horizontal padding (1.35rem) to near edges */
  align-self: stretch;
  width: calc(100% + 2.7rem);
  max-width: none;
  margin: 0 -1.35rem 1.85rem;
  padding: 0 0.55rem;
}
@media (min-width: 768px) {
  .site-footer-socials {
    align-self: center;
    width: auto;
    max-width: none;
    margin: 0 0 1.25rem;
    padding: 0;
    justify-content: center;
    gap: 1rem;
  }
}

/* Social icons */
.site-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  max-width: 4.35rem;
  border-radius: 50%;
  color: var(--sm-earth);
  background: var(--sm-cream, #f8f4eb);
  border: 1px solid rgba(44, 33, 24, 0.12);
  transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}
@media (min-width: 768px) {
  .site-social {
    flex: 0 0 auto;
    width: 3.05rem;
    height: 3.05rem;
    max-width: none;
    aspect-ratio: auto;
    background: transparent;
    border: none;
    border-radius: 0;
  }
}
.site-social:hover {
  color: #fff;
  background: var(--sm-green);
  border-color: var(--sm-green);
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .site-social:hover {
    color: var(--sm-green);
    background: transparent;
    border-color: transparent;
  }
}
.site-social svg {
  display: block;
  width: 48%;
  height: 48%;
  max-width: 1.85rem;
  max-height: 1.85rem;
}
@media (min-width: 768px) {
  .site-social svg {
    width: 2.55rem;
    height: 2.55rem;
    max-width: none;
    max-height: none;
  }
}

/* Footer email: copy-to-clipboard feedback (desktop + mobile) */
.site-social--email,
.site-social--whatsapp {
  position: relative;
}
.site-social-copied-label {
  display: none;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
/* Hover/focus tip: "Copy to clipboard" on all viewports */
.site-social-tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  transform: translateX(-50%) translateY(4px);
  padding: 0.35rem 0.65rem;
  border-radius: 0.4rem;
  background: #2c2118;
  color: #f8f4eb;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 5;
  box-shadow: 0 6px 16px rgba(44, 33, 24, 0.18);
}
.site-social-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #2c2118;
}
.site-social--email:hover .site-social-tip,
.site-social--email:focus-visible .site-social-tip,
.site-social--email.is-copied .site-social-tip,
.site-social--whatsapp:hover .site-social-tip,
.site-social--whatsapp:focus-visible .site-social-tip,
.site-social--whatsapp.is-copied .site-social-tip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-social--email.is-copied,
.site-social--whatsapp.is-copied {
  color: #fff;
  background: var(--sm-green);
  border-color: var(--sm-green);
}
@media (min-width: 768px) {
  .site-social--email.is-copied,
  .site-social--whatsapp.is-copied {
    color: var(--sm-green);
    background: transparent;
    border-color: transparent;
  }
}
.site-social--email.is-copied .site-social-icon,
.site-social--whatsapp.is-copied .site-social-icon {
  display: none;
}
.site-social--email.is-copied .site-social-copied-label,
.site-social--whatsapp.is-copied .site-social-copied-label {
  display: block;
}
.site-social--email.is-copied .site-social-tip,
.site-social--whatsapp.is-copied .site-social-tip {
  background: var(--sm-green);
}
.site-social--email.is-copied .site-social-tip::after,
.site-social--whatsapp.is-copied .site-social-tip::after {
  border-top-color: var(--sm-green);
}
.site-footer-note a[data-sm-copy-email] {
  cursor: copy;
}
.site-footer-note a.is-copied-text,
a.btn.is-copied-text {
  color: var(--sm-green);
  font-weight: 700;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

/*
 * Footer links
 * Mobile: two-column grid (dots hidden)
 * Desktop: single horizontal row with · separators (restored)
 */
.site-footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 2.15rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 1.85rem;
  line-height: 1.3;
}
.site-footer-link-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-footer-links a {
  display: block;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #3f2a1d;
  text-decoration: none;
  padding: 0.45rem 0.25rem;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.site-footer-links a:hover,
.site-footer-links a.is-active {
  color: var(--sm-green);
}
.site-footer-dot {
  display: none;
  color: #b8a88a;
  font-size: 0.75rem;
  user-select: none;
  padding: 0 0.05rem;
}

@media (min-width: 768px) {
  .site-footer-links {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.1rem;
    max-width: none;
    width: auto;
    margin: 0.55rem 0 0;
    line-height: 1.45;
  }
  .site-footer-link-col {
    display: contents;
  }
  .site-footer-links a {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 0.32rem 0.2rem;
  }
  .site-footer-dot {
    display: none;
  }
}

.site-footer-note {
  font-size: 0.9rem;
  color: #5c4a3a;
  line-height: 1.55;
  margin: 0 0 1.75rem;
}
@media (min-width: 768px) {
  .site-footer-note {
    font-size: 0.85rem;
    margin: 0 0 1.25rem;
    max-width: 28rem;
  }
  .site-footer-note strong {
    font-weight: 650;
    color: #2c2118;
  }
}
.site-footer-note a {
  color: var(--sm-green);
  font-weight: 600;
  text-decoration: none;
}
.site-footer-note a:hover { text-decoration: underline; }

.site-footer-form-fold {
  width: 100%;
  max-width: 22.5rem;
  margin: 0 auto 1.85rem;
  text-align: left;
  order: 4;
  background: #fff;
  border: 1px solid #d9c9a8;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(44, 33, 24, 0.05);
}
.site-footer-form-fold[open] {
  border-radius: 1.15rem;
}
.site-footer-form-fold > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  padding: 0.78rem 1.15rem 0.78rem 1.25rem;
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #2c2118;
}
.site-footer-form-fold > summary::-webkit-details-marker {
  display: none;
}
.site-footer-form-fold > summary::after {
  content: "+";
  color: #628339;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 0.8;
}
.site-footer-form-fold[open] > summary::after {
  content: "–";
}
.site-footer-form-fold > summary:hover {
  color: #4f6a2e;
}
@media (min-width: 768px) {
  .site-footer-form-fold {
    margin: 0.15rem auto 1.35rem;
  }
}
.site-footer-form {
  width: 100%;
  margin: 0;
  padding: 0.1rem 1.1rem 1.15rem;
  text-align: left;
}
.site-footer-form-note {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #5c4a3a;
}
.site-footer-form-note span {
  color: #c67511;
  font-weight: 700;
  margin-right: 0.2rem;
}
.site-footer-field {
  display: block;
  margin: 0 0 0.7rem;
}
.site-footer-field span {
  display: block;
  margin: 0 0 0.28rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #5c4a3a;
}
.site-footer-field input,
.site-footer-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.72rem 0.85rem;
  border: 1px solid #d9c9a8;
  border-radius: 0.75rem;
  background: #fff;
  color: #2c2118;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.45;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.site-footer-field textarea {
  min-height: 6.5rem;
  resize: vertical;
}
.site-footer-field input:focus,
.site-footer-field textarea:focus {
  border-color: #628339;
  box-shadow: 0 0 0 3px rgba(98, 131, 57, 0.18);
}
.site-footer-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.site-footer-form-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.15rem;
}
.site-footer-form-status {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
  color: #5c4a3a;
}
.site-footer-form-status.is-ok {
  color: #4f6a2e;
  font-weight: 650;
}
.site-footer-form-status.is-err {
  color: #8a4a28;
}

.site-footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.95rem;
  color: #8a7a68;
  line-height: 1.45;
  margin: 0;
  letter-spacing: 0.02em;
  padding-bottom: 0.25rem;
  order: 10;
}
.site-footer-links {
  order: 5;
}
@media (min-width: 768px) {
  .site-footer-copy {
    display: block;
    font-size: 1.1rem;
    padding-bottom: 0;
    text-align: center;
    margin-top: 0.25rem;
    line-height: 1.5;
  }
  .site-footer-copy-year,
  .site-footer-copy-org {
    display: inline;
  }
  .site-footer-copy-org::before {
    content: " ";
  }
  .site-footer-copy-rights {
    display: block;
  }
}

/* Benefits — editorial, clinical-warm */
.benefits-alive {
  position: relative;
  overflow: hidden;
  background: #f8f4eb;
  border-top: 1px solid #d9c9a8;
  border-bottom: 1px solid #d9c9a8;
}
.benefits-alive--dark {
  background: #2c2118;
  border-color: transparent;
  color: #f8f4eb;
}
.benefits-alive--dark .section-kicker {
  color: #e7da69;
}
.benefits-alive--dark .section-title {
  color: #f8f4eb;
}
.benefits-alive--dark .benefits-lead {
  color: rgba(248, 244, 235, 0.78);
}
.benefits-alive--dark .section-head-link {
  color: #e7da69;
}
.benefits-alive--dark .section-head-link:hover {
  color: #f8f4eb;
}
.benefits-alive--dark .sm-field {
  display: none;
}
.benefits-alive,
.benefits-alive * {
  box-sizing: border-box;
}
.benefits-inner {
  max-width: 1536px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .benefits-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .benefits-alive .benefit {
    padding-left: 1.55rem;
    padding-right: 1.55rem;
  }
}
.benefits-intro {
  margin-bottom: 2.5rem;
}
.section-head-with-link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0.85rem 2.25rem;
}
.section-kicker {
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 650;
  text-transform: uppercase;
  color: #C67511;
  margin: 0 0 0.55rem;
}
.section-kicker--on-dark {
  color: #e7da69;
}
.btn-founder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  background: #628339;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(44, 33, 24, 0.12);
}
.btn-founder:hover {
  background: #4f6a2e;
  color: #fff;
}
.section-head-link {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sm-green);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  margin-bottom: 0.15rem;
}
.section-head-link:hover {
  color: var(--sm-green-dark);
}
.section-head-link--lg {
  font-size: 1.08rem;
}
p .section-head-link {
  display: inline;
  margin-left: 0.35em;
  margin-bottom: 0;
  white-space: nowrap;
}
.benefits-lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #5c4a3a;
  max-width: 62ch;
}

.benefit {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease,
              border-color 0.25s ease,
              opacity 0.3s ease,
              filter 0.3s ease;
}

.benefits-root-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.benefits-root-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.95rem;
  border: 1px solid #c9b48a;
  border-radius: 999px;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c4a3a;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.benefits-root-tab:hover {
  border-color: #c67511;
  color: #2c2118;
}
.benefits-root-tab:focus-visible {
  outline: 2px solid #2c2118;
  outline-offset: 3px;
}
.benefits-root-tab[aria-pressed="true"] {
  background: #2c2118;
  border-color: #2c2118;
  color: #f8f4eb;
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  width: 100%;
  min-width: 0;
  align-items: start;
}
@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.benefits-alive .benefit {
  --benefit-accent: #c67511;
  position: relative;
  min-width: 0;
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 1.3rem 1.35rem 1.2rem;
  background: #fff;
  border: 1px solid #d9c9a8;
  border-top: 2px solid #c67511;
  box-shadow: none;
}
.benefit-fold > summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-right: 0;
}
.benefit-fold > summary h3 {
  min-height: 2.2em;
  padding-right: 2.7rem;
}
.benefit-fold > summary > p {
  min-height: 2.5em;
  padding-right: 0;
  max-width: none;
}
.benefit-body {
  cursor: pointer;
}
.benefit-fold > summary::-webkit-details-marker {
  display: none;
}
.benefit-chevron {
  position: absolute;
  top: 0.05rem;
  right: 0;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  border: 1.5px solid #d9c9a8;
  background: #fffdf8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.benefit-chevron::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.18rem;
  border-right: 2px solid #628339;
  border-bottom: 2px solid #628339;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease, margin 0.2s ease;
}
.benefit-fold:hover .benefit-chevron {
  border-color: #628339;
  background: rgba(98, 131, 57, 0.08);
}
.benefit-fold[open] .benefit-chevron {
  border-color: #628339;
  background: #628339;
}
.benefit-fold[open] .benefit-chevron::before {
  border-color: #fff;
  margin-top: 0.18rem;
  transform: rotate(225deg);
}
.benefit-fold[open] {
  border-color: #c9b48a;
  box-shadow: 0 14px 32px rgba(44, 33, 24, 0.08);
}
.benefit-body {
  padding-top: 0.95rem;
  border-top: 1px solid #eadcc0;
  margin-top: 0.95rem;
}
.benefit-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.benefit-body h4 {
  margin: 1.05rem 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c67511;
}
.benefit-body h4:first-child {
  margin-top: 0;
}
.benefit-body li {
  position: relative;
  padding: 0.62rem 0 0.62rem 1.45rem;
  border-bottom: 1px solid rgba(217, 201, 168, 0.55);
  font-size: 1rem;
  line-height: 1.45;
  color: #3f2a1d;
}
.benefit-body li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.benefit-body li::before {
  content: "";
  position: absolute;
  left: 0.18rem;
  top: 50%;
  width: 0.5rem;
  height: 0.26rem;
  border-left: 2px solid #628339;
  border-bottom: 2px solid #628339;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: center center;
}
.benefits-alive .benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 1.32rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #2c2118;
  min-width: 0;
  max-width: 100%;
}
.benefits-alive .benefit p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #5c4a3a;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  min-height: 2.5em;
}
.benefits-alive .benefit:hover {
  transform: translateY(-3px);
  border-color: #c9b48a;
  border-top-color: #c67511;
  box-shadow: 0 16px 36px rgba(44, 33, 24, 0.08);
}
.benefits-alive .benefit--stress,
.benefits-alive .benefit--sleep { border-top-color: #628339; }
.benefits-alive .benefit--pain { border-top-color: #b85a2a; }
.benefits-alive .benefit--cultivation,
.benefits-alive .benefit--potential { border-top-color: #c9b227; }
.benefits-alive .benefit--trauma { border-top-color: #c67511; }
.benefits-alive.is-filtered .benefit.is-dim {
  opacity: 0.42;
  filter: saturate(0.7);
  transform: none;
}
.benefits-alive.is-filtered .benefit.is-lit {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(44, 33, 24, 0.08);
}

/* FAQ Accordion - homepage only (aria-controls + .open).
   Scoped so the full FAQ page (class-based .hidden toggle) is not collapsed. */
.faq-question {
  cursor: pointer;
  user-select: none;
}
.faq-question[aria-controls] {
  display: flex;
  align-items: center;
  min-height: 4.5rem;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
  line-height: 1.35;
}
.faq-question svg {
  transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.faq-answer[id] {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0.0, 0.2, 1),
              opacity 0.25s ease,
              padding 0.25s ease;
  opacity: 0;
}
.faq-answer[id].open {
  max-height: 48rem;
  padding-bottom: 1.5rem;
  opacity: 1;
}

/* Video modal ultra clean */
#video-modal {
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Stats */
.stat {
  font-variant-numeric: tabular-nums;
}

/* Homepage proof CTAs — same pill buttons as the rest of the page */
.sm-proof-cta-wrap .btn {
  white-space: normal;
  text-align: center;
  max-width: 100%;
  gap: 0;
}

/* Wins proof CTA — next to testimonials / social proof */
.sm-wins-proof-cta {
  margin: 1.35rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--sm-earth);
  letter-spacing: -0.01em;
}
.sm-wins-proof-cta a {
  color: var(--sm-green);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: color 0.15s ease;
}
.sm-wins-proof-cta a:hover {
  color: var(--sm-green-dark);
}
.sm-wins-proof-cta--hero {
  margin-top: 3rem;
}
.sm-wins-proof-cta--section {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.15rem;
}

/* Offerings cards */
.offering {
  transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.offering:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.08);
}

/* Footer */
footer a {
  transition: color 0.15s ease;
}
footer a:hover {
  color: var(--sm-green);
}

/* Small utility */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sm-border), transparent);
}

/* Responsive type scaling for hero etc. */
.hero-headline {
  font-size: clamp(2.6rem, 8vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

/* Professional subtle patterns / accents */
.gold-accent {
  color: var(--sm-gold);
}

/* Make sure Tailwind doesn't fight our custom */
.prose {
  max-width: 68ch;
}

/* Sacred-geometry / cosmos / nature field overlays */
.sm-field-host {
  position: relative;
  overflow: hidden;
}
.sm-field-host--open {
  overflow: visible;
}
.sm-field {
  position: absolute;
  inset: -12% -8%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.sm-field--soft { opacity: 0.24; }
.sm-field--mist { opacity: 0.32; }
.sm-field--deep { opacity: 0.48; }
.sm-field img,
.sm-field video,
.media-loop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.media-loop {
  background: #1a1410;
}
@media (prefers-reduced-motion: reduce) {
  .sm-field video,
  .media-loop {
    display: none;
  }
}

/* Site-wide: quiet, cinematic entrance — never flashy */
@media (prefers-reduced-motion: no-preference) {
  .sm-reveal {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0);
    transition:
      opacity 1.4s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 1.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--sm-reveal-delay, 0ms);
  }
  .sm-reveal--left {
    transform: translate3d(-1.3rem, 0.1rem, 0);
  }
  .sm-reveal--right {
    transform: translate3d(1.3rem, 0.1rem, 0);
  }
  .sm-reveal--fade {
    transform: translate3d(0, 0.7rem, 0);
    transition-duration: 1.6s, 1.75s;
  }
  .sm-reveal--soft {
    transform: translate3d(0, 0.65rem, 0) scale(0.988);
    transition-duration: 1.65s, 1.85s;
  }
  .sm-reveal.is-in {
    opacity: 1;
    transform: none;
  }
  .sm-reveal-img {
    opacity: 0;
    transform: translate3d(0, 1.05rem, 0) scale(1.03);
    transform-origin: center center;
    transition:
      opacity 1.55s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 1.75s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--sm-reveal-delay, 0ms);
  }
  .sm-reveal-img.is-in {
    opacity: 1;
    transform: none;
  }
  .blog-article .sm-reveal {
    transition-duration: 1.75s, 1.95s;
  }
  .blog-article .sm-reveal--fade,
  .blog-article .sm-reveal--soft {
    transition-duration: 1.9s, 2.15s;
  }
  .blog-article .sm-reveal-img {
    transition-duration: 1.9s, 2.15s;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .sm-reveal,
  .sm-reveal-img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.sm-field-host > *:not(.sm-field) {
  position: relative;
  z-index: 1;
}

/* Homepage — professional polish */
.hero-lead {
  max-width: 38ch;
  margin: 0 0 2.15rem;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-actions .btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.hero-actions .btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 2.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.hero-meta-rule {
  width: 1px;
  height: 0.7rem;
  background: rgba(255, 255, 255, 0.28);
}
.home-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid #d9c9a8;
}
@media (min-width: 800px) {
  .home-trust {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home-trust-item {
  padding: 1.35rem 1.5rem 1.25rem;
  text-align: center;
  border-right: 1px solid #eadcc0;
}
.home-trust-item:nth-child(2n) {
  border-right: 1px solid #eadcc0;
}
.home-trust-item:last-child {
  border-right: none;
}
@media (max-width: 799px) {
  .home-trust-item:nth-child(2) {
    border-right: none;
  }
  .home-trust-item:nth-child(1),
  .home-trust-item:nth-child(2) {
    border-bottom: 1px solid #eadcc0;
  }
}
.home-trust-num {
  display: block;
  font-family: "Californian FB", "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #2c2118;
  line-height: 1.1;
}
.home-trust-label {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7a68;
}
.home-caption {
  margin: 0.7rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #5c4a3a;
}
.home-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.home-step {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.05rem;
  background: rgba(248, 244, 235, 0.08);
  border: 1px solid rgba(248, 244, 235, 0.14);
  border-radius: 0.95rem;
}
.home-step-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #e7da69;
  padding-top: 0.15rem;
}
.home-step strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
  color: #fff;
}
.home-step p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(248, 244, 235, 0.72);
}
.home-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}
.home-creds li {
  padding: 0.32rem 0.7rem;
  border: 1px solid #d9c9a8;
  border-radius: 999px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 650;
  color: #3a2d22;
}
.teachers-head-row {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-bottom: 2.25rem;
}
@media (min-width: 960px) {
  .teachers-head-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
.home-iict {
  margin: 2rem auto 0;
  max-width: 36rem;
  padding: 1.5rem 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid #d9c9a8;
  border-radius: 1.25rem;
  box-shadow: 0 12px 28px rgba(44, 33, 24, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.home-iict--inline {
  margin: 0;
  max-width: 26rem;
  padding: 1rem 1.1rem 0.95rem;
  width: 100%;
}
@media (min-width: 960px) {
  .home-iict--inline {
    width: 26rem;
  }
}
.home-iict img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.home-iict-seal {
  max-width: 26rem;
}
.home-iict--inline .home-iict-seal {
  max-width: none;
}
.home-iict-list {
  max-width: 24rem;
}
.home-iict--teachers {
  margin: 1.75rem auto 1.5rem;
}
.begin-offer-card {
  position: relative;
  padding-top: 1.85rem;
}
.begin-offer-num {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c67511;
}
.begin-offer .section-kicker {
  font-size: 1.08rem;
}
.begin-offer-card p strong {
  color: #2c2118;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #e7da69;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

/* What is Shaking Medicine — editorial */
.what-is-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}
@media (min-width: 980px) {
  .what-is-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
    gap: 4.5rem;
  }
}
.what-is-copy .section-title {
  margin: 0 0 1rem;
}
.what-is-rule {
  width: 3.4rem;
  height: 2px;
  background: #c67511;
  margin: 0 0 1.55rem;
}
.what-is-prose {
  max-width: 62ch;
}
.what-is-prose p {
  font-size: 1.08rem;
  line-height: 1.78;
  color: #3f2a1d;
  margin: 0 0 1.15rem;
}
.what-is-prose p:last-child {
  margin-bottom: 0;
}
.what-is-quote {
  margin: 1.7rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid #d9c9a8;
  font-family: "Californian FB", "Playfair Display", Georgia, serif;
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  font-style: italic;
  line-height: 1.4;
  color: #2c2118;
  max-width: 34ch;
}
.what-is-visual {
  margin: 0;
}
.what-is-frame {
  position: relative;
  width: min(100%, 26.5rem);
  margin-left: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #2c2118;
}
.what-is-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.what-is-frame--mid img {
  object-position: center 42%;
}
@media (max-width: 979px) {
  .what-is-frame {
    width: min(100%, 22rem);
    margin-inline: auto;
  }
}

/* Homepage teacher scroller */
.tt-teacher-card {
  flex: 0 0 13.5rem;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #d9c9a8;
  border-radius: 1.05rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(44, 33, 24, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tt-teacher-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(44, 33, 24, 0.1);
}
.tt-teacher-card img {
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.tt-teacher-card-body {
  padding: 0.75rem 0.8rem 0.9rem;
}
.tt-teacher-card-body strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: -0.015em;
  color: #2c2118;
}
.tt-teacher-card-body span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #5c4a3a;
}
.tt-teacher-card--more {
  flex: 0 0 13.5rem;
  display: flex;
  align-items: stretch;
  background: #2c2118;
  border-color: #2c2118;
  min-height: 16.6rem;
}
.tt-teacher-card--more .tt-teacher-card-more-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.05rem;
  text-align: center;
  width: 100%;
}
.tt-teacher-card--more strong {
  color: #e7da69;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.tt-teacher-card--more span {
  color: rgba(248, 244, 235, 0.82);
  margin-top: 0.45rem;
}
.tt-teacher-card--more:hover {
  background: #3d3024;
  border-color: #3d3024;
}
@media (max-width: 767px) {
  .tt-teacher-card,
  .tt-teacher-card--more {
    flex: 0 0 80%;
    max-width: 16.5rem;
    scroll-snap-align: center;
  }
}
.home-iict--compact {
  margin-top: 2rem;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  padding: 1rem 1.25rem;
}
.home-iict--compact .home-iict-seal {
  max-width: 11.5rem;
}
.home-iict--compact .home-iict-list {
  max-width: 16rem;
}
