/* =============================================================
   Vyra — internal pages stylesheet
   Self-contained. Does NOT depend on html/css/style.css or bootstrap.
   Loaded by: about.html, services.html, services-online-yoga.html

   Patterns borrowed from design2 (magazine) and design3 (boutique):
     - cover-style hero with image + overlay  (design2)
     - founder split (portrait left / copy right)  (design2)
     - 3-up / 4-up card grids with magic-card spotlight  (design3 bento)
     - olive band with glassmorphism over yoga photo  (design2 vyra-section--olive)
     - centred minimal footer  (design2)
     - fixed sidebar botanical drift  (design3 flora)

   Order: tokens → reset → base → nav → flora → components → sections → footer → motion
   ============================================================= */

/* -------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------- */
:root {
  /* Logo palette */
  --orange:        #E94E1B;     /* vermillion */
  --orange-deep:   #C8401A;
  --orange-soft:   #FBE2D4;
  --green:         #1A8240;     /* vivid pine */
  --green-deep:    #146632;
  --green-soft:    #DCEBE0;

  /* Surfaces & ink */
  --cream:         #FAF6EE;
  --cream-soft:   #F1E9D8;
  --paper:        #FFFFFF;
  --ink:           #2A2620;
  --ink-muted:     #5C4632;
  --ink-soft:      #7A6655;
  --line:          #E8DFCA;
  --line-strong:   #D6CBB0;

  /* Type */
  --f-display: "Marcellus", Georgia, "Times New Roman", serif;
  --f-body:    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-script:  "Alex Brush", "Cormorant Garamond", cursive;
  --f-ui:      system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Sizes */
  --body-font-size: 18px;
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-hero: clamp(2.5rem, 6vw, 4.5rem);
  --fs-h2:   clamp(2rem, 4.4vw, 3.25rem);
  --fs-h3:   clamp(1.25rem, 2vw, 1.5rem);

  --lh-tight:  1.08;
  --lh-snug:   1.3;
  --lh-normal: 1.6;
  --lh-loose:  1.8;

  /* Spacing */
  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-96: 96px;

  /* Section rhythm — capped at 50px max */
  --section-y: clamp(32px, 4vw, 50px);
  --section-y-lg: clamp(40px, 5vw, 50px);

  --container-pad: clamp(20px, 3.5vw, 40px);
  --container-max: 1240px;
  --column-narrow: 720px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-base: 360ms;

  /* Shadow */
  --shadow-card: 0 4px 24px -16px rgba(42, 38, 32, 0.18);
  --shadow-hover: 0 14px 36px -20px rgba(42, 38, 32, 0.24);

  /* Nav */
  --nav-h: 80px;
}

/* -------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
input, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }

/* -------------------------------------------------------------
   3. BASE
   ------------------------------------------------------------- */
html, body { background: var(--cream); }
body {
  font-family: var(--f-body);
  font-size: var(--body-font-size);
  line-height: var(--lh-normal);
  color: var(--ink-muted);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  line-height: var(--lh-tight);
  letter-spacing: -0.005em;
  font-weight: 400;
}
p { line-height: var(--lh-loose); }

