/* ============================================
   Spielgruppe im Licht der Farben
   Color-rich, warm, Steiner-inspired design
   ============================================ */

:root {
  /* Warm watercolor palette inspired by Steiner color theory */
  --color-sun:        #F5C347;
  --color-sun-light:  #fef3d6;
  --color-rose:       #E07A7A;
  --color-rose-light: #fce8e8;
  --color-sky:        #7BAFD4;
  --color-sky-light:  #e3f0f9;
  --color-leaf:       #8CB86B;
  --color-leaf-light: #eaf4e2;
  --color-lavender:   #B28DC7;
  --color-lavender-light: #f1e8f6;
  --color-earth:      #C4A46C;
  --color-cream:      #FDF8EF;
  --color-warm-white: #FFFDF7;
  --color-text:       #4A3F35;
  --color-text-light: #7A6F63;

  --font-body:    'Nunito', 'Segoe UI', sans-serif;
  --font-heading: 'Baloo 2', 'Comic Neue', cursive;

  --max-width: 960px;
  --spacing:   2rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-warm-white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-rose);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-lavender);
}

/* ---------- Layout ---------- */

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

/* ---------- Header / Navigation ---------- */

header {
  background: linear-gradient(135deg, var(--color-sun) 0%, var(--color-rose) 50%, var(--color-lavender) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.home header {
  background: linear-gradient(135deg, rgba(245,195,71,0.65), rgba(224,122,122,0.58), rgba(178,141,199,0.58));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.home header.header-solid {
  background: linear-gradient(135deg, var(--color-sun) 0%, var(--color-rose) 50%, var(--color-lavender) 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
  text-decoration: none;
}
.site-title:hover {
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, opacity 0.3s;
}
nav a:hover,
nav a.active {
  border-bottom-color: #fff;
  color: #fff;
}

/* ---------- Hero (subpages) ---------- */

.hero {
  background: linear-gradient(170deg, var(--color-cream) 0%, #fce8d5 100%);
  text-align: center;
  padding: 4rem var(--spacing) 3rem;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-rose);
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.hero .cta {
  display: inline-block;
  background: var(--color-sun);
  color: var(--color-text);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 12px rgba(245,195,71,0.4);
}
.hero .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,195,71,0.5);
  color: var(--color-text);
}

/* ========================================
   HOMEPAGE HERO
   ======================================== */

.hero-home {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 600px 400px at 50% 60%, rgba(255,248,235,0.9), transparent),
    linear-gradient(160deg, #fff8ef 0%, #fce8d5 30%, #f8d4d0 60%, #ede0f5 100%);
  overflow: hidden;
  padding: 4rem var(--spacing) 4rem;
}

.hero-home__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-home__tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-home__title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero-home__title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-home__title-line--accent {
  background: linear-gradient(135deg, var(--color-sun), var(--color-rose), var(--color-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.55s;
}

.hero-home__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

/* Keyword pills */
.hero-home__keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.85s;
}

.keyword-pill {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--color-text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.keyword-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Glowing CTA button */
.btn-glow {
  display: inline-block;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  background: linear-gradient(135deg, var(--color-sun), #f7d06b);
  box-shadow: 0 4px 24px rgba(245,195,71,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1s;
}
.btn-glow:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(245,195,71,0.5);
  color: var(--color-text);
}

/* Scroll-down indicator */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.3s;
}

.scroll-hint__text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.scroll-hint__arrow {
  width: 24px;
  height: 24px;
  border-left: 2px solid var(--color-text-light);
  border-bottom: 2px solid var(--color-text-light);
  transform: rotate(-45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(-45deg) translate(0, 0); opacity: 0.6; }
  50%      { transform: rotate(-45deg) translate(5px, 5px); opacity: 1; }
}

/* Floating watercolor orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}

.orb-1 {
  width: 340px; height: 340px;
  background: var(--color-sun);
  top: -80px; left: -60px;
  animation: orbFloat1 14s ease-in-out infinite;
}
.orb-2 {
  width: 260px; height: 260px;
  background: var(--color-rose);
  top: 30%; right: -80px;
  animation: orbFloat2 18s ease-in-out infinite;
}
.orb-3 {
  width: 200px; height: 200px;
  background: var(--color-sky);
  bottom: 10%; left: 10%;
  animation: orbFloat3 16s ease-in-out infinite;
}
.orb-4 {
  width: 180px; height: 180px;
  background: var(--color-lavender);
  top: 20%; left: 50%;
  opacity: 0.3;
  animation: orbFloat1 20s ease-in-out infinite reverse;
}
.orb-5 {
  width: 140px; height: 140px;
  background: var(--color-leaf);
  bottom: 25%; right: 15%;
  opacity: 0.35;
  animation: orbFloat2 22s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.05); }
  66%      { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-35px, 25px) scale(1.08); }
  66%      { transform: translate(25px, -30px) scale(0.92); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(40px, -20px); }
}

/* Playful floating doodles */
.hero-doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: doodleIn 1s ease forwards, doodleDrift 12s ease-in-out infinite;
}

.hero-doodle--star {
  width: 52px; height: 52px;
  top: 15%; left: 8%;
  animation-delay: 0.3s, 0.3s;
  --drift-x: 12px; --drift-y: -18px; --drift-rotate: 15deg;
}
.hero-doodle--heart {
  width: 44px; height: 44px;
  top: 22%; right: 10%;
  animation-delay: 0.6s, 0.6s;
  --drift-x: -10px; --drift-y: 14px; --drift-rotate: -10deg;
}
.hero-doodle--circle {
  width: 40px; height: 40px;
  bottom: 28%; left: 12%;
  animation-delay: 0.9s, 0.9s;
  --drift-x: 8px; --drift-y: 10px; --drift-rotate: 0deg;
}
.hero-doodle--spiral {
  width: 48px; height: 48px;
  bottom: 18%; right: 8%;
  animation-delay: 1.1s, 1.1s;
  --drift-x: -14px; --drift-y: -8px; --drift-rotate: 20deg;
}
.hero-doodle--leaf {
  width: 46px; height: 46px;
  top: 55%; left: 5%;
  animation-delay: 0.5s, 0.5s;
  --drift-x: 10px; --drift-y: -12px; --drift-rotate: -8deg;
}

@keyframes doodleIn {
  from { opacity: 0; transform: scale(0.5) rotate(-20deg); }
  to   { opacity: 0.7; transform: scale(1) rotate(0deg); }
}

@keyframes doodleDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(var(--drift-x), var(--drift-y)) rotate(var(--drift-rotate)); }
  75%      { transform: translate(calc(var(--drift-x) * -0.6), calc(var(--drift-y) * -0.5)) rotate(calc(var(--drift-rotate) * -0.5)); }
}

/* Keyword pill color tints */
.keyword-pill:nth-child(1) {
  border-color: rgba(245,195,71,0.4);
  background: rgba(245,195,71,0.15);
}
.keyword-pill:nth-child(2) {
  border-color: rgba(224,122,122,0.35);
  background: rgba(224,122,122,0.12);
}
.keyword-pill:nth-child(3) {
  border-color: rgba(140,184,107,0.4);
  background: rgba(140,184,107,0.12);
}
.keyword-pill:nth-child(4) {
  border-color: rgba(178,141,199,0.4);
  background: rgba(178,141,199,0.12);
}

/* Wave divider at hero bottom */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

/* Hero entrance animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   SCROLL REVEAL SYSTEM
   ======================================== */

.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.reveal-up    { transform: translateY(40px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========================================
   WELCOME SECTION
   ======================================== */

.section-welcome {
  padding: 5rem 0 4rem;
  background: var(--color-warm-white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.welcome-text .section-title--left {
  text-align: left;
}
.welcome-text .section-title--left::after {
  margin: 0.6rem 0 0;
}

/* Image with decorative offset accent */
.image-frame {
  position: relative;
  display: inline-block;
}

.image-frame img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  height: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.image-frame:hover img {
  transform: scale(1.02);
}

.image-frame__accent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 16px;
  left: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-sun-light), var(--color-lavender-light));
  z-index: 1;
  transition: transform 0.4s ease;
}
.image-frame:hover .image-frame__accent {
  transform: translate(4px, 4px);
}

/* ========================================
   FEATURE CARDS
   ======================================== */

.section-features {
  padding: 5rem 0;
  background: var(--color-cream);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.feature-card {
  --accent: var(--color-sun);
  background:
    radial-gradient(ellipse 140px 100px at 95% 90%, color-mix(in srgb, var(--accent) 10%, transparent), transparent),
    #fff;
  border-radius: 24px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
  border: 1.5px solid color-mix(in srgb, var(--accent) 18%, transparent);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 40%, white));
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.06;
  filter: blur(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.06),
    0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  opacity: 0.12;
  transform: scale(1.4);
}

.feature-card__icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: color-mix(in srgb, var(--accent) 12%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feature-card:hover .feature-card__icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 20%, transparent);
}

.feature-card__icon {
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ========================================
   PRISCA / PROFILE SECTION
   ======================================== */

.section-prisca {
  padding: 5rem 0;
  background: var(--color-warm-white);
  position: relative;
}

.prisca-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

.prisca-image__frame {
  position: relative;
  display: inline-block;
}

.prisca-image__frame img {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 140px 140px 24px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}
.prisca-image__frame:hover img {
  transform: scale(1.02);
}

.prisca-image__ring {
  position: absolute;
  z-index: 1;
  width: 296px;
  height: 376px;
  top: -8px;
  left: -8px;
  border-radius: 148px 148px 32px 32px;
  border: 3px solid var(--color-lavender);
  opacity: 0.4;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.prisca-image__frame:hover .prisca-image__ring {
  opacity: 0.7;
  transform: translate(-3px, -3px);
}

.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-lavender);
  background: var(--color-lavender-light);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.prisca-text h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.prisca-text__lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-rose);
  transition: gap 0.3s ease, color 0.3s ease;
}
.cta-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}
.cta-arrow:hover {
  color: var(--color-lavender);
}
.cta-arrow:hover::after {
  transform: translateX(4px);
}

