:root {

  --teal: #00A8C5;

  --teal-hot: #2BB8CC;

  --teal-soft: #8EDDE8;

  --teal-deep: #0A6F80;

  --mint: #C8EDE6;

  --aqua: #D6F1F4;

  --purple: #9B6B9E;

  --purple-soft: #C9A3CC;

  --lilac: #E8D8EC;

  --blush: #F5C8C8;

  --peach: #F8D8C8;

  --ivory: #FFFCF8;

  --cream: #FBF4EC;

  --cream-2: #F6EBE0;

  --mist: #F4F8F7;

  --milk: #FFF8FA;

  --ink: #2C1F28;

  --muted: #6A5660;

  --text: #2C1F28;

  --text-dim: #5E4D55;

  --line: rgba(44, 31, 40, 0.08);

  --white: #ffffff;

  --header-h: 88px;

  --joga: #7d5480;

  --joga-soft: #c9a3cc;

  --aid: #a05a4d;

  --aid-soft: #e8a896;

  --coach: #3f7a64;

  --coach-soft: #7aa894;

  --max: 1140px;

  --radius: 22px;

  --font-sans: "Outfit", "Segoe UI", sans-serif;

  --font-serif: "Cormorant Garamond", Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow: 0 18px 50px rgba(44, 31, 40, 0.06);

}



*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: light; }

body {

  margin: 0;

  color: var(--text);

  font-family: var(--font-sans);

  font-size: 1.05rem;

  line-height: 1.75;

  background: var(--ivory);

}

body.nav-open { overflow: hidden; }

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

a { color: var(--teal-deep); text-decoration-color: rgba(0, 168, 197, 0.28); }

a:hover { color: var(--teal); }

:focus-visible { outline: 2px solid rgba(0, 168, 197, 0.45); outline-offset: 3px; }

h1, h2, h3 {

  font-family: var(--font-serif);

  font-weight: 600;

  line-height: 1.08;

  letter-spacing: -0.03em;

  color: var(--ink);

}

h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--purple); }

p { margin: 0 0 1rem; }



.skip-link {

  position: absolute; left: 1rem; top: -3rem; z-index: 1000;

  padding: 0.6rem 0.9rem; background: var(--teal); color: #fff; border-radius: 999px;

}

.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2.2rem), var(--max)); margin-inline: auto; }



.grain {

  pointer-events: none;

  position: fixed;

  inset: 0;

  z-index: 70;

  opacity: 0.028;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

}



.section {

  position: relative;

  padding: 6.2rem 0 6.6rem;

}

.section--cream { background: var(--cream); color: var(--ink); }

.section--cream .lead, .section--cream .about__note { color: var(--muted); }

.section--mist {

  background:

    linear-gradient(180deg, rgba(251,244,236,0.9) 0%, transparent 9%),

    radial-gradient(ellipse at 10% 0%, rgba(0,168,197,0.1), transparent 38%),

    radial-gradient(ellipse at 92% 100%, rgba(201,163,204,0.14), transparent 40%),

    var(--mist);

}

.section--lilac {

  background:

    linear-gradient(180deg, rgba(244,248,247,0.85) 0%, transparent 10%),

    radial-gradient(ellipse at 88% 6%, rgba(201,163,204,0.2), transparent 38%),

    radial-gradient(ellipse at 8% 94%, rgba(0,168,197,0.1), transparent 36%),

    #f7f2f6;

}