::selection { background: var(--orange); color: #fff; }

.skip-link {
  position: absolute; left: var(--sp-16); top: var(--sp-16);
  background: var(--orange); color: #fff;
  padding: var(--sp-12) var(--sp-16);
  border-radius: var(--r-sm);
  font-weight: 500;
  transform: translateY(-200%);
  transition: transform var(--dur-base) var(--ease);
  z-index: 10000;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.column-narrow { max-width: var(--column-narrow); margin-inline: auto; }

/* Tiny script eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--f-script);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--orange);
  line-height: 1;
}

/* -------------------------------------------------------------
   4. NAV — fixed GLASS header (frosted, translucent cream)
   ------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 246, 238, 0.62);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(94, 70, 50, 0.08);
  box-shadow: 0 2px 24px -18px rgba(42, 38, 32, 0.20);
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-24);
}
.nav-logo img { height: 52px; width: auto; display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
}
.nav-menu a {
  font-family: var(--f-ui);
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.nav-menu a:hover,
.nav-menu a[aria-current="page"] { color: var(--orange); }
.nav-menu a[aria-current="page"]::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--orange);
}

/* Services dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "▾";
  font-size: 10px;
  margin-left: 6px;
  color: var(--green);
  transition: transform var(--dur-fast) var(--ease);
}
.has-dropdown .dropdown {
  position: absolute;
  top: 100%; left: -16px;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur-base) var(--ease), visibility 0s linear var(--dur-base), transform var(--dur-base) var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition-delay: 0s;
}
.has-dropdown .dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: var(--r-sm);
}
.has-dropdown .dropdown a:hover { background: var(--cream-soft); color: var(--orange); }
.has-dropdown:hover > a::after { transform: rotate(180deg); }

.nav-cta { display: inline-flex; align-items: center; gap: var(--sp-16); }
.nav-socials {
  display: inline-flex; gap: 8px;
}
.nav-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav-socials a:hover { color: #fff; background: var(--orange); border-color: var(--orange); }
.nav-socials svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--ink); }

.mobile-panel {
  position: fixed; inset: 0;
  background: var(--cream);
  padding: var(--sp-96) var(--container-pad) var(--sp-48);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--dur-base) var(--ease);
  overflow-y: auto;
}
.mobile-panel.open { transform: translateY(0); }
.mobile-panel ul { display: flex; flex-direction: column; gap: var(--sp-16); }
.mobile-panel a {
  font-family: var(--f-display);
  font-size: var(--fs-32);
  color: var(--ink);
}
.mobile-panel-close {
  position: absolute; top: var(--sp-16); right: var(--container-pad);
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}

@media (max-width: 1023px) {
  .nav-menu, .nav-socials { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* -------------------------------------------------------------
   5. CTA BUTTONS
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  min-height: 48px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
  box-shadow: 0 4px 18px -8px rgba(233, 78, 27, 0.45);
}
.btn-primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  box-shadow: 0 8px 26px -10px rgba(233, 78, 27, 0.55);
}

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

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-ui);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--orange);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease);
}
.btn-link:hover { color: var(--orange-deep); border-bottom-color: var(--orange-deep); gap: 14px; }

/* -------------------------------------------------------------
   6. DECORATIVE SHAPES — template scoping pattern
      Pattern (from html/css/style.css):
        <section class="banner-section-eight">
          <div class="shape-image-leaf bounce-y"></div>
        </section>
      CSS: .banner-section-eight .shape-image-leaf { bg-image, position, dims }

      Each section owns its decoration slots via SCOPED selectors.
      No universal .flora / .deco that floats on every page.
   ------------------------------------------------------------- */

/* Base shape class — only sets the absolute mechanics; per-section CSS sets
   the image, dimensions, and exact position. */
.shape {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
  opacity: 0.55;
}

/* Bounce / orbit animations (matching template's html/css/style.css) */
@keyframes bounce-y {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-30px); }
  100% { transform: translateY(0); }
}
@keyframes bounce-x {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(30px); }
  100% { transform: translateX(0); }
}
@keyframes bounce-z {
  0%   { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
@keyframes orbit {
  0%   { transform: translate(0, 0)         rotate(0deg); }
  25%  { transform: translate(18px, -16px)  rotate(3deg); }
  50%  { transform: translate(0, -32px)     rotate(0deg); }
  75%  { transform: translate(-18px, -16px) rotate(-3deg); }
  100% { transform: translate(0, 0)         rotate(0deg); }
}
.bounce-y { animation: bounce-y 10s linear infinite; }
.bounce-x { animation: bounce-x 10s linear infinite; }
.bounce-z { animation: bounce-z 70s linear infinite; }
.orbit    { animation: orbit 14s ease-in-out infinite; }

/* -------------- PER-SECTION SCOPED DECORATIONS --------------
   Two patterns:
     - Edge anchors (.shape-1, .shape-2)  →  flush to left/right edge of section.
       Use background-position: left/right center so the artwork hugs the edge
       (no transparent gap from background-size: contain centering).
     - Floating accents (.shape-3, .shape-4)  →  small, away from edges.

   All shapes can carry bounce/orbit animation classes (per HTML).
   For edge-stuck shapes prefer bounce-y so they don't drift off the edge.
   ------------------------------------------------------------- */

.shape.is-left  { background-position: left center; }
.shape.is-right { background-position: right center; }

/* Cover (page banner) — corner-anchored so they don't bleed into the centered title.
   shape-1 top-left, shape-2 bottom-right, shape-3 bottom-left accent, shape-4 top-right accent. */
.cover .shape-1 {
  left: 0; top: 0;
  width: 200px; height: 200px;
  background-image: url(../images/resource/flower-frame1.png);
  background-position: left top;
  opacity: 0.55;
}
.cover .shape-2 {
  right: 0; bottom: 0;
  width: 200px; height: 200px;
  background-image: url(../images/resource/about13-4.png);
  background-position: right bottom;
  opacity: 0.55;
}
.cover .shape-3 {
  left: 0; bottom: 0;
  width: 90px; height: 90px;
  background-image: url(../images/resource/about13-5.png);
  background-position: left bottom;
  opacity: 0.45;
}
.cover .shape-4 {
  right: 0; top: 0;
  width: 100px; height: 100px;
  background-image: url(../images/resource/flower3.png);
  background-position: right top;
  opacity: 0.5;
}

/* What-it-means — ginkgo leaves hugging edges */
.what-means .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 260px;
  background-image: url(../images/resource/about10-5.png);
  background-position: left center;
  opacity: 0.7;
}
.what-means .shape-2 {
  right: 0; bottom: 8%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about11-3.png);
  background-position: right center;
  opacity: 0.7;
}

/* Founder — sprigs hugging edges (fixes the gap from screenshot) */
.founder-spread .shape-1 {
  right: 0; top: 8%;
  width: 240px; height: 260px;
  background-image: url(../images/resource/about9-4.png);
  background-position: right center;
  opacity: 0.65;
}
.founder-spread .shape-2 {
  left: 0; bottom: 6%;
  width: 240px; height: 260px;
  background-image: url(../images/resource/about8-5.png);
  background-position: left center;
  opacity: 0.65;
}

/* Three practices — service ginkgo branches */
.practices .shape-1 {
  left: 0; top: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/service-leaf1-1.png);
  background-position: left top;
  opacity: 0.55;
}
.practices .shape-2 {
  right: 0; bottom: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/service-leaf1-2.png);
  background-position: right bottom;
  opacity: 0.55;
}
.practices .shape-3 { display: none; }

/* What-we-believe (olive band) — white-tinted shapes against green */
.believe .shape-1 {
  left: 0; top: 10%;
  width: 240px; height: 260px;
  background-image: url(../images/resource/instagram1-shape1.png);
  background-position: left center;
  opacity: 0.4;
}
.believe .shape-2 {
  right: 0; bottom: 10%;
  width: 260px; height: 280px;
  background-image: url(../images/resource/instagram1-shape2.png);
  background-position: right center;
  opacity: 0.4;
}

/* CTA strip — edge anchors (corner-positioned so animations don't fight centering) */
.cta-strip .shape-1 {
  left: 0; top: 10%;
  width: 200px; height: 200px;
  background-image: url(../images/resource/about13-3.png);
  background-position: left center;
  opacity: 0.6;
}
.cta-strip .shape-2 {
  right: 0; bottom: 10%;
  width: 200px; height: 200px;
  background-image: url(../images/resource/flower4.png);
  background-position: right center;
  opacity: 0.6;
}