/* ========================================
   GLANCE / AT-A-GLANCE SECTION
   ======================================== */

.section-glance {
  padding: 5rem 0;
  background: var(--color-cream);
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.glance-item {
  --glance-color: var(--color-sun);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  background:
    radial-gradient(ellipse 80px 60px at 100% 50%, color-mix(in srgb, var(--glance-color) 6%, transparent), transparent),
    #fff;
  border-radius: 18px;
  border: 1.5px solid color-mix(in srgb, var(--glance-color) 12%, transparent);
  border-left: 4px solid var(--glance-color);
  box-shadow: 0 2px 16px rgba(0,0,0,0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.glance-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  border-color: color-mix(in srgb, var(--glance-color) 30%, transparent);
  border-left-color: var(--glance-color);
}

.glance-item__icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--glance-color) 12%, white);
  border: 1px solid color-mix(in srgb, var(--glance-color) 15%, transparent);
  transition: transform 0.3s ease;
}

.glance-item:hover .glance-item__icon {
  transform: scale(1.08);
}

.glance-item__text {
  display: flex;
  flex-direction: column;
}

.glance-item__text strong {
  font-size: 1rem;
  line-height: 1.3;
}

.glance-item__text span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ========================================
   PARALLAX IMAGE BAND
   ======================================== */