section[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

.section__intro { max-width: 38rem; margin: 0 auto 3.4rem; text-align: center; }

.section__intro h2, .about h2 {

  margin: 0 0 1.15rem;

  font-size: clamp(2.5rem, 5.2vw, 3.85rem);

}

.eyebrow {

  margin: 0 0 0.85rem;

  font-size: 0.7rem;

  font-weight: 500;

  letter-spacing: 0.28em;

  text-transform: uppercase;

  color: var(--purple);

}

.eyebrow--glow { color: var(--teal-deep); }

.lead { color: var(--text-dim); font-size: 1.14rem; font-weight: 300; line-height: 1.8; }



.site-header {

  position: sticky; top: 0; z-index: 50;

  background: var(--ivory);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid transparent;

  transition: background 0.55s var(--ease), border-color 0.55s ease, box-shadow 0.55s ease;

}

.site-header.is-scrolled {

  background: var(--ivory);

  backdrop-filter: blur(22px);

  border-bottom-color: rgba(44, 31, 40, 0.06);

  box-shadow: 0 10px 40px rgba(44, 31, 40, 0.045);

}

.header-inner {

  min-height: auto;

  padding: 0.45rem 0;

  display: flex; align-items: center; justify-content: space-between; gap: 0.55rem 1rem;

  flex-wrap: wrap;

}

.logo { display: flex; align-items: center; flex-shrink: 0; }

.logo img {

  max-height: 70px; width: auto; max-width: min(240px, 58vw);

  object-fit: contain;

}

.nav-toggle { display: none !important; }

.site-nav {

  position: static;

  background: transparent;

  padding: 0;

  transform: none;

  flex: 1 1 auto;

}

.site-nav > ul, .site-nav .nav-list {

  list-style: none; margin: 0; padding: 0;

  display: flex; flex-direction: row; flex-wrap: wrap;

  align-items: center; justify-content: flex-end; gap: 0.18rem;

}

.site-nav a {

  position: relative;

  display: block; padding: 0.42rem 0.78rem; color: #2C302E; text-decoration: none;

  font-weight: 500; border-bottom: 0; letter-spacing: 0.03em;

  border-radius: 9999px; font-size: 0.86rem;

  background: transparent;

  border: 1px solid transparent;

  box-shadow: none;

  transition: all 0.2s ease;

}

.site-nav .nav-link:hover {
  opacity: 0.7;
  color: #2C302E;
}

.site-nav .nav-link.is-active {
  opacity: 1;
  color: #1A1D1C;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-cta {

  border: 1px solid rgba(255, 255, 255, 0.25) !important;

  border-radius: 9999px; text-align: center; margin-top: 0;

  color: #fff !important;

  font-weight: 600;

  letter-spacing: 0.04em;

  background: linear-gradient(160deg, #2a7d78 0%, #1b5c58 52%, #123f3d 100%);

  box-shadow: 0 8px 20px -4px rgba(32, 120, 130, 0.3);

  padding: 0.5rem 1.05rem !important;

  transition: all 0.2s ease;

}

.nav-cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -4px rgba(32, 120, 130, 0.45);
}

.nav-cta--aero,
.nav-cta--aero:hover,
.nav-cta--aero.is-active {
  color: #1A1D1C !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  transform: none;
  text-shadow: none;
}



.hero {

  position: relative; overflow: hidden;

  min-height: calc(100vh - var(--header-h));

  display: grid; place-items: center;

  padding: 3.4rem 0 5rem;

  background:

    radial-gradient(ellipse at 50% -10%, rgba(0,168,197,0.1), transparent 42%),

    radial-gradient(ellipse at 12% 18%, rgba(245,200,200,0.38), transparent 40%),

    radial-gradient(ellipse at 88% 8%, rgba(201,163,204,0.28), transparent 38%),

    radial-gradient(ellipse at 80% 92%, rgba(0,168,197,0.12), transparent 44%),

    var(--ivory);

}

.hero__wash {

  position: absolute; inset: -10%;

  background:

    radial-gradient(circle at 30% 40%, rgba(0,168,197,0.08), transparent 34%),

    radial-gradient(circle at 70% 60%, rgba(155,107,158,0.1), transparent 36%);

  animation: washDrift 22s ease-in-out infinite;

  pointer-events: none;

}

.hero__orb {

  position: absolute; border-radius: 50%; filter: blur(88px); pointer-events: none;

  will-change: transform;

}

.hero__orb--teal { width: 46vw; height: 46vw; left: -10%; top: 8%; background: rgba(0,168,197,0.18); animation: orbA 26s ease-in-out infinite; }

.hero__orb--purple { width: 40vw; height: 40vw; right: -12%; top: -8%; background: rgba(201,163,204,0.32); animation: orbB 30s ease-in-out infinite; }

.hero__orb--blush { width: 32vw; height: 32vw; left: 16%; bottom: -10%; background: rgba(248,216,200,0.48); animation: orbC 24s ease-in-out infinite; }

.hero__orb--mid { width: 22vw; height: 22vw; left: 46%; bottom: 8%; background: rgba(200,237,230,0.4); animation: orbA 28s ease-in-out infinite reverse; }

.hero__arc {

  position: absolute; width: min(520px, 70vw); height: min(520px, 70vw);

  left: 50%; top: 18%; transform: translateX(-50%);

  border: 1px solid rgba(0,168,197,0.12);

  border-radius: 50%;

  pointer-events: none;

}

.hero__content { position: relative; text-align: center; max-width: 46rem; }

.hero__logo {

  width: min(360px, 76vw);

  margin: 0 auto 2rem;

  filter: drop-shadow(0 10px 28px rgba(0,168,197,0.12)) drop-shadow(0 8px 32px rgba(155,107,158,0.1));

  animation: logoFloat 9s ease-in-out infinite;

}

.hero h1 { margin: 0 0 1.25rem; font-size: clamp(2.7rem, 7.4vw, 5.4rem); }

.hero .lead { margin: 0 auto 2rem; max-width: 34rem; }

.hero__meta {

  margin: 2.5rem 0 0; color: var(--muted); font-size: 0.72rem;

  letter-spacing: 0.22em; text-transform: uppercase;

}

.hero__meta span {

  display: inline-block; width: 26px; height: 1px; margin: 0 0.7rem 0.2rem;

  background: linear-gradient(90deg, var(--teal), var(--purple-soft)); vertical-align: middle;

}



.hero-enter {

  opacity: 0;

  transform: translateY(22px);

  filter: blur(6px);

}

body.is-ready .hero-enter {

  animation: fadeUp 1.15s var(--ease) forwards;

  animation-delay: calc(var(--d, 0) * 140ms);

}



.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }

.btn {

  display: inline-flex; align-items: center; justify-content: center;

  min-height: 52px; padding: 0.85rem 1.55rem; border-radius: 999px;

  border: 1px solid transparent; font-family: inherit; font-size: 0.94rem;

  font-weight: 500; letter-spacing: 0.05em; text-decoration: none; cursor: pointer;

  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s ease, border-color 0.5s ease;

}

.btn--primary {

  color: #fff;

  background: linear-gradient(135deg, #17b4c8 0%, var(--teal) 48%, #7ea8c4 100%);

  box-shadow: 0 16px 36px rgba(0, 168, 197, 0.2);

}

.btn--primary:hover {

  transform: translateY(-3px);

  box-shadow: 0 22px 44px rgba(0, 168, 197, 0.26);

  color: #fff;

}

.btn--ghost {

  color: var(--ink);

  background: rgba(255,255,255,0.48);

  border-color: rgba(155,107,158,0.28);

  backdrop-filter: blur(10px);

}

.btn--ghost:hover {

  transform: translateY(-3px);

  background: rgba(255,255,255,0.8);

  color: var(--ink);

  box-shadow: 0 14px 30px rgba(155,107,158,0.1);

}



.ribbon {

  position: relative;

  padding: 2.6rem 0 3rem;

  background:

    linear-gradient(180deg, transparent, rgba(251,244,236,0.55) 30%, var(--cream));

}

.ribbon::before {

  content: "";

  position: absolute; left: 12%; right: 12%; top: 0; height: 1px;

  background: linear-gradient(90deg, transparent, var(--teal-soft), var(--purple-soft), transparent);

}

.ribbon__grid { display: grid; gap: 1.6rem; }

.ribbon article { position: relative; padding-top: 0.2rem; }

.ribbon article small {

  display: block; font-family: var(--font-serif); font-style: italic;

  color: rgba(0,168,197,0.55); letter-spacing: 0.08em; font-size: 1.35rem; margin-bottom: 0.15rem;

}

.ribbon h2 { margin: 0 0 0.4rem; font-size: 1.85rem; }

.ribbon p { margin: 0; color: var(--text-dim); font-weight: 300; }



.about { display: grid; gap: 2.8rem; }

.about__photo-wrap { position: relative; }

.about__glow {

  position: absolute; inset: 8% -8% -8% 8%;

  background:

    radial-gradient(circle at 20% 20%, rgba(0,168,197,0.22), transparent 46%),

    radial-gradient(circle at 80% 80%, rgba(155,107,158,0.22), transparent 48%);

  filter: blur(28px);

  pointer-events: none;

}

.about__frame {

  position: relative;

  padding: 1px;

  border-radius: 32px;

  background: linear-gradient(150deg, rgba(0,168,197,0.75), rgba(248,216,200,0.7) 46%, rgba(155,107,158,0.7));

  box-shadow: 0 24px 60px rgba(44, 31, 40, 0.08);

}

.about__media {

  overflow: hidden;

  border-radius: 31px;

  background: linear-gradient(160deg, #e7f4f4, #f3eaf3);

}

.about__photo {

  width: 100%; aspect-ratio: 4/5; object-fit: cover;

  transition: transform 1.2s var(--ease);

}

.about__photo-wrap:hover .about__photo { transform: scale(1.035); }

.about__note { position: relative; margin-top: 0.9rem; font-size: 0.84rem; letter-spacing: 0.02em; }

.about .eyebrow { margin-bottom: 0.95rem; }

.quote {

  font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 1.75rem);

  line-height: 1.4; color: var(--purple); margin: 0 0 1.5rem;

}



.offer-grid, .subtype-grid, .price-grid, .contact-layout { display: grid; gap: 1.2rem; }

.offer {

  position: relative; overflow: hidden; display: block; height: 100%;

  padding: 1.55rem 1.4rem 1.4rem; border-radius: var(--radius);

  text-decoration: none; color: inherit;

  background:

    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,252,248,0.88));

  border: 1px solid rgba(44,31,40,0.06);

  box-shadow: var(--shadow);

  transition: transform 0.55s var(--ease), border-color 0.55s ease, box-shadow 0.55s ease;

}