/* -------------- SERVICES.HTML SECTIONS -------------- */
.services-intro .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about10-4.png);
  background-position: left center;
  opacity: 0.65;
}
.services-intro .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about9-3.png);
  background-position: right center;
  opacity: 0.65;
}

/* Grid sections — shapes only at TOP and BOTTOM corners so cards in the middle aren't crowded */
.services-grid .shape-1 {
  left: 0; top: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/service-leaf3-1.png);
  background-position: left top;
  opacity: 0.5;
}
.services-grid .shape-2 {
  right: 0; bottom: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/service-leaf3-2.png);
  background-position: right bottom;
  opacity: 0.5;
}
.services-grid .shape-3 { display: none; }

.services-chooser .shape-1 {
  left: 0; bottom: 8%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about8-6.png);
  background-position: left center;
  opacity: 0.65;
}
.services-chooser .shape-2 {
  right: 0; top: 8%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/flower4.png);
  background-position: right center;
  opacity: 0.65;
}

/* -------------- SERVICES-ONLINE-YOGA.HTML SECTIONS -------------- */
.online-overview .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about2-7.png);
  background-position: left center;
  opacity: 0.65;
}
.online-overview .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about2-8.png);
  background-position: right center;
  opacity: 0.65;
}

.online-benefits .shape-1 {
  left: 0; top: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/about13-4.png);
  background-position: left top;
  opacity: 0.5;
}
.online-benefits .shape-2 {
  right: 0; bottom: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/about13-5.png);
  background-position: right bottom;
  opacity: 0.5;
}

.online-who .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about11-3.png);
  background-position: left center;
  opacity: 0.65;
}
.online-who .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about10-5.png);
  background-position: right center;
  opacity: 0.65;
}

.online-steps .shape-1 {
  left: 0; bottom: 6%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about12-3.png);
  background-position: left center;
  opacity: 0.65;
}
.online-steps .shape-2 {
  right: 0; top: 6%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about9-4.png);
  background-position: right center;
  opacity: 0.65;
}

.online-setup .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about1-6.png);
  background-position: left center;
  opacity: 0.65;
}
.online-setup .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about1-9.png);
  background-position: right center;
  opacity: 0.65;
}

.online-faqs .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about8-5.png);
  background-position: left center;
  opacity: 0.65;
}
.online-faqs .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about8-3.png);
  background-position: right center;
  opacity: 0.65;
}

/* -------------- BG-DECORATED SECTION (uses bg-contact5.png) -------------- */
.section--bg-flora {
  background-image: url(../images/background/bg-contact5.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-soft);
}

@media (max-width: 767px) {
  .shape { display: none !important; }
}

/* -------------------------------------------------------------
   7. PAGE COVER (breadcrumb / banner) — GLASS ORANGE on yoga photo
   ------------------------------------------------------------- */
.cover {
  position: relative;
  min-height: clamp(320px, 48vh, 480px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: var(--section-y) 0;
}
.cover .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Vermillion frosted-glass plate over the image */
.cover::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(233, 78, 27, 0.42);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1;
}
.cover::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(200, 64, 26, 0.45) 100%);
  z-index: 1;
}
.cover .container { position: relative; z-index: 2; color: #fff; text-align: center; }
.cover .eyebrow { color: #fff; margin-bottom: 12px; font-size: clamp(26px, 3vw, 36px); }
.cover h1 {
  font-size: var(--fs-hero);
  color: #fff;
  max-width: 22ch;
  margin: 0 auto;
}
.cover .sub {
  margin: var(--sp-16) auto 0;
  max-width: 56ch;
  font-size: var(--fs-18);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.55;
}
/* Decorative leaves inside the cover */
.cover .deco { z-index: 1; opacity: 0.4; }

/* -------------------------------------------------------------
   8. SECTION + TITLE BLOCKS
   ------------------------------------------------------------- */
.section {
  position: relative;
  padding: var(--section-y) 0;
}
.section--soft { background: var(--cream-soft); }
.section--paper { background: var(--cream); }
.section--lg { padding: var(--section-y-lg) 0; }

.title-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 48px);
}
.title-block h2 {
  font-size: var(--fs-h2);
  color: var(--ink);
  margin-top: 8px;
  max-width: 24ch;
  margin-inline: auto;
}
.title-block p {
  margin-top: var(--sp-16);
  color: var(--ink-muted);
  font-size: var(--fs-18);
  line-height: var(--lh-loose);
}
.title-block.is-left { text-align: left; margin-inline: 0; }
.title-block.is-left h2,
.title-block.is-left p { margin-inline: 0; }

/* Section background decorations (inline absolute, like design3) */
.section-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
@media (max-width: 767px) { .section-deco { display: none; } }

/* -------------------------------------------------------------
   9. EDITORIAL NARROW COLUMN (design2 opening pattern)
   ------------------------------------------------------------- */
.narrow {
  max-width: var(--column-narrow);
  margin-inline: auto;
}
.narrow p {
  font-family: var(--f-body);
  font-size: var(--fs-18);
  color: var(--ink-muted);
  line-height: var(--lh-loose);
}
.narrow p + p { margin-top: var(--sp-16); }

.pullquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: var(--lh-snug);
  color: var(--green-deep);
  text-align: center;
  max-width: 28ch;
  margin: clamp(32px, 5vw, 56px) auto;
}
.pullquote cite {
  display: block;
  font-family: var(--f-script);
  font-style: normal;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--orange);
  margin-top: 12px;
}

/* -------------------------------------------------------------
  10. FOUNDER SPREAD (design2 founder-grid)
   ------------------------------------------------------------- */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.founder-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy h2 { font-size: var(--fs-h2); margin: 8px 0 var(--sp-24); }