.section-band {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.band-image {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  object-fit: cover;
  transition: transform 0.1s linear;
}

.band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(74,63,53,0.75) 0%,
    rgba(74,63,53,0.45) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.band-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #fff;
  max-width: 600px;
  text-align: center;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* ========================================
   CTA SECTION
   ======================================== */

.section-cta {
  position: relative;
  padding: 5rem var(--spacing);
  text-align: center;
  background: linear-gradient(170deg, var(--color-warm-white) 0%, #fce8d5 50%, var(--color-lavender-light) 100%);
  overflow: hidden;
}

.section-cta h2 {
  font-size: 2rem;
}

.section-cta p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.section-cta .btn-glow {
  opacity: 1;
  animation: none;
}

.orb-cta-1 {
  width: 200px; height: 200px;
  background: var(--color-sun);
  top: -40px; right: -40px;
  opacity: 0.25;
  animation: orbFloat1 16s ease-in-out infinite;
}

.orb-cta-2 {
  width: 160px; height: 160px;
  background: var(--color-lavender);
  bottom: -30px; left: -30px;
  opacity: 0.2;
  animation: orbFloat2 18s ease-in-out infinite;
}

/* ---------- Sections (subpages) ---------- */

section {
  padding: 3rem 0;
}

section:nth-child(even) {
  background-color: var(--color-cream);
}

/* Override alternating bg for homepage sections that set their own bg */
.home section { background-color: transparent; }
.home .section-welcome   { background: var(--color-warm-white); }
.home .section-features  { background: var(--color-cream); }
.home .section-prisca    { background: var(--color-warm-white); }
.home .section-glance    { background: var(--color-cream); }

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-sun);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

/* ---------- Card Grid (subpages) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* ---------- Pricing Cards ---------- */

.pricing-card {
  text-align: center;
  border-top: 4px solid var(--color-sun);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--color-rose);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  color: var(--color-text-light);
}