.offer:hover { transform: translateY(-6px); color: inherit; box-shadow: 0 24px 50px rgba(44,31,40,0.08); }

.offer__deco {

  position: absolute; right: -18px; top: -22px; width: 110px; height: 110px;

  border-radius: 50%;

  border: 1px solid rgba(0,168,197,0.16);

  pointer-events: none;

  transition: transform 0.8s var(--ease);

}

.offer__deco::after {

  content: "";

  position: absolute; inset: 18px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0,168,197,0.12), transparent 68%);

}

.offer--purple .offer__deco { border-color: rgba(155,107,158,0.2); }

.offer--purple .offer__deco::after { background: radial-gradient(circle, rgba(155,107,158,0.14), transparent 68%); }

.offer--mixed .offer__deco {

  border-color: rgba(201,163,204,0.28);

}

.offer:hover .offer__deco { transform: translate(-8px, 10px) scale(1.06); }

.offer__no {

  display: block; font-family: var(--font-serif); font-style: italic;

  font-size: 2.15rem; line-height: 1; margin-bottom: 0.7rem;

  color: rgba(0,168,197,0.38);

}

.offer--purple .offer__no { color: rgba(155,107,158,0.42); }

.offer--mixed .offer__no { color: rgba(201,163,204,0.72); }

.offer h3 { margin: 0 0 0.5rem; font-size: 1.7rem; }

.offer p { color: var(--text-dim); font-weight: 300; }

.offer__more {

  color: var(--teal-deep); font-weight: 500; letter-spacing: 0.08em;

  font-size: 0.78rem; text-transform: uppercase;

}



.subtype {

  position: relative;

  border-radius: 18px; padding: 1.45rem 1.3rem;

  background: rgba(255,255,255,0.78);

  border: 1px solid rgba(44,31,40,0.055);

  box-shadow: 0 12px 30px rgba(44,31,40,0.035);

  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;

}

.subtype:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(44,31,40,0.06); }

.subtype h2, .subtype h3 { margin: 0 0 0.55rem; font-size: 1.45rem; }

.page-top { padding-top: 7.4rem; }

.page-top h1, .about h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
}

.subtype p { margin: 0; color: var(--text-dim); font-weight: 300; }

.subtype--teal { box-shadow: inset 2px 0 0 var(--teal), 0 12px 30px rgba(44,31,40,0.035); }

.subtype--purple { box-shadow: inset 2px 0 0 var(--purple-soft), 0 12px 30px rgba(44,31,40,0.035); }

.subtype--glass {

  background: rgba(255,255,255,0.62);

  backdrop-filter: blur(12px);

  box-shadow: inset 2px 0 0 #d7a8b4, 0 12px 30px rgba(155,107,158,0.05);

}



.price-card {

  text-align: center; padding: 2rem 1.3rem; border-radius: var(--radius);

  background: rgba(255,255,255,0.8);

  border: 1px solid rgba(44,31,40,0.06);

  box-shadow: var(--shadow);

  transition: transform 0.5s var(--ease);

}

.price-card:hover { transform: translateY(-4px); }

.price-card h3 { margin: 0 0 0.45rem; font-size: 1.6rem; }

.price-card strong {

  display: block; margin: 0.15rem 0 0.75rem;

  font-family: var(--font-serif); font-size: 2rem; font-weight: 600;

  background: linear-gradient(90deg, var(--teal-deep), var(--purple));

  -webkit-background-clip: text; background-clip: text; color: transparent;

}

.price-card p { color: var(--text-dim); margin: 0; font-weight: 300; }

.price-card--featured {

  background:

    linear-gradient(var(--milk), var(--milk)) padding-box,

    linear-gradient(150deg, var(--teal), var(--blush), var(--purple-soft)) border-box;

  border: 1px solid transparent;

}



.contact-details { display: grid; gap: 0.8rem; }

.contact-box {

  background: rgba(255,255,255,0.8); border-radius: 16px; padding: 1.1rem 1.15rem;

  border: 1px solid rgba(44,31,40,0.055);

}

.contact-box span {

  display: block; color: var(--purple); font-size: 0.7rem;

  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.25rem;

}

.contact-box p { margin: 0; }

.contact-box a { color: var(--ink); }

form {

  background: rgba(255,255,255,0.84); color: var(--ink); border-radius: var(--radius);

  padding: 1.55rem; border: 1px solid rgba(44,31,40,0.06);

  box-shadow: 0 22px 50px rgba(155,107,158,0.06);

}

.field { margin-bottom: 1rem; }

label { display: block; margin-bottom: 0.35rem; font-weight: 500; }

input, select, textarea {

  width: 100%; border: 1px solid #eadfd6; border-radius: 14px;

  padding: 0.82rem 0.9rem; font: inherit; color: var(--ink); background: #fffaf6;

  transition: border-color 0.4s ease, box-shadow 0.4s ease;

}

input:focus, select:focus, textarea:focus {

  outline: none; border-color: var(--teal);

  box-shadow: 0 0 0 4px rgba(0,168,197,0.1);

}

textarea { min-height: 140px; resize: vertical; }

.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.94rem; margin-bottom: 1.1rem; }

.consent input { width: auto; margin-top: 0.3rem; }

.form-status { margin: 0.8rem 0 0; padding: 0.8rem 0.95rem; border-radius: 12px; }