.founder-copy p + p { margin-top: var(--sp-16); }
.founder-copy .signature {
  display: block;
  margin-top: var(--sp-32);
  font-family: var(--f-script);
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--orange);
  line-height: 1;
}
.founder-copy .btn-link { margin-top: var(--sp-24); }
@media (max-width: 767px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 420px; margin-inline: auto; }
}

/* -------------------------------------------------------------
  11. CARD GRIDS (services / benefits / pillars / steps)
   ------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: var(--sp-24);
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .card-grid--4, .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; }
}

/* Card — cream paper with subtle leaf backdrop, eyebrow → title → rule → copy → icon → arrow */
.card {
  position: relative;
  background: #FAF6EE;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 4px 24px -16px rgba(42, 38, 32, 0.16);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url(../images/background/bg-contact5.png);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
/* Sitewide green hover — same flip used on .package-block-four pillars */
.card:hover {
  background: var(--green-deep);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -20px rgba(26, 130, 64, 0.45);
}
.card:hover::before { opacity: 0.10; filter: brightness(0) invert(1); }
.card:hover .eyebrow,
.card:hover h3,
.card:hover p { color: #fff; }
.card:hover hr,
.card:hover .rule { background: rgba(255, 255, 255, 0.35); }
.card:hover .icon { filter: brightness(0) invert(1); opacity: 0.95; }
.card:hover .arrow { background: var(--orange); color: #fff; transform: translate(2px, -2px); }
.card > * { position: relative; z-index: 1; }

.card .eyebrow {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-muted);
  margin-bottom: 10px;
  line-height: 1;
}
.card h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 36px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 14ch;
}
.card hr,
.card .rule {
  height: 1px;
  width: 100%;
  background: var(--line-strong);
  border: 0;
  margin: 0 0 22px;
  opacity: 0.7;
}
.card p {
  font-family: var(--f-body);
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}
.card .icon {
  width: 88px; height: 88px;
  margin-top: auto;
  object-fit: contain;
  opacity: 0.85;
}
.card .arrow {
  position: absolute;
  right: 28px; bottom: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px -8px rgba(42, 38, 32, 0.28);
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  z-index: 2;
}
.card .arrow:hover { background: var(--orange); color: #fff; transform: translate(2px, -2px); }
.card .arrow svg { width: 22px; height: 22px; }

/* Featured variant — keeps the same structure on a deep-green plate */
.card.is-featured { background: var(--green-deep); }
.card.is-featured::before { opacity: 0.10; filter: brightness(0) invert(1); }
.card.is-featured .eyebrow { color: rgba(255, 255, 255, 0.7); }
.card.is-featured h3 { color: #fff; }
.card.is-featured .rule, .card.is-featured hr { background: rgba(255, 255, 255, 0.35); }
.card.is-featured p { color: rgba(255, 255, 255, 0.88); }
.card.is-featured .icon { filter: brightness(0) invert(1); opacity: 0.95; }
.card.is-featured .arrow { background: var(--orange); color: #fff; box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.5); }
.card.is-featured .arrow:hover { background: #fff; color: var(--orange); }

/* See-all link for home-page preview */
.card-grid + .see-all-row {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-48);
}

/* -------------------------------------------------------------
   .service-block13 — template card design, self-contained
   Used on services.html (no template style.css loaded there)
   ------------------------------------------------------------- */
.service-block13 { width: 100%; display: flex; height: 100%; }
.service-block13 .inner-box {
  position: relative;
  transition: all 300ms ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.service-block13 .inner-box .content-box {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 50px 50px 40px 40px;
  position: relative;
  z-index: 1;
  -webkit-mask-image: url(../images/resource/bg-mask1.png);
          mask-image: url(../images/resource/bg-mask1.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: background 300ms ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-block13 .inner-box .content-box .service-content { flex: 1; }
@media (max-width: 1349px) {
  .service-block13 .inner-box .content-box { padding: 50px 25px 40px 25px; }
}
@media (max-width: 1199px) {
  .service-block13 .inner-box .content-box {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.service-block13 .inner-box .content-box .shape1 {
  position: absolute;
  left: 0; top: 0;
}
.service-block13 .inner-box .content-box .shape2 {
  position: absolute;
  right: 85px; bottom: 0;
}
@media (max-width: 1199px) {
  .service-block13 .inner-box .content-box .shape2 { right: 0; }
}

.service-block13 .inner-box .service-content .subtitle {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 4px;
  transition: color 300ms ease;
}
.service-block13 .inner-box .service-content .title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 30px);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 400;
  border-bottom: 1px solid rgba(42, 38, 32, 0.1);
  padding-bottom: 20px;
  margin-bottom: 19px;
  transition: color 300ms ease, border-color 300ms ease;
}
.service-block13 .inner-box .service-content .text {
  font-family: var(--f-body);
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 40px;
  transition: color 300ms ease;
}

.service-block13 .inner-box .thumb-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.service-block13 .inner-box .thumb-icon .bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
  transition: opacity 300ms ease;
}
.service-block13 .inner-box .thumb-icon .img-icon {
  position: absolute;
  top: 52%;
  left: 43%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: block;
  width: 62px;
  height: 62px;
  margin: 0;
  object-fit: contain;
  /* Tint the dark SVGs to vermillion orange (#E94E1B) to match the brand. */
  filter: brightness(0) saturate(100%) invert(34%) sepia(79%) saturate(1959%) hue-rotate(354deg) brightness(96%) contrast(91%);
  transition: transform 300ms ease, filter 300ms ease;
}
/* Make sure the flower bg is centered on the same point as the icon */
.service-block13 .inner-box .thumb-icon {
  position: relative;
}
.service-block13 .inner-box .thumb-icon .bg {
  position: absolute;
  inset: 0;
  background-position: center center !important;
  background-size: contain;
}
.service-block13 .inner-box .service-btn {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 9;
}
@media (max-width: 1279px) {
  .service-block13 .inner-box .service-btn { bottom: 20px; }
}
@media (max-width: 1199px) {
  .service-block13 .inner-box .service-btn { right: 15px; bottom: 15px; }
}
.service-block13 .inner-box .service-btn a.btn {
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 62px; width: 62px;
  padding: 0;
  min-height: 0;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 6px 18px -8px rgba(42, 38, 32, 0.28);
  transition: transform 300ms ease, background 300ms ease;
}
@media (max-width: 1199px) {
  .service-block13 .inner-box .service-btn a.btn { background: var(--cream-soft); }
}
.service-block13 .inner-box .service-btn a.btn svg,
.service-block13 .inner-box .service-btn a.btn i {
  color: var(--orange);
  width: 22px; height: 22px;
  transform: rotate(-45deg);
  transition: transform 300ms ease;
}

/* Hover: card flips to deep green, text turns white, icon inverts */
.service-block13 .inner-box:hover .content-box { background-color: var(--green-deep); }
.service-block13 .inner-box:hover .service-content .subtitle,
.service-block13 .inner-box:hover .service-content .text { color: rgba(255, 255, 255, 0.88); }
.service-block13 .inner-box:hover .service-content .title {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.service-block13 .inner-box:hover .thumb-icon .bg { opacity: 0.10; }
.service-block13 .inner-box:hover .thumb-icon .img-icon {
  /* Reset to white on hover (card flips to deep green) */
  filter: brightness(0) invert(1) !important;
}
.service-block13 .inner-box:hover .service-btn a.btn { transform: rotate(45deg); }

/* Grid wrapper used inside services.html — equal-height cards via stretch */
.service-grid13 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
  align-items: stretch;
}
.service-grid13 > .service-block13 { height: 100%; }
@media (max-width: 1199px) { .service-grid13 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .service-grid13 { grid-template-columns: 1fr; max-width: 461px; margin: 0 auto; } }

/* -------------------------------------------------------------
  12. OLIVE BAND (CTA-like, glassmorphism over yoga image)
   ------------------------------------------------------------- */
.olive-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  padding: clamp(64px, 9vw, 112px) 0;
  background-image: url(../images/resource/about12-1.jpg);
  background-size: cover;
  background-position: center;
}
.olive-band::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(20, 102, 50, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  z-index: 0;
}
.olive-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(15, 80, 38, 0.45) 100%);
  z-index: 0;
}
.olive-band .container { position: relative; z-index: 2; }
.olive-band .eyebrow { color: var(--orange-soft); }
.olive-band h2 { color: #fff; }
.olive-band p { color: rgba(255, 255, 255, 0.92); }
.olive-band .pullquote { color: #fff; max-width: 32ch; }
.olive-band .pullquote cite { color: var(--orange-soft); }
.olive-band .btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 8px 28px -10px rgba(0, 0, 0, 0.45);
}
.olive-band .btn-primary:hover { background: #fff; color: var(--green-deep); border-color: #fff; }

/* -------------------------------------------------------------
  13. ✦-MARKED LIST (Who-it's-for / What you need)
   ------------------------------------------------------------- */
.starred-list {
  max-width: var(--column-narrow);
  margin: 0 auto;
}
.starred-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-16);
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  color: var(--ink-muted);
}
.starred-list li:last-child { border-bottom: 0; }
.starred-list .mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 18px;
  margin-top: 2px;
}

/* -------------------------------------------------------------
  14. FAQ ACCORDION (design2 faq-card pattern)
   ------------------------------------------------------------- */
.faqs {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faqs details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.faqs details[open] {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.faqs summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  padding: 18px var(--sp-24);
  font-family: var(--f-display);
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--ink);
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs details[open] summary { color: #fff; }
.faqs .toggle {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--green-deep);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faqs details[open] .toggle { background: #fff; color: var(--green-deep); }
.faqs .toggle svg { width: 14px; height: 14px; }
.faqs .body {
  padding: 0 var(--sp-24) var(--sp-24);
}
.faqs .body p {
  font-size: 16px;
  line-height: var(--lh-loose);
  color: var(--ink-muted);
  margin: 0;
}
.faqs details[open] .body p { color: rgba(255, 255, 255, 0.92); }

/* -------------------------------------------------------------
  15. STEP CARDS (3 numbered cards for "How it works")
   ------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
}
@media (max-width: 991px) { .steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-32);
  box-shadow: var(--shadow-card);
}
.step .num {
  font-family: var(--f-script);
  color: var(--orange);
  font-size: 36px;
  line-height: 1;
  margin-bottom: var(--sp-16);
}
.step h4 {
  font-family: var(--f-display);
  font-size: var(--fs-h3);
  color: var(--ink);
  margin: 0 0 10px;
}
.step p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: var(--lh-loose);
  margin: 0;
}

/* -------------------------------------------------------------
  16. CTA STRIP (cream, centred)
   ------------------------------------------------------------- */
.cta-strip {
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 0;
  background: var(--cream-soft);
}
.section--paper { background: var(--cream); }
.cta-strip h2 {
  font-size: var(--fs-h2);
  color: var(--ink);
  margin-bottom: var(--sp-16);
  max-width: 22ch;
  margin-inline: auto;
}
.cta-strip p {
  color: var(--ink-muted);
  font-size: var(--fs-18);
  max-width: 52ch;
  margin: 0 auto var(--sp-32);
  line-height: var(--lh-loose);
}

/* -------------------------------------------------------------
  17. CHOOSER (form panel for services page)
   ------------------------------------------------------------- */
.chooser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
@media (max-width: 767px) { .chooser { grid-template-columns: 1fr; } }
.chooser-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chooser-form input,
.chooser-form textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
}
.chooser-form input:focus,
.chooser-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.chooser-form textarea { min-height: 110px; resize: vertical; }

/* Visible placeholders — without this the inherited color is too pale to read. */
.chooser-form input::placeholder,
.chooser-form textarea::placeholder {
  color: rgba(94, 70, 50, 0.55);
  opacity: 1;
}

/* intl-tel-input fit — fill the form row, push input text past the country pill */
.chooser-form .iti { width: 100%; display: block; }
.chooser-form .iti--separate-dial-code .iti__tel-input,
.chooser-form input.iti__tel-input { padding-left: 96px !important; }
.chooser-form .phone-row {
  display: grid;
  grid-template-columns: minmax(130px, 180px) 1fr;
  gap: 12px;
}
.chooser-form .phone-row select {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235C4632' stroke-width='1.6' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.chooser-form .phone-row select:focus,
.chooser-form .phone-row input:focus {
  outline: none;
  border-color: var(--orange);
}
@media (max-width: 599px) {
  .chooser-form .phone-row { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
  18. FOOTER (dark brown, 3-column with corner leaves)
   ------------------------------------------------------------- */
.footer {
  position: relative;
  background: #3D2E20;
  color: #F1E9D8;
  padding: clamp(56px, 7vw, 88px) 0 28px;
  overflow: hidden;
  isolation: isolate;
}
.footer-leaf {
  position: absolute;
  bottom: 0;
  width: clamp(180px, 22vw, 320px);
  height: clamp(200px, 24vw, 340px);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.4;
  z-index: 0;
}
.footer-leaf--l {
  left: 0;
  background-position: left bottom;
  background-image: url(../images/resource/service-leaf1-1.png);
}
.footer-leaf--r {
  right: 0;
  background-position: right bottom;
  background-image: url(../images/resource/service-leaf1-2.png);
}
.footer .container,
.footer .auto-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max, 1240px);
  margin-inline: auto;
  padding-inline: clamp(20px, 3.5vw, 40px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  margin-bottom: 44px;
}
.footer-col {
  padding: 12px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-col:first-child {
  align-items: flex-start;
  text-align: left;
  padding-left: 0;
}
.footer-col:last-child {
  border-right: 0;
  padding-right: 0;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
}
.footer-logo img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-script {
  font-family: "Alex Brush", cursive;
  font-size: clamp(20px, 2.2vw, 26px);
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0 0;
  line-height: 1.2;
}

.footer-sprig {
  width: 80px;
  height: 56px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto 12px;
  background-image: url(../images/resource/flower2.png);
  opacity: 0.7;
}
.footer-tagline {
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
  max-width: 22ch;
  text-align: center;
}
.footer-tagline-rule {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 18px auto 0;
}

.footer-socials {
  display: inline-flex;
  gap: 12px;
  margin-top: 22px;
  list-style: none;
  padding: 0;
}
.footer-socials li { margin: 0; }
.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.footer-socials a:hover {
  background: #E94E1B;
  border-color: #E94E1B;
  color: #fff;
}
.footer-socials svg { width: 18px; height: 18px; }

.footer-col-nav {
  gap: 18px;
}
.footer-nav-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(17px, 1.6vw, 20px);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav-row a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-nav-row a:hover,
.footer-nav-row a.is-current,
.footer-nav-row a[aria-current="page"] {
  color: #E94E1B;
}
.footer-nav-row .sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-mid-divider {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 32px 0 22px;
}
.footer-mid-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #3D2E20 url(../images/resource/flower4.png) center / 26px no-repeat;
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-copy {
  font-family: "Marcellus", Georgia, serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Marcellus", Georgia, serif;
  font-size: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-legal a:hover { color: #E94E1B; }
.footer-legal .sep { color: rgba(255, 255, 255, 0.3); }

/* Legacy class shims so existing markup keeps working before HTML rewrite */
.footer-tagline .script {
  display: block;
  font-family: "Alex Brush", cursive;
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.footer-rule {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 24px 0 16px;
}

@media (max-width: 991px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 32px; }
  .footer-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0 0 32px;
    align-items: center;
    text-align: center;
  }
  .footer-col:first-child { align-items: center; text-align: center; padding-left: 0; }
  .footer-col:last-child { border-bottom: 0; padding-bottom: 0; }
  .footer-leaf { opacity: 0.25; }
}
@media (max-width: 599px) {
  .footer-nav-row { font-size: 16px; gap: 10px; }
  .footer-legal { font-size: 14px; }
}

/* -------------------------------------------------------------
  19. UTILITIES
   ------------------------------------------------------------- */
.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;
}
.mt-8 { margin-top: 8px; }
.mt-24 { margin-top: 24px; }

/* Subtle scroll-fade for content blocks WITHOUT hiding initially */
.fade-in {
  animation: fade-in-anim 700ms var(--ease) both;
}
@keyframes fade-in-anim {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
  20. REDUCED MOTION
   ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .flora { display: none !important; }
}

/* -------------------------------------------------------------
  21. PRICING TIERS
   ------------------------------------------------------------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 991px) { .tier-grid { grid-template-columns: 1fr; max-width: 520px; } }

/* Currency switcher */
.vyra-currency-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 5px 6px 5px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(94, 70, 50, 0.16);
  border-radius: 999px;
}
.vyra-currency-switch__label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #5C4632;
  margin-right: 4px;
}
.vyra-currency-switch__btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "Marcellus", Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #5C4632;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
}
.vyra-currency-switch__btn:hover { background: rgba(233, 78, 27, 0.08); color: #E94E1B; }
.vyra-currency-switch__btn.is-active {
  background: #E94E1B;
  color: #fff;
}
.vyra-currency-switch__auto {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(94, 70, 50, 0.65);
  text-decoration: none;
  transition: color 200ms ease;
}
.vyra-currency-switch__auto:hover { color: #1A8240; }

/* Anchor-jump offset so #plans clears the fixed top nav (~80px) */
.pricing-tiers { scroll-margin-top: 100px; }

.tier {
  position: relative;
  background: #FAF6EE;
  border-radius: 28px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px -16px rgba(42, 38, 32, 0.16);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.tier::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url(../images/background/bg-contact5.png);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.tier > * { position: relative; z-index: 1; }
.tier:hover { transform: translateY(-4px); box-shadow: 0 18px 38px -22px rgba(42, 38, 32, 0.32); }

.tier .tier-name {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.tier .tier-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 36px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
}
.tier .tier-price {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 48px);
  color: var(--orange);
  line-height: 1;
  margin: 8px 0 4px;
}
.tier .tier-price .unit {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-left: 6px;
}
.tier .tier-blurb {
  color: var(--ink-muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.tier hr { height: 1px; width: 100%; background: var(--line-strong); border: 0; opacity: 0.7; margin: 0 0 22px; }

.tier ul.tier-features {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  flex: 1;
}
.tier ul.tier-features li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.tier ul.tier-features li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  color: var(--green);
  font-weight: 600;
}
.tier .btn { align-self: stretch; }

/* Featured tier — deep green */
.tier.is-featured { background: var(--green-deep); color: #fff; }
.tier.is-featured::before { opacity: 0.10; filter: brightness(0) invert(1); }
.tier.is-featured .tier-name { color: rgba(255, 255, 255, 0.7); }
.tier.is-featured .tier-title { color: #fff; }
.tier.is-featured .tier-price { color: var(--orange-soft); }
.tier.is-featured .tier-price .unit { color: rgba(255, 255, 255, 0.7); }
.tier.is-featured .tier-blurb { color: rgba(255, 255, 255, 0.88); }
.tier.is-featured hr { background: rgba(255, 255, 255, 0.35); }
.tier.is-featured ul.tier-features li { color: #fff; }
.tier.is-featured ul.tier-features li::before { color: var(--orange-soft); }

/* "Most popular" ribbon */
.tier .ribbon {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: #fff;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* -------------------------------------------------------------
  22. CONTACT DETAILS BLOCK
   ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 899px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-side h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 8px 0 16px;
  max-width: 18ch;
}
.contact-side p { margin-bottom: 24px; }

/* Force vertical stack — template's style.css sets .contact-list to display:flex
   align-items:center which lays the items out horizontally. */
.contact-list {
  display: block !important;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  margin-left: 0;
  padding-left: 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list .label {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-list .value {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
}
.contact-list .value a:hover { color: var(--orange); }

/* -------------------------------------------------------------
  23. NOTES (BLOG LIST) ARTICLE CARD
   ------------------------------------------------------------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
}
@media (max-width: 991px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .article-grid { grid-template-columns: 1fr; } }

.article-card {
  display: flex;
  flex-direction: column;
  background: #FAF6EE;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px -16px rgba(42, 38, 32, 0.14);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -22px rgba(42, 38, 32, 0.28); }
.article-card .thumb {
  display: block;
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}
.article-card .body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.article-card .meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.article-card .tag {
  font-style: normal;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}
.article-card h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.article-card p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.article-card .read-more {
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: color var(--dur-fast) var(--ease), gap var(--dur-fast) var(--ease);
}
.article-card .read-more:hover { color: var(--orange-deep); gap: 12px; }

/* -------------------------------------------------------------
  24. ARTICLE / LEGAL PROSE (note-detail + privacy/terms/cookies)
   ------------------------------------------------------------- */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-muted);
}
.prose > * + * { margin-top: var(--sp-16); }
.prose h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.prose h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 8px;
}
.prose p { color: var(--ink-muted); }
.prose a { color: var(--orange); border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--orange-deep); }
.prose blockquote {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin: 28px 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.prose ul, .prose ol { padding-left: 24px; margin: var(--sp-16) 0; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose hr { border: 0; height: 1px; background: var(--line); margin: 40px 0; }
.prose .last-updated {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.article-meta {
  text-align: center;
  margin-bottom: 32px;
  font-family: var(--f-body);
  font-style: italic;
  color: var(--ink-soft);
}
.article-meta .tag {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-family: var(--f-ui);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px;
  background: var(--cream-soft);
  border-radius: 18px;
}
.author-block img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.author-block .author-name { font-family: var(--f-display); color: var(--ink); font-size: 18px; }
.author-block .author-bio { font-size: 14px; color: var(--ink-muted); line-height: 1.5; margin-top: 2px; }

/* -------------------------------------------------------------
  25. SCOPED SECTION SHAPES — NEW PAGES
   ------------------------------------------------------------- */
/* Pricing */
.pricing-intro .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about10-4.png);
  background-position: left center;
  opacity: 0.65;
}
.pricing-intro .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about9-3.png);
  background-position: right center;
  opacity: 0.65;
}
.pricing-tiers .shape-1 {
  left: 0; top: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/service-leaf3-1.png);
  background-position: left top;
  opacity: 0.5;
}
.pricing-tiers .shape-2 {
  right: 0; bottom: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/service-leaf3-2.png);
  background-position: right bottom;
  opacity: 0.5;
}
.pricing-faqs .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about8-5.png);
  background-position: left center;
  opacity: 0.65;
}
.pricing-faqs .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about8-3.png);
  background-position: right center;
  opacity: 0.65;
}

/* Contact */
section.section.contact-intro {
  background: var(--cream-soft);
}
.contact-intro .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about2-7.png);
  background-position: left center;
  opacity: 0.65;
}
.contact-intro .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about2-8.png);
  background-position: right center;
  opacity: 0.65;
}
.contact-form-section .shape-1 {
  left: 0; top: 8%;
  width: 240px; height: 280px;
  background-image: url(../images/resource/about11-3.png);
  background-position: left center;
  opacity: 0.65;
}
.contact-form-section .shape-2 {
  right: 0; bottom: 8%;
  width: 240px; height: 280px;
  background-image: url(../images/resource/about10-5.png);
  background-position: right center;
  opacity: 0.65;
}