.price-amount {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
}

/* ---------- Info Box ---------- */

.info-box {
  background: var(--color-cream);
  border-left: 4px solid var(--color-sun);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* ---------- Info Sections ---------- */

.info-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-section h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

/* ---------- Text Highlight ---------- */

.text-highlight {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-left: 4px solid var(--color-lavender);
}

/* ---------- Info List ---------- */

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.info-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.info-list li::before {
  content: '•';
  color: var(--color-rose);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ---------- CTA Link ---------- */

.cta-link {
  font-weight: 700;
  color: var(--color-rose);
  transition: color 0.2s;
}

.cta-link:hover {
  color: var(--color-lavender);
}

/* ---------- Color Circles Decoration ---------- */

.color-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.color-dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
}
.color-dots .dot-sun      { background: var(--color-sun); }
.color-dots .dot-rose     { background: var(--color-rose); }
.color-dots .dot-sky      { background: var(--color-sky); }
.color-dots .dot-leaf     { background: var(--color-leaf); }
.color-dots .dot-lavender { background: var(--color-lavender); }

/* ---------- Footer ---------- */

footer {
  margin-top: auto;
  background: var(--color-text);
  color: var(--color-cream);
  text-align: center;
  padding: 2rem var(--spacing);
  font-size: 0.9rem;
}

footer a {
  color: var(--color-sun);
}

/* ---------- Two-Column Layout ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.two-col-image {
  display: flex;
  justify-content: center;
}

/* ---------- Rounded Image ---------- */

.rounded-image {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ---------- Profile Section ---------- */

.profile-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.profile-image {
  display: flex;
  justify-content: center;
}

.profile-image .rounded-image {
  width: 280px;
  height: 340px;
  object-fit: cover;
  object-position: center top;
}

/* ---------- Hero Keywords ---------- */

.hero-keywords {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* ---------- Schedule ---------- */

.schedule {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.schedule-item {
  display: grid;
  grid-template-columns: 50px 30px 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-rose);
  font-variant-numeric: tabular-nums;
}

.schedule-icon {
  font-size: 1.1rem;
  text-align: center;
}

.schedule-desc {
  font-size: 0.95rem;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  columns: 2;
  column-gap: 1.2rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-cream);
  box-shadow: 0 2px 16px rgba(74, 63, 53, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(74, 63, 53, 0.15);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ========================================
   PAGE HERO (subpages)
   ======================================== */

.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 500px 350px at 50% 70%, rgba(255,248,235,0.8), transparent),
    linear-gradient(160deg, #fff8ef 0%, #fce8d5 40%, #f8d4d0 70%, #ede0f5 100%);
  text-align: center;
  padding: 5.5rem var(--spacing) 5rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 400px 300px at 20% 30%, rgba(245,195,71,0.15), transparent),
    radial-gradient(ellipse 300px 250px at 80% 60%, rgba(178,141,199,0.12), transparent);
}

/* Subpage hero doodle pair */
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  animation: doodleDriftSub 10s ease-in-out infinite;
}

.page-hero::before {
  top: 20%;
  left: 8%;
  border-radius: 50%;
  border: 2px dashed var(--color-sun);
  animation-delay: 0s;
}

.page-hero::after {
  bottom: 25%;
  right: 8%;
  border: 2px solid var(--color-rose);
  border-radius: 8px;
  transform: rotate(15deg);
  animation-delay: -4s;
}

@keyframes doodleDriftSub {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(8px, -10px) rotate(12deg); }
}