.form-status.is-success { background: #e7f7ee; color: #216246; }

.form-status.is-error { background: #fdecee; color: #8a2b38; }



.site-footer {

  position: relative;

  background:

    radial-gradient(ellipse at 8% 0%, rgba(0, 168, 197, 0.08), transparent 42%),

    radial-gradient(ellipse at 92% 100%, rgba(155, 107, 158, 0.08), transparent 46%),

    linear-gradient(180deg, #f7fbfb 0%, #f4f7f8 48%, #f6f2f7 100%);

  color: var(--ink);

  padding: 1.7rem 0 0.95rem;

  border-top: none;

}

.site-footer::before {

  content: "";

  position: absolute;

  top: 0; left: 0; right: 0;

  height: 2px;

  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 163, 204, 0.2) 8%,
    var(--joga-soft) 26%,
    var(--teal) 50%,
    var(--coach-soft) 68%,
    var(--aid-soft) 84%,
    transparent 100%);

  box-shadow: 0 0 18px rgba(0, 168, 197, 0.18), 0 4px 16px rgba(201, 163, 204, 0.12);

}

.site-footer::after {

  content: "";

  position: absolute;

  top: 4px; left: 6%; right: 6%;

  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), rgba(201,163,204,0.35), rgba(255,255,255,0.9), transparent);

}

.footer-grid {

  display: grid;

  gap: 1.15rem 2rem;

  align-items: start;

}

.site-footer .logo { display: inline-flex; }

.site-footer .logo img {

  max-height: 64px;

  max-width: min(200px, 70vw);

  width: auto;

}

.footer-nav { display: grid; gap: 0.32rem; justify-items: start; }

.footer-nav a {

  color: var(--text-dim);

  text-decoration: none;

  font-weight: 400;

  letter-spacing: 0.01em;

  position: relative;

  transition: color 0.4s ease;

}

.footer-nav a::after {

  content: "";

  position: absolute;

  left: 0; right: 0; bottom: -2px;

  height: 1px;

  background: linear-gradient(90deg, var(--teal), var(--purple-soft));

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.4s var(--ease);

}

.footer-nav a:hover { color: var(--teal-deep); }

.footer-nav a:hover::after { transform: scaleX(1); }

.footer-copy {

  margin: 1rem 0 0;

  padding-top: 0.7rem;

  border-top: 1px solid rgba(0, 168, 197, 0.1);

  font-size: 0.74rem;

  letter-spacing: 0.04em;

  color: var(--muted);

}



.reveal {

  opacity: 0;

  transform: translateY(20px);

  filter: blur(5px);

  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s ease;

}

.reveal[data-d="1"] { transition-delay: 90ms; }

.reveal[data-d="2"] { transition-delay: 180ms; }

.reveal.is-visible { opacity: 1; transform: none; filter: none; }



@keyframes fadeUp {

  to { opacity: 1; transform: none; filter: none; }

}

@keyframes logoFloat {

  0%, 100% { transform: translateY(0); }

  50% { transform: translateY(-7px); }

}

@keyframes washDrift {

  0%, 100% { transform: translate3d(0,0,0) scale(1); }

  50% { transform: translate3d(2%, -1.5%, 0) scale(1.06); }

}

@keyframes orbA {

  0%, 100% { transform: translate3d(0,0,0); }

  50% { transform: translate3d(4%, 3%, 0); }

}

@keyframes orbB {

  0%, 100% { transform: translate3d(0,0,0); }

  50% { transform: translate3d(-5%, 4%, 0); }

}

@keyframes orbC {

  0%, 100% { transform: translate3d(0,0,0); }

  50% { transform: translate3d(3%, -4%, 0); }

}



@media (min-width: 900px) {

  .site-nav a { padding: 0.4rem 0.7rem; font-size: 0.9rem; }

  .nav-cta { padding: 0.55rem 1.05rem !important; }

  .nav-link.is-active { padding: 0.4rem 0.85rem; }

  .ribbon__grid, .offer-grid, .price-grid { grid-template-columns: repeat(3, 1fr); }

  .about, .contact-layout, .subtype-grid { grid-template-columns: 1fr 1fr; }

  .about { grid-template-columns: 0.86fr 1.14fr; align-items: center; gap: 4rem; }

}

@media (max-width: 899px) {

  .section { padding: 4.6rem 0 5rem; }

  .hero { min-height: auto; padding-top: 2.2rem; }

  .hero__orb { filter: blur(70px); }

}

@media (prefers-reduced-motion: reduce) {

  html { scroll-behavior: auto; }

  .reveal, .btn, .offer, .subtype, .price-card, .site-nav, .site-header, .about__photo {

    transition: none;

  }

  .reveal, .hero-enter { opacity: 1; transform: none; filter: none; animation: none; }

  .hero__orb, .hero__wash, .hero__logo { animation: none; }

}

/* ??? Editorial layout system ??? */

.hero {

  display: block;

  place-items: unset;

  padding: 2.4rem 0 3.2rem;

}

.hero__grid {

  position: relative;

  display: grid;

  gap: 2.4rem;

  align-items: center;

}

.hero__copy { text-align: left; max-width: 36rem; }

.hero__logo { width: min(220px, 70vw); margin: 0 0 1.5rem; }

.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.8rem); }

.hero .lead { margin: 0 0 1.8rem; max-width: 32rem; }

.hero .cta-row { justify-content: flex-start; }

.hero__visual { position: relative; min-height: 420px; }

.hero__arc { display: none; }



.mask-organic,

.mask-circle { margin: 0; overflow: hidden; }

.mask-organic img,

.mask-circle img,

.offer__media img,

.cta-band__photo img {

  width: 100%; height: 100%; object-fit: cover; display: block;

}

.mask-organic {

  height: min(72vh, 640px);

  border-radius: 62% 38% 48% 52% / 42% 56% 44% 58%;

  box-shadow: 0 30px 70px rgba(44, 31, 40, 0.12);

}

.mask-organic--tall { height: min(78vh, 700px); }

.mask-organic--soft {
  height: min(42vh, 400px);
  border-radius: 28px 28px 46% 54% / 22px 22px 52% 48%;
  background: #eaf4ef;
}

.mask-organic--soft img {
  object-fit: contain;
  object-position: center center;
}

.mask-circle {

  border-radius: 50%;

  aspect-ratio: 1;

  box-shadow: 0 18px 40px rgba(44, 31, 40, 0.12);

}



.hero__chip {

  position: absolute;

  width: min(168px, 34vw);

  left: -8%;

  bottom: 8%;

  border: 4px solid var(--ivory);

  z-index: 2;

}

.hero__card {

  position: absolute;

  right: 2%;

  bottom: 6%;

  z-index: 3;

}

.float-card {

  width: min(230px, 80%);

  padding: 1.15rem 1.2rem;

  border-radius: 20px;

  background: rgba(255, 252, 248, 0.82);

  border: 1px solid rgba(255,255,255,0.7);

  box-shadow: 0 20px 50px rgba(44, 31, 40, 0.1);

  backdrop-filter: blur(16px);

}