/* Notes */
.notes-intro .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about13-4.png);
  background-position: left center;
  opacity: 0.65;
}
.notes-intro .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about13-5.png);
  background-position: right center;
  opacity: 0.65;
}
.notes-grid-section .shape-1 {
  left: 0; top: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/about9-4.png);
  background-position: left top;
  opacity: 0.5;
}
.notes-grid-section .shape-2 {
  right: 0; bottom: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/about12-3.png);
  background-position: right bottom;
  opacity: 0.5;
}

/* Note detail */
.article-body-section .shape-1 {
  left: 0; top: 8%;
  width: 200px; height: 240px;
  background-image: url(../images/resource/flower4.png);
  background-position: left center;
  opacity: 0.5;
}
.article-body-section .shape-2 {
  right: 0; bottom: 8%;
  width: 200px; height: 240px;
  background-image: url(../images/resource/about8-6.png);
  background-position: right center;
  opacity: 0.5;
}
.article-related .shape-1 {
  left: 0; top: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/about1-6.png);
  background-position: left top;
  opacity: 0.5;
}
.article-related .shape-2 {
  right: 0; bottom: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/about1-9.png);
  background-position: right bottom;
  opacity: 0.5;
}

/* Legal pages */
.legal-body .shape-1 {
  left: 0; top: 6%;
  width: 200px; height: 240px;
  background-image: url(../images/resource/about13-3.png);
  background-position: left center;
  opacity: 0.45;
}
.legal-body .shape-2 {
  right: 0; bottom: 6%;
  width: 200px; height: 240px;
  background-image: url(../images/resource/flower4.png);
  background-position: right center;
  opacity: 0.45;
}