.page-hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.page-hero__subtitle {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 480px;
  margin: 0 auto;
}

.page-hero .wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
}

/* ========================================
   NOTICE BANNER (prominent site-wide notices)
   ======================================== */

.notice-banner {
  background: linear-gradient(135deg, rgba(254,243,214,0.85), rgba(252,232,232,0.85));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  border-bottom: 2px solid rgba(245,195,71,0.3);
  margin-top: -1px;
}

.notice-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.notice-banner__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1 1 280px;
  max-width: 420px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(245,195,71,0.25);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.notice-banner__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.notice-banner__item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ========================================
   CALLOUT BOX (info highlight)
   ======================================== */

.callout-box {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.8rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border-left: 4px solid var(--color-sun);
}

.callout-box__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.callout-box p:last-child {
  margin-bottom: 0;
}

/* ========================================
   PHILOSOPHY BOX
   ======================================== */

.philosophy-box {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-left: 4px solid var(--color-lavender);
  position: relative;
}

.philosophy-box p:last-child {
  margin-bottom: 0;
}

/* ========================================
   MODERN SCHEDULE TIMELINE
   ======================================== */

.schedule-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.schedule-modern {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  position: relative;
}

.schedule-modern::before {
  content: '';
  position: absolute;
  left: calc(2rem + 50px + 1rem + 6px - 1px);
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-sun), var(--color-rose), var(--color-lavender));
  border-radius: 1px;
}

.schedule-modern__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
}

.schedule-modern__time {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-light);
  width: 50px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.schedule-modern__dot {
  --dot-color: var(--color-sun);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dot-color);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 3px #fff;
}

.schedule-modern__content {
  font-size: 0.95rem;
}

.schedule-modern__content strong {
  font-weight: 600;
}

/* ========================================
   MODERN PRICING
   ======================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-modern {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.pricing-modern__header {
  --accent: var(--color-sun);
  padding: 1.2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, white));
}

.pricing-modern__frequency {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.pricing-modern__body {
  padding: 1.4rem;
}

.pricing-modern__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-modern__row:last-child {
  border-bottom: none;
}

.pricing-modern__row span {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.pricing-modern__row strong {
  font-size: 1.1rem;
}

/* ========================================
   INFO ACCORDION (details/summary)
   ======================================== */

.info-accordion {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-detail {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.info-detail[open] {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.info-detail summary {
  padding: 1.2rem 1.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: background 0.2s ease;
  list-style: none;
}

.info-detail summary::-webkit-details-marker {
  display: none;
}

.info-detail summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
}

.info-detail[open] summary::after {
  content: '−';
}

.info-detail summary:hover {
  background: var(--color-cream);
}

.info-detail__icon {
  font-size: 1.2rem;
}

.info-detail__body {
  padding: 0 1.6rem 1.4rem;
  color: var(--color-text-light);
}

.info-detail__body p:last-child {
  margin-bottom: 0;
}

/* ========================================
   CONTACT CARDS
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: var(--color-text);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  color: var(--color-text);
}

.contact-card__icon {
  font-size: 2.2rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: 20px;
  margin-bottom: 0.3rem;
}

.contact-card strong {
  font-size: 1.1rem;
}

.contact-card__detail {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ========================================
   STEP CARDS (registration flow)
   ======================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.step-card__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sun), var(--color-rose));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ========================================
   UTILITY
   ======================================== */

.text-center {
  text-align: center;
}

/* ---------- Responsive ---------- */
/* Mobile & responsive styles are in mobile.css */