.float-card small {

  display: block;

  font-family: var(--font-serif);

  font-style: italic;

  color: var(--teal-deep);

  font-size: 1.2rem;

}

.float-card strong { display: block; font-family: var(--font-serif); font-size: 1.35rem; margin: 0.15rem 0 0.3rem; }

.float-card p { margin: 0; color: var(--text-dim); font-size: 0.92rem; font-weight: 300; }



.stats { padding: 1.2rem 0 3.4rem; }

.stats__grid { display: grid; gap: 1.4rem; }

.stats article {

  padding-top: 0.4rem;

  border-top: 1px solid rgba(0,168,197,0.16);

}

.stats strong {

  display: block;

  font-family: var(--font-serif);

  font-size: clamp(2.6rem, 5vw, 3.6rem);

  line-height: 1;

  background: linear-gradient(90deg, var(--teal-deep), var(--purple));

  -webkit-background-clip: text; background-clip: text; color: transparent;

}

.stats span {

  display: block;

  margin: 0.45rem 0 0.35rem;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  font-size: 0.7rem;

  color: var(--purple);

}

.stats p { margin: 0; color: var(--text-dim); font-weight: 300; }



.about__copy { text-align: left; }

.about__chip {

  position: absolute;

  width: 132px;

  right: -18px;

  bottom: 52px;

  border: 4px solid var(--cream);

  z-index: 2;

}



.split--start { margin-bottom: 2.4rem; }

.split__intro, .split--start > div { max-width: 38rem; text-align: left; }

.split__intro h2, .split--start h2 { margin: 0 0 1rem; font-size: clamp(2.4rem, 5vw, 3.6rem); }



.pullquote {

  padding: 4.5rem 0;

  background:

    linear-gradient(180deg, rgba(251,244,236,0.2), rgba(247,242,246,0.8)),

    radial-gradient(ellipse at 80% 50%, rgba(201,163,204,0.18), transparent 46%);

}

.pullquote__grid { max-width: 48rem; }

.pullquote blockquote {

  margin: 0;

  font-family: var(--font-serif);

  font-size: clamp(2rem, 4.6vw, 3.3rem);

  line-height: 1.2;

  color: var(--ink);

}

.pullquote em { color: var(--purple); }



.offer--visual { padding: 0 0 1.3rem; }

.offer__media {

  display: block;

  height: 170px;

  overflow: hidden;

  border-radius: 22px 22px 0 0;

  margin-bottom: 1.15rem;

}

.offer__media img { transition: transform 1.1s var(--ease); }

.offer:hover .offer__media img { transform: scale(1.05); }

.offer--visual .offer__no,

.offer--visual h3,

.offer--visual p,

.offer--visual .offer__more { padding-inline: 1.3rem; }



.editorial { display: grid; gap: 2.4rem; align-items: center; }

.editorial__visual { position: relative; }

.editorial__copy { text-align: left; }

.editorial__card { position: absolute; left: -12px; bottom: 28px; z-index: 2; }

.subtype-stack { display: grid; gap: 0.85rem; margin-top: 1.5rem; }



.voices { padding: 5.5rem 0; background: var(--ivory); }

.voices__grid { display: grid; gap: 1.1rem; }

.voice {

  padding: 1.5rem 1.35rem;

  border-radius: 20px;

  background: rgba(255,255,255,0.78);

  border: 1px solid rgba(44,31,40,0.05);

  box-shadow: var(--shadow);

}

.voice p {

  font-family: var(--font-serif);

  font-style: italic;

  font-size: 1.28rem;

  line-height: 1.45;

  color: var(--ink);

}

.voice cite {

  display: block;

  font-style: normal;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  font-size: 0.7rem;

  color: var(--purple);

}



.cta-band {

  position: relative;

  min-height: 420px;

  display: grid;

  align-items: center;

  overflow: hidden;

}

.cta-band__photo { position: absolute; inset: 0; }

.cta-band__photo img { filter: grayscale(12%) saturate(0.9); }

.cta-band::after {

  content: "";

  position: absolute; inset: 0;

  background: linear-gradient(90deg, rgba(44,31,40,0.58) 0%, rgba(44,31,40,0.22) 70%, rgba(44,31,40,0.1) 100%);

}

.cta-band__inner { position: relative; z-index: 1; max-width: 36rem; padding: 4.5rem 0; text-align: left; }