/* -------------------------------------------------------------
   FLOATING WHATSAPP BUTTON (bottom-right, pulse animation)
   ------------------------------------------------------------- */
.vyra-whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.vyra-whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px -6px rgba(0, 0, 0, 0.45);
}
.vyra-whatsapp-fab svg { width: 30px; height: 30px; }
.vyra-whatsapp-fab::before,
.vyra-whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  animation: vyra-pulse 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  z-index: -1;
  pointer-events: none;
}
.vyra-whatsapp-fab::after { animation-delay: 1.1s; }
@keyframes vyra-pulse {
  0%   { transform: scale(1);   opacity: 0.65; }
  100% { transform: scale(1.9); opacity: 0;    }
}
@media (max-width: 599px) {
  .vyra-whatsapp-fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .vyra-whatsapp-fab svg { width: 26px; height: 26px; }
}

/* -------------------------------------------------------------
   KIDS YOGA PAGE — storyline + parent callout + teacher block
   ------------------------------------------------------------- */

/* "Inside the class" storyline section — reuses .steps with extra icon */
.kids-storyline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-24);
}
.kids-storyline-steps .step {
  text-align: center;
  padding: 28px 22px;
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid var(--line);
  position: relative;
}
.kids-storyline-steps .step .num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-script);
  font-size: 26px;
  color: var(--orange);
  margin: 0;
}
.kids-storyline-steps .step .step-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
  opacity: 0.85;
}
.kids-storyline-steps .step h4 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 400;
}
.kids-storyline-steps .step p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 991px) {
  .kids-storyline-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 559px) {
  .kids-storyline-steps { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* Parent-child callout — warm orange-tinted panel */
.kids-callout-wrap {
  padding: clamp(32px, 5vw, 56px) 0;
  background: var(--cream);
}
.kids-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(135deg, #FDE7DC 0%, #FBE2D4 100%);
  border: 1px solid var(--orange-soft);
  border-radius: 24px;
  position: relative;
}
.kids-callout-text { flex: 1; }
.kids-callout-text .eyebrow {
  font-family: var(--f-script);
  font-size: 22px;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}
.kids-callout-text h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  margin: 0 0 8px;
  font-weight: 400;
  max-width: 24ch;
  line-height: 1.2;
}
.kids-callout-text p {
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 699px) {
  .kids-callout { flex-direction: column; text-align: center; }
  .kids-callout-text h3 { margin-inline: auto; }
}

/* Meet your teacher block */
.kids-teacher .teacher-block {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 36px);
  background: var(--cream-soft);
  border-radius: 24px;
}
.kids-teacher .teacher-block > img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px -10px rgba(42, 38, 32, 0.2);
}
.kids-teacher .teacher-name {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.kids-teacher .teacher-creds {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: var(--orange);
  margin-bottom: 14px;
}
.kids-teacher .teacher-bio {
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 599px) {
  .kids-teacher .teacher-block { flex-direction: column; text-align: center; }
}

/* Scoped shape decorations for new kids sections */
.kids-storyline .shape-1 {
  left: 0; top: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/flower3.png);
  background-position: left top;
  opacity: 0.5;
}
.kids-storyline .shape-2 {
  right: 0; bottom: 0;
  width: 180px; height: 200px;
  background-image: url(../images/resource/about13-5.png);
  background-position: right bottom;
  opacity: 0.5;
}
.kids-teacher .shape-1 {
  left: 0; top: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about12-3.png);
  background-position: left center;
  opacity: 0.55;
}
.kids-teacher .shape-2 {
  right: 0; bottom: 10%;
  width: 220px; height: 240px;
  background-image: url(../images/resource/about9-4.png);
  background-position: right center;
  opacity: 0.55;
}