.cta-band h2 { color: #fff; margin: 0 0 1.4rem; font-size: clamp(2.3rem, 5vw, 3.5rem); }

.cta-band h2 em { color: #e7c8ea; }

.eyebrow--light { color: #d7eef1; }



.price-card { text-align: left; }

.footer-brand p {

  max-width: 22rem;

  margin: 0.45rem 0 0;

  font-family: var(--font-serif);

  font-style: italic;

  font-size: 0.98rem;

  line-height: 1.45;

  color: var(--text-dim);

}

.footer-nav span {

  display: block;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  font-size: 0.68rem;

  font-weight: 500;

  margin-bottom: 0.35rem;

  color: var(--purple);

}



@media (min-width: 900px) {

  .hero { min-height: calc(100vh - var(--header-h)); padding-top: 1.6rem; padding-bottom: 2rem; }

  .hero__grid { grid-template-columns: 0.92fr 1.08fr; gap: 3.5rem; }

  .stats__grid, .voices__grid { grid-template-columns: repeat(3, 1fr); }

  .editorial { grid-template-columns: 0.95fr 1.05fr; gap: 4.2rem; }

  .editorial--flip { grid-template-columns: 1.05fr 0.95fr; }

  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.4rem 4rem; }

}



@media (max-width: 899px) {

  .site-footer { padding: 1.45rem 0 0.85rem; }

  .footer-grid { gap: 1rem 1.4rem; }

  .site-footer .logo img { max-height: 56px; }

  .hero__visual { min-height: 360px; }

  .hero__chip { width: 112px; left: 4%; }

  .about__chip { width: 96px; right: 8px; bottom: 64px; }

  .editorial__card { left: 12px; }

  .mask-organic, .mask-organic--tall { height: 360px; }

  .mask-organic--soft { height: min(38vh, 320px); }

  .cta-band::after { background: linear-gradient(180deg, rgba(44,31,40,0.55), rgba(44,31,40,0.35)); }

}



@media (prefers-reduced-motion: reduce) {

  .offer__media img { transition: none; }

}
.subtype[id], #felnott-coaching { scroll-margin-top: calc(var(--header-h) + 22px); }

body.page-joga {
  background:
    radial-gradient(ellipse at 8% -10%, rgba(201,163,204,0.38), transparent 46%),
    radial-gradient(ellipse at 92% 18%, rgba(232,216,236,0.42), transparent 40%),
    #f8f1f7;
}
body.page-joga .page-top,
body.page-joga .section--cream {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201,163,204,0.28), transparent 48%),
    #f6eef5;
}
body.page-joga h1 em,
body.page-joga h2 em,
body.page-joga .eyebrow { color: var(--joga); }
body.page-joga .btn--primary {
  background: linear-gradient(135deg, #9b6b9e 0%, #7d5480 60%, #c9a3cc 140%);
  box-shadow: 0 10px 24px rgba(125, 84, 128, 0.2);
}

body.page-aid {
  background:
    radial-gradient(ellipse at 10% -8%, rgba(232,168,150,0.36), transparent 46%),
    radial-gradient(ellipse at 90% 16%, rgba(248,216,200,0.4), transparent 40%),
    #f8f2ee;
}
body.page-aid .page-top,
body.page-aid .section--lilac,
body.page-aid .section--cream {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(232,168,150,0.28), transparent 48%),
    #f7ece7;
}
body.page-aid h1 em,
body.page-aid h2 em,
body.page-aid .eyebrow,
body.page-aid .eyebrow--glow { color: var(--aid); }
body.page-aid .btn--primary {
  background: linear-gradient(135deg, #c47a68 0%, #a05a4d 60%, #e8a896 140%);
  box-shadow: 0 10px 24px rgba(160, 90, 77, 0.2);
}

body.page-coach {
  background:
    radial-gradient(ellipse at 8% -8%, rgba(155,200,180,0.38), transparent 46%),
    radial-gradient(ellipse at 92% 18%, rgba(200,237,230,0.4), transparent 40%),
    #f1f7f4;
}
body.page-coach .page-top,
body.page-coach .section--cream {
  background:
    radial-gradient(ellipse at 82% 0%, rgba(155,200,180,0.28), transparent 48%),
    #eaf4ef;
}
body.page-coach h1 em,
body.page-coach h2 em,
body.page-coach .eyebrow { color: var(--coach); }
body.page-coach .btn--primary {
  background: linear-gradient(135deg, #5a9a80 0%, #3f7a64 60%, #7aa894 140%);
  box-shadow: 0 10px 24px rgba(63, 122, 100, 0.2);
}

body.page-about {
  background:
    radial-gradient(ellipse at 10% -8%, rgba(248,216,200,0.42), transparent 46%),
    radial-gradient(ellipse at 90% 16%, rgba(245,200,200,0.28), transparent 40%),
    #f8f3ee;
}
body.page-about .page-top,
body.page-about .section--cream {
  background:
    radial-gradient(ellipse at 18% 0%, rgba(248,216,200,0.32), transparent 48%),
    #f6eee7;
}
body.page-about h1,
body.page-about h1 em,
body.page-about .eyebrow { color: #7a4a3a; }
body.page-about .btn--primary {
  background: linear-gradient(135deg, #c48c78 0%, #a06a58 60%, #f8d8c8 140%);
  box-shadow: 0 10px 24px rgba(160, 106, 88, 0.2);
}

body.page-contact {
  background:
    radial-gradient(ellipse at 8% -8%, rgba(0,168,197,0.18), transparent 46%),
    radial-gradient(ellipse at 92% 16%, rgba(142,221,232,0.32), transparent 40%),
    #f2f8f8;
}
body.page-contact .page-top,
body.page-contact .section--cream {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(0,168,197,0.14), transparent 48%),
    #eef6f6;
}
body.page-contact h1 em,
body.page-contact .eyebrow { color: var(--teal-deep); }

@media (max-width: 699px) {
  .logo img { max-height: 52px; max-width: min(150px, 42vw); }
  .site-nav { width: 100%; }
  .site-nav .nav-list { justify-content: flex-start; }
  .site-nav a { font-size: 0.78rem; padding: 0.34rem 0.52rem; }
  .nav-cta { padding: 0.36rem 0.72rem !important; }
}

.hero-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
}

.hero-page {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.95rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.72);
  color: #1A1D1C;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.hero-page:hover { transform: translateY(-2px); opacity: 0.88; }
.hero-page--joga:hover { background: rgba(232, 216, 236, 0.85); color: var(--joga); }
.hero-page--aid:hover { background: rgba(248, 220, 210, 0.9); color: var(--aid); }
.hero-page--coach:hover { background: rgba(214, 234, 226, 0.9); color: var(--coach); }

.gate-grid { display: grid; gap: 1.3rem; }
.gate {
  display: grid;
  gap: 0;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(44,31,40,0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(44,31,40,0.05);
}
.gate__media { height: 200px; overflow: hidden; }
.gate__media img { width: 100%; height: 100%; object-fit: cover; }
.gate__body { padding: 1.4rem 1.35rem 1.5rem; }
.gate__body h3 { margin: 0 0 0.65rem; font-size: 1.7rem; }
.gate__body p { color: var(--text-dim); }
.gate__list {
  margin: 0 0 1.2rem;
  padding: 0 0 0 1.1rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.gate__list li { margin: 0.25rem 0; }
.gate--joga { box-shadow: inset 3px 0 0 var(--joga-soft), 0 16px 40px rgba(44,31,40,0.05); }
.gate--aid { box-shadow: inset 3px 0 0 var(--aid-soft), 0 16px 40px rgba(44,31,40,0.05); }
.gate--coach { box-shadow: inset 3px 0 0 var(--coach-soft), 0 16px 40px rgba(44,31,40,0.05); }

.gate--coach .gate__media {
  height: 200px;
  background: #eaf4ef;
}

.gate--coach .gate__media img {
  object-fit: contain;
  object-position: center center;
}
.about__copy .cta-row { justify-content: flex-start; margin-top: 0.4rem; }

@media (min-width: 900px) {
  .gate-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .gate__media { height: 220px; }
}

.event {
  position: relative;
  padding: 4.6rem 0 4.2rem;
}

.page-home .event {
  padding-top: 2.1rem;
  background:
    radial-gradient(ellipse at 8% 0%, rgba(196, 122, 88, 0.16), transparent 42%),
    radial-gradient(ellipse at 92% 100%, rgba(201, 163, 120, 0.14), transparent 40%),
    #f6efe6;
}

.event__intro { max-width: 40rem; margin-bottom: 2rem; }
.event__intro h2 { margin: 0; }
.event__intro .eyebrow { color: #8a4f38; }
.event__intro em { color: #8a4f38; }

.event__layout {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.event__poster {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #efe4d4;
  box-shadow: 0 18px 44px rgba(90, 52, 36, 0.12);
  border: 1px solid rgba(138, 79, 56, 0.1);
}

.event__poster img {
  width: 100%;
  height: auto;
  display: block;
}

.event__copy .lead { margin-bottom: 0.85rem; }
.event__copy p { color: var(--text-dim); }

.event__meta {
  list-style: none;
  margin: 1.4rem 0 1.5rem;
  padding: 1rem 1.15rem;
  display: grid;
  gap: 0.85rem;
  border-radius: 18px;
  background: rgba(255, 248, 240, 0.8);
  border: 1px solid rgba(138, 79, 56, 0.1);
}

.event__meta li { display: grid; gap: 0.15rem; }
.event__meta span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a4f38;
}
.event__meta strong {
  font-weight: 500;
  color: #2C302E;
  line-height: 1.45;
}

@media (min-width: 900px) {
  .event__layout { grid-template-columns: 0.92fr 1.08fr; gap: 3rem; }
}

.aid-courses {
  display: grid;
  gap: 1.4rem;
}

.aid-course {
  padding: 1.7rem 1.5rem 1.8rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(160, 90, 77, 0.1);
  box-shadow: 0 16px 36px rgba(90, 52, 36, 0.05);
}

.aid-course h2 { margin: 0 0 0.55rem; }
.aid-course h3 {
  margin: 1.15rem 0 0.45rem;
  font-size: 1.15rem;
  color: var(--aid);
}
.aid-list {
  margin: 0 0 0.4rem;
  padding-left: 1.15rem;
  color: var(--text-dim);
}
.aid-list li { margin: 0.35rem 0; }
.aid-note {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 236, 228, 0.7);
  color: var(--text);
}
.aid-course .btn { margin-top: 0.6rem; }

@media (min-width: 900px) {
  .aid-courses { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Homepage hero  one glass panel, circular montage */
body.page-home {
  background:
    linear-gradient(125deg, #e0c3fc 0%, #fbc2eb 38%, #c2e9fb 72%, #d4f4ee 100%) top / 100% 110vh no-repeat,
    #f6efe6;
}

.page-home .site-header:not(.is-scrolled) {
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}

.page-home .hero {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--header-h) * -1);
  min-height: 0;
  padding: calc(var(--header-h) + 1.1rem) 0 1.25rem;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(224, 195, 252, 0.95), transparent 42%),
    radial-gradient(ellipse at 52% 8%, rgba(251, 194, 235, 0.88), transparent 40%),
    radial-gradient(ellipse at 88% 62%, rgba(161, 196, 253, 0.78), transparent 46%),
    linear-gradient(125deg, #e0c3fc 0%, #fbc2eb 38%, #c2e9fb 72%, #d4f4ee 100%);
}

.page-home .hero__orb,
.page-home .hero__wash { display: none; }

.hero-wrap {
  width: min(calc(100% - 2rem), 1200px);
}

.hero-shell {
  position: relative;
  display: grid;
  gap: 1.6rem;
  align-items: center;
  padding: 1.7rem 1.4rem 1.6rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 70px rgba(80, 50, 90, 0.12);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.hero-shell__copy {
  text-align: left;
  min-width: 0;
}

.page-home .hero-shell .hero__logo {
  width: min(148px, 42vw);
  margin: 0 0 1.05rem;
  filter: none;
  animation: none;
}

.page-home .hero h1.hero-card__lead {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: 0;
  color: #2C302E;
}

.hero-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0.95rem 0.7rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(80, 50, 90, 0.04);
}

.hero-feat {
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  padding: 0.15rem 0.2rem;
  text-decoration: none;
  color: #2C302E;
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-feat:hover {
  background: rgba(246, 240, 250, 0.9);
  transform: translateY(-2px);
}

.hero-feat strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-feat small {
  display: block;
  max-width: 9.4rem;
  font-size: 0.7rem;
  line-height: 1.35;
  color: #66706c;
  text-align: center;
}

.hero-feat__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}

.hero-feat__icon svg,
.hero-feat__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.hero-feat--joga strong { color: #00A8C5; }

.hero-shell .cta-row {
  justify-content: flex-start;
}

.hero-shell .btn--primary {
  background: linear-gradient(135deg, #1aa4b6 0%, #0f7f8e 70%);
  box-shadow: 0 12px 28px rgba(15, 127, 142, 0.22);
}

.hero-shell .btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(44, 48, 46, 0.08);
}

.hero-shell__visual {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0.4rem 0.2rem 1.4rem;
}

.hero-circle {
  margin: 0;
  overflow: hidden;
}

.hero-circle img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.hero-circle--main img { object-position: center 70%; }
.hero-circle--mini img { object-position: center 42%; }

.hero-circle--main {
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 24px 50px rgba(60, 30, 50, 0.16);
}

.hero-float {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 92%;
}

.hero-circle--mini {
  flex: 0 0 auto;
  width: 92px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 28px rgba(60, 30, 50, 0.14);
}

.hero-caption {
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(60, 30, 50, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-caption strong {
  display: block;
  margin-bottom: 0.12rem;
  font-size: 0.88rem;
  color: #2C302E;
}

.hero-caption p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.4;
  color: #5c615f;
}

@media (min-width: 900px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 1.6rem 2rem;
    padding: 2.15rem 2rem 2.05rem 2.4rem;
    min-height: 540px;
  }

  .hero-shell__visual {
    padding: 0.2rem 0.4rem 0.6rem;
  }

  .hero-circle--main {
    width: min(100%, 460px);
  }

  .hero-circle--mini { width: 104px; }

  .hero-float {
    right: 0.2rem;
    bottom: 1.1rem;
  }
}

@media (max-width: 699px) {
  .page-home .hero {
    padding-top: calc(var(--header-h) + 0.7rem);
    padding-bottom: 1rem;
    min-height: auto;
  }

  .page-home .event { padding-top: 1.6rem; }

  .hero-shell {
    padding: 1.25rem 1rem 1.2rem;
    border-radius: 28px;
  }

  .hero-feats {
    gap: 0.2rem;
    padding: 0.8rem 0.4rem 0.85rem;
  }

  .hero-feat small { font-size: 0.64rem; }

  .hero-shell .btn { min-height: 46px; padding: 0.7rem 1.15rem; }

  .hero-circle--mini { width: 76px; }

  .hero-caption { padding: 0.55rem 0.7rem; }
}

.calendar-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3rem 0 3.4rem;
  background: #efe8ee;
}

.calendar-section::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 14% 22%, rgba(210, 186, 224, 0.7), transparent 46%),
    radial-gradient(ellipse at 52% 8%, rgba(232, 198, 214, 0.55), transparent 42%),
    radial-gradient(ellipse at 88% 68%, rgba(176, 206, 214, 0.55), transparent 48%),
    linear-gradient(125deg, #e6dce8 0%, #efe4ea 42%, #e4ecec 100%);
  filter: blur(46px) saturate(0.62) brightness(1.06);
  transform: scale(1.05);
  pointer-events: none;
}

.calendar-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.28), rgba(255, 252, 248, 0.46)),
    rgba(246, 241, 244, 0.22);
  pointer-events: none;
}

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

.calendar-intro {
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.calendar-intro h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
}

.calendar-intro .lead {
  margin: 0;
  font-size: 0.95rem;
  color: #2C302E;
}

.calendar-intro em { color: #7d5480; }

.cal {
  display: grid;
  gap: 0.9rem;
  align-items: stretch;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 1rem 0.95rem 1.05rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(80, 50, 90, 0.1);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.cal__board,
.cal__panel {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(80, 50, 90, 0.05);
}

.cal__board { padding: 0.85rem 0.8rem 0.8rem; }

.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.cal__head h3 {
  margin: 0;
  font-size: 1.25rem;
  text-transform: capitalize;
}

.cal__nav {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.cal__nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(80, 50, 90, 0.1);
}

.cal__weekdays,
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.22rem;
}

.cal__weekdays {
  margin-bottom: 0.3rem;
  color: #66706c;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.cal-day {
  position: relative;
  min-height: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0 0 0.45rem;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  color: #2C302E;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cal-day--pad {
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.cal-day:hover:not(.cal-day--pad) {
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.cal-day.is-today .cal-day__num {
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1aa4b6, #0f7f8e);
  color: #fff;
  font-weight: 600;
}

.cal-day.is-selected {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(80, 50, 90, 0.12);
}

.cal-day.is-event--joga { background: rgba(201, 163, 204, 0.34); }
.cal-day.is-event--aid { background: rgba(232, 168, 150, 0.34); }
.cal-day.is-event--coach { background: rgba(155, 200, 180, 0.34); }

.cal-day__dots {
  position: absolute;
  left: 50%;
  bottom: 0.16rem;
  display: flex;
  gap: 0.12rem;
  transform: translateX(-50%);
}

.cal-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--joga);
}

.cal-dot--joga { background: var(--joga); }
.cal-dot--aid { background: var(--aid); }
.cal-dot--coach { background: var(--coach); }

.cal__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  margin: 0.7rem 0 0;
  padding: 0.65rem 0.1rem 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  color: #5c615f;
  font-size: 0.72rem;
}

.cal__legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.cal__panel { padding: 0.95rem 0.95rem 1rem; }

.cal__panel .eyebrow {
  margin-bottom: 0.6rem;
  font-size: 0.68rem;
}

.cal-empty {
  margin: 0;
  font-size: 0.88rem;
  color: #5c615f;
}

.cal-item {
  padding: 0.75rem 0.8rem 0.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.cal-item + .cal-item { margin-top: 0.6rem; }

.cal-item--joga { box-shadow: inset 3px 0 0 var(--joga-soft); }
.cal-item--aid { box-shadow: inset 3px 0 0 var(--aid-soft); }
.cal-item--coach { box-shadow: inset 3px 0 0 var(--coach-soft); }

.cal-item__when,
.cal-item__type {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #66706c;
}

.cal-item h4 {
  margin: 0.15rem 0 0.3rem;
  font-size: 1.15rem;
}

.cal-item__place,
.cal-item__note {
  margin: 0 0 0.25rem;
  color: #5c615f;
  font-size: 0.82rem;
  line-height: 1.4;
}

.cal-item .btn {
  margin-top: 0.35rem;
  min-height: 38px;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

@media (min-width: 800px) {
  .cal {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.78fr);
    gap: 0.9rem;
    padding: 1.1rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html.is-preview-locked,
html.is-preview-locked body {
  overflow: hidden;
}

html.is-preview-locked body > *:not(.preview-gate) {
  filter: blur(14px);
  pointer-events: none;
  user-select: none;
}

.preview-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(224, 195, 252, 0.55), transparent 42%),
    radial-gradient(ellipse at 88% 62%, rgba(161, 196, 253, 0.45), transparent 46%),
    rgba(244, 236, 246, 0.42);
}

.preview-gate__card {
  width: min(100%, 420px);
  padding: 1.7rem 1.5rem 1.45rem;
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 60px rgba(80, 50, 90, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.preview-gate__card h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}

.preview-gate__card p {
  margin: 0 0 1rem;
  color: #5c615f;
}

.preview-gate__form {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
}

.preview-gate__form input {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 31, 40, 0.1);
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
  text-align: center;
}

.preview-gate__error {
  margin: 0 0 0.7rem;
  color: #a05a4d;
  font-size: 0.9rem;
}

.preview-gate__actions {
  display: flex;
  justify-content: center;
}

a.is-preview-locked-link {
  position: relative;
}

a.is-preview-locked-link::after {
  content: "";
  display: inline-block;
  width: 0.55em;
  height: 0.7em;
  margin-left: 0.35em;
  vertical-align: -0.05em;
  border: 1.5px solid currentColor;
  border-radius: 3px 3px 2px 2px;
  opacity: 0.45;
  box-shadow: 0 -0.28em 0 -0.12em currentColor;
}

.social-section {
  padding: 3.4rem 0 3.6rem;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(201, 163, 204, 0.16), transparent 46%),
    radial-gradient(ellipse at 90% 100%, rgba(0, 168, 197, 0.08), transparent 42%),
    #f7f2f4;
}

.social-intro {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.social-intro h2 { margin: 0 0 0.5rem; }
.social-intro .lead { margin: 0; color: var(--text-dim); }
.social-intro em { color: var(--joga); }

.social-grid {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 720px);
  margin: 0 auto;
}

.social-card {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  padding: 1.35rem 1.2rem 1.3rem;
  text-align: center;
  text-decoration: none;
  color: #2C302E;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(80, 50, 90, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(80, 50, 90, 0.1);
  color: #2C302E;
}

.social-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.social-card__icon svg { width: 26px; height: 26px; }

.social-card--ig { color: #7d5480; }
.social-card--ig strong,
.social-card--ig .social-card__label { color: #2C302E; }
.social-card--ig .social-card__icon { color: #7d5480; }

.social-card--fb .social-card__icon { color: #0f7f8e; }

.social-card__label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #66706c;
}

.social-card strong {
  font-size: 1.2rem;
  font-weight: 600;
}

.social-card small {
  color: #5c615f;
  font-size: 0.86rem;
}

@media (min-width: 700px) {
  .social-grid { grid-template-columns: 1fr 1fr; }
}
