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

:root {
  --bg: #fff8f3;
  --surface: rgba(255,255,255,0.88);
  --surface-strong: rgba(255,255,255,0.95);
  --text: #26142c;
  --muted: #5d4f62;
  --accent: #ff3d8f;
  --accent-2: #ff8c3d;
  --accent-3: #ffd760;
  --line: rgba(38,20,44,0.10);
  --shadow: 0 24px 70px rgba(128, 38, 92, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1160px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(255,215,96,0.26), transparent 26%),
    radial-gradient(circle at top right, rgba(255,61,143,0.16), transparent 22%),
    linear-gradient(135deg, #fff7e9 0%, #fff6f8 52%, #fff9f4 100%);
}
img, video { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 40; backdrop-filter: blur(14px);
  background: rgba(255,248,244,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.nav {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  text-decoration: none; color: var(--text);
  font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links a {
  text-decoration: none; color: var(--text); font-weight: 600;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-links a:hover { transform: translateY(-1px); opacity: .9; }
.nav-cta {
  padding: 0.82rem 1.1rem; border-radius: 999px; color: white !important;
  background: linear-gradient(135deg, #2a1830, #55255d); box-shadow: var(--shadow);
}
.menu-toggle { display: none; font-size: 1.55rem; background: transparent; border: 0; cursor: pointer; }

.hero {
  position: relative; overflow: hidden; padding: 5rem 0 2.5rem;
}
.floating.sparkle {
  position: absolute; border-radius: 50%; filter: blur(18px); opacity: .45; pointer-events: none;
  animation: floaty 7s ease-in-out infinite;
}
.sparkle.one { width: 180px; height: 180px; left: 3%; top: 12%; background: rgba(255,215,96,.55); }
.sparkle.two { width: 220px; height: 220px; right: 6%; top: 6%; background: rgba(255,61,143,.22); animation-delay: 1s; }
.sparkle.three { width: 140px; height: 140px; right: 14%; bottom: 8%; background: rgba(255,140,61,.25); animation-delay: 2s; }

.hero-grid, .split, .split-about, .contact-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}

.eyebrow, .section-label, .kicker, .mini-kicker {
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 800; color: #d6417f;
}
.hero h1, .section h2 {
  font-family: 'Playfair Display', serif; line-height: 1.02; margin: .4rem 0 1rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 11ch;
  min-height: 3.2em;
}
.rotating-out { opacity: 0; transform: translateY(10px); }
.rotating-in { opacity: 1; transform: translateY(0); }
#rotating-text {
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
}
.subhead { max-width: 58ch; color: var(--muted); font-size: 1.08rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.6rem 0 1.35rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  padding: 1rem 1.45rem; border-radius: 999px; font-weight: 800; border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(128, 38, 92, 0.18); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--accent), #ff6b6b); }
.btn-secondary { color: var(--text); background: rgba(255,255,255,.72); border-color: var(--line); }

.hero-highlights, .quick-strip-inner {
  display: flex; flex-wrap: wrap; gap: .9rem;
}
.highlight-pill {
  display: grid; gap: .15rem; min-width: 180px; padding: .95rem 1rem; border-radius: 20px;
  background: rgba(255,255,255,.74); border: 1px solid rgba(38,20,44,0.08); box-shadow: 0 10px 24px rgba(128,38,92,.06);
}
.highlight-pill strong { font-size: 1rem; }
.highlight-pill span { font-size: .92rem; color: var(--muted); }

.hero-visual, .founder-card, .card, .media-card, .gallery-card, .contact-form, .feedback-collage, .testimonial-carousel {
  background: var(--surface); border: 1px solid rgba(255,255,255,.72); box-shadow: var(--shadow); border-radius: var(--radius);
}
.hero-visual { overflow: hidden; position: relative; }
.hero-visual img { width: 100%; height: 290px; object-fit: cover; }
.hero-card { padding: 1.4rem; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,247,251,.92)); }
.mini-points { display: flex; flex-wrap: wrap; gap: .7rem; }
.mini-points span, .quick-strip-inner span {
  padding: .68rem .98rem; border-radius: 999px; background: rgba(255,255,255,.78);
  border: 1px solid rgba(38,20,44,0.08); font-weight: 600;
}

.quick-strip { padding: 1rem 0 1.25rem; }
.quick-strip-inner { justify-content: center; }
.section { padding: 4.6rem 0; }
.alt { background: linear-gradient(180deg, rgba(255,239,245,.6), rgba(255,255,255,.08)); }
.section-head { margin-bottom: 1.7rem; }
.center { text-align: center; }
.text-block p { color: var(--muted); }

.founder-card, .media-card, .gallery-card, .feedback-collage { overflow: hidden; }
.founder-card img, .media-card img, .gallery-card img, .feedback-collage img { width: 100%; height: 100%; object-fit: cover; }
.media-card video { width: 100%; border-radius: var(--radius); background: #000; }

.card-grid { display: grid; gap: 1.2rem; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card { padding: 1.5rem; }
.card p, .bullet-list, .reviewer { color: var(--muted); }
.bullet-list { padding-left: 1.2rem; }

.gallery-clean { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 1.2rem; }
.gallery-card { margin: 0; }
.gallery-card img { height: 300px; }
.gallery-card figcaption { padding: .95rem 1rem 1.05rem; font-weight: 600; color: var(--muted); }

.review-stats {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 0 0 1.5rem;
}
.review-stats div {
  min-width: 190px; padding: 1rem 1.1rem; text-align: center; background: rgba(255,255,255,.74);
  border: 1px solid rgba(38,20,44,0.08); border-radius: 20px; box-shadow: 0 10px 24px rgba(128,38,92,.06);
}
.review-stats strong { display: block; font-size: 1.3rem; color: var(--text); }

.testimonial-carousel {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.testimonial-track {
  position: relative;
  min-height: 220px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .4s ease, transform .4s ease;
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}
.testimonial-slide p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
}
.reviewer {
  display: inline-block;
  margin-top: .9rem;
  font-weight: 700;
}
.carousel-btn {
  height: 48px; width: 48px; border-radius: 999px;
  border: 1px solid rgba(38,20,44,0.1);
  background: rgba(255,255,255,0.9);
  font-size: 2rem; line-height: 1; cursor: pointer;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease;
}
.carousel-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(128,38,92,.12); }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1rem;
}
.testimonial-dots button {
  height: 10px; width: 10px; border-radius: 50%;
  border: 0; background: rgba(38,20,44,.18); cursor: pointer;
}
.testimonial-dots button.active { background: var(--accent); }

.feedback-collage { margin-top: 1.2rem; }
.feedback-collage img { max-height: 580px; }

.why-stay .card h3 { margin-top: 0; }

.contact-links { display: grid; gap: .65rem; margin-top: 1rem; }
.contact-links a { color: #d6417f; text-decoration: none; font-weight: 800; }
.qr-wrap {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(38,20,44,0.08);
}
.qr-wrap img {
  width: 100px; height: 100px; object-fit: cover;
  border-radius: 12px; background: white;
}
.qr-wrap p { margin: .2rem 0 0; color: var(--muted); }

.contact-form { padding: 1.5rem; display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .4rem; font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border: 1px solid rgba(38,20,44,0.12); border-radius: 16px;
  padding: .95rem 1rem; font: inherit; background: var(--surface-strong);
}
.full { width: 100%; }

.site-footer {
  border-top: 1px solid rgba(38,20,44,0.08); padding: 1.4rem 0 2.2rem;
}
.footer-wrap {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .95rem;
}

/* Entrance animation */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(18px); }
}

@media (max-width: 980px) {
  .hero-grid, .split, .split-about, .contact-box, .card-grid.three, .card-grid.two, .gallery-clean {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: 100%; min-height: auto; }
  .hero-visual img { height: 240px; }
  .gallery-card img { height: auto; max-height: 380px; }
  .testimonial-carousel { grid-template-columns: 44px 1fr 44px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch;
    padding: 1rem; background: rgba(255,248,244,0.98); border-bottom: 1px solid rgba(38,20,44,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 4rem; }
  .section { padding: 3.4rem 0; }
  .hero-actions, .hero-highlights, .quick-strip-inner { gap: .8rem; }
  .highlight-pill { width: 100%; }
  .testimonial-carousel { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .qr-wrap { grid-template-columns: 1fr; }
}


/* Version 7 refinements */
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  gap: 0.02rem;
}
.logo-top {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Comic Sans MS", cursive, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.logo-bottom {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Comic Sans MS", cursive, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.quick-strip-inner span {
  background: linear-gradient(135deg, rgba(255,61,143,.9), rgba(85,37,93,.95));
  color: white;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(128,38,92,.14);
}

.hero-card {
  background: linear-gradient(180deg, rgba(37,20,44,.97), rgba(68,32,75,.94));
  color: white;
}
.hero-card .mini-kicker {
  color: #ffd760;
}
.hero-card .mini-points span {
  background: rgba(255,255,255,.08);
  color: white;
  border-color: rgba(255,255,255,.12);
}

.feedback-collage {
  padding: 1rem;
  background: rgba(255,255,255,.92);
}
.feedback-collage img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 18px;
}

.testimonial-slide p strong {
  color: var(--accent);
}

.qr-wrap img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  padding: 6px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255,215,96,0.24), transparent 24%),
    radial-gradient(circle at top right, rgba(255,61,143,0.14), transparent 20%),
    radial-gradient(circle at center right, rgba(131,87,255,0.08), transparent 18%),
    linear-gradient(135deg, #fff7e8 0%, #fff5fa 48%, #fffaf2 100%);
}


/* Version 9 refinements */
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,247,251,.92));
  color: var(--text);
}
.hero-white-kicker {
  color: #d6417f;
}
.hero-card .mini-points span {
  background: linear-gradient(135deg, rgba(255,61,143,.94), rgba(85,37,93,.96));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(128,38,92,.12);
}
.hero-card .mini-points span:hover,
.quick-strip-inner span:hover {
  transform: translateY(-2px);
}

.quick-strip-inner {
  justify-content: center;
}
.quick-strip-inner span {
  transition: transform .2s ease, box-shadow .2s ease;
}

.logo-top,
.logo-bottom {
  font-family: "Arial Rounded MT Bold", "Marker Felt", "Comic Sans MS", "Trebuchet MS", cursive, sans-serif;
  text-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.logo-top {
  font-size: 1.5rem;
}
.logo-bottom {
  font-size: 1.95rem;
  letter-spacing: -0.04em;
}

.gallery-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(255,245,249,.95), rgba(255,250,243,.95));
}
.gallery-placeholder-copy {
  padding: 1.2rem 1.2rem 0;
}
.gallery-placeholder-copy h3 {
  margin: 0 0 .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
}
.gallery-placeholder-copy p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .logo-top { font-size: 1.28rem; }
  .logo-bottom { font-size: 1.65rem; }
}


/* Version 10 upgrades */
.logo-top,
.logo-bottom {
  font-family: 'Baloo 2', 'Arial Rounded MT Bold', 'Trebuchet MS', cursive, sans-serif;
  letter-spacing: -0.02em;
}
.logo-top {
  font-size: 1.38rem;
}
.logo-bottom {
  font-size: 1.9rem;
  line-height: 0.82;
}

.gallery-clean.six-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-clean.six-grid .gallery-card img {
  height: 250px;
}
.why-mini-card {
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(38,20,44,0.08);
  box-shadow: 0 10px 24px rgba(128,38,92,.06);
}
.why-mini-card p:last-child {
  margin: .25rem 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .gallery-clean.six-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .gallery-clean.six-grid {
    grid-template-columns: 1fr;
  }
  .gallery-clean.six-grid .gallery-card img {
    height: auto;
    max-height: 380px;
  }
}


/* Version 11 refinements */
.btn-tertiary {
  background: rgba(255,255,255,.82);
  border-color: rgba(85,37,93,.18);
  color: #55255d;
}

.hero-card {
  background: linear-gradient(180deg, rgba(243,237,255,.95), rgba(250,244,255,.92));
  border-top: 1px solid rgba(123,92,170,.12);
}
.hero-card .mini-points span {
  background: linear-gradient(135deg, rgba(97,63,149,.95), rgba(133,98,186,.96));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(88,52,140,.14);
}
.hero-card .mini-kicker {
  color: #7b4bc6;
}

.why-mini-card {
  background: linear-gradient(135deg, rgba(255,241,246,.95), rgba(255,248,251,.92));
  border-color: rgba(214,65,127,.14);
  max-width: 720px;
}

.gallery-clean.six-grid .gallery-card img {
  height: 280px;
}
.gallery-clean.six-grid .gallery-card:nth-child(6) img {
  object-position: center top;
}

.review-stats strong {
  letter-spacing: .06em;
  color: #ffb400;
  text-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

@media (max-width: 760px) {
  .btn-tertiary { width: 100%; }
}


/* Version 12 cleanup and polish */
.btn-primary,
.btn-secondary {
  min-width: 220px;
}

.hero {
  padding-bottom: 1.3rem;
}

.hero-visual {
  min-height: 340px;
}

.hero-visual img {
  height: 340px;
}

.class-flow-section {
  padding-top: 1.4rem;
  padding-bottom: 4rem;
}

.class-flow-wrap {
  background: linear-gradient(135deg, rgba(245,238,255,.96), rgba(255,248,253,.95));
  border: 1px solid rgba(123,92,170,.12);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(128, 38, 92, 0.10);
  padding: 1.5rem;
}

.class-flow-copy h2 {
  margin: .25rem 0 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  line-height: 1.1;
}

.class-flow-points {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.class-flow-points span {
  background: linear-gradient(135deg, rgba(97,63,149,.95), rgba(133,98,186,.96));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(88,52,140,.14);
}

.hero-card,
.hero-white-kicker {
  display: none;
}

.gallery-clean.six-grid .gallery-card:nth-child(6) img {
  object-position: center 12%;
}

.testimonial-slide strong {
  color: var(--accent);
}

.review-stats span {
  color: var(--muted);
}

.why-mini-card {
  max-width: 860px;
}

@media (max-width: 760px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: 0;
  }
  .hero-visual {
    min-height: auto;
  }
  .hero-visual img {
    height: 260px;
  }
}


/* Version 13 hero and layout refinements */
.hero-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.hero-copy {
  padding-right: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 4.6vw, 4.6rem);
  max-width: 8.5ch;
  min-height: 2.5em;
  margin-bottom: 0.8rem;
}

.subhead {
  max-width: 30rem;
}

.hero-actions {
  margin-top: 1.25rem;
}

.hero-visual {
  min-height: 420px;
  align-self: stretch;
}

.hero-visual img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero {
  padding-top: 4.4rem;
  padding-bottom: 1rem;
}

.why-mini-section {
  padding-top: 1rem;
  padding-bottom: 2.8rem;
}

.why-mini-section .why-mini-card {
  max-width: 100%;
  min-height: 0;
  padding: 1.25rem 1.3rem;
}

.btn-primary {
  text-transform: none;
}

.gallery-clean.six-grid .gallery-card:nth-child(6) img {
  object-position: center 6%;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero h1 {
    max-width: 100%;
    min-height: auto;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual img {
    height: 320px;
  }
}


/* Version 14 landing-page redesign */
.hero {
  padding-top: 4rem;
  padding-bottom: 1.2rem;
}

.hero-stack {
  display: grid;
  gap: 1.35rem;
  align-items: start;
}

.hero-copy {
  max-width: 860px;
}

.hero h1 {
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  max-width: 9ch;
  min-height: 1.9em;
  margin-bottom: 0.65rem;
}

.subhead {
  max-width: 56rem;
  font-size: 1.08rem;
}

.hero-image-wrap {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(128, 38, 92, 0.14);
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.86);
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-actions-centered {
  margin-top: 0.2rem;
}

.hero-actions-centered .btn {
  min-width: 260px;
}

.quick-strip {
  padding-top: 0.85rem;
  padding-bottom: 1.65rem;
}

.quick-strip-inner {
  justify-content: center;
}

.quick-strip-inner span {
  margin-bottom: 0.25rem;
}

@media (max-width: 980px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 9vw, 4.6rem);
    min-height: auto;
  }

  .hero-actions-centered .btn {
    min-width: 220px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions-centered {
    width: 100%;
  }

  .hero-actions-centered .btn {
    width: 100%;
    min-width: 0;
  }

  .subhead {
    font-size: 1rem;
  }
}


/* Version 15 hero polish */
.hero-stack { justify-items: center; }
.hero-copy { max-width: 1280px; width: 100%; text-align: center; padding-right: 0; }
.eyebrow { text-align: center; }
.hero h1, .hero-title {
  width: 100%; max-width: 100%; text-align: center;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  min-height: 1.35em; line-height: 1.02; margin-bottom: 0.9rem;
}
#rotating-text {
  display: inline-block; max-width: 100%; white-space: normal; word-break: keep-all;
  transition: color .35s ease, opacity .35s ease, transform .35s ease;
}
.subhead {
  max-width: 980px; margin-left: auto; margin-right: auto; text-align: center; font-size: 1.12rem;
}
.hero-actions-centered { width: 100%; justify-content: center; align-items: center; gap: 1rem; }
.hero-actions-centered .btn { min-width: 260px; }
.hero-image-wrap { width: min(100%, 1220px); }
.hero-main-image {
  width: 100%; height: auto; max-height: 520px; object-fit: cover; object-position: center;
}
.quick-strip-inner { width: 100%; justify-content: center; }
.quick-strip-inner span {
  background: linear-gradient(135deg, rgba(255,61,143,.92), rgba(102,55,154,.96));
  color: white; border-color: transparent; box-shadow: 0 12px 24px rgba(128,38,92,.14);
}
.rotating-color.color-purple { color: #2a0f38; }
.rotating-color.color-pink { color: #e03b8b; }
.rotating-color.color-orange { color: #e67a1f; }
.rotating-color.color-blue { color: #3a67d8; }

@media (max-width: 980px) {
  .hero h1, .hero-title { font-size: clamp(2.8rem, 9vw, 4.6rem); min-height: 1.55em; }
  .subhead { max-width: 100%; }
}
@media (max-width: 760px) {
  .hero h1, .hero-title { font-size: clamp(2.5rem, 11vw, 3.8rem); min-height: 1.7em; }
  .hero-actions-centered { flex-direction: column; }
  .hero-actions-centered .btn { width: 100%; min-width: 0; }
}


/* Version 17 polish */
.rotating-color.color-plum { color: #3b163f; }
.rotating-color.color-coral { color: #e9712d; }
.rotating-color.color-pink { color: #e23892; }
.rotating-color.color-blue { color: #5b72d9; }
.rotating-color.color-gold { color: #c88c1a; }
.rotating-color.color-berry { color: #b03a75; }
.gallery-card { position: relative; overflow: hidden; transition: transform .28s ease, box-shadow .28s ease; }
.gallery-card::before { content:""; position:absolute; inset:0; background:rgba(34,12,44,0); transition:background .28s ease; z-index:1; pointer-events:none; }
.gallery-card img { position:relative; z-index:0; transition: transform .35s ease, filter .35s ease; background: rgba(26,10,34,.92); }
.gallery-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 28px 60px rgba(74,33,92,.24); z-index:3; }
.gallery-card:hover::before { background: rgba(34,12,44,.18); }
.gallery-clean.six-grid .gallery-card:hover img { object-fit: contain; transform: scale(0.97); filter: brightness(1.02); }
.gallery-card figcaption { position:relative; z-index:2; background: rgba(255,255,255,.95); }
.curtain-overlay { position:fixed; inset:0; z-index:9999; pointer-events:none; overflow:hidden; }
.curtain-panel { position:absolute; top:0; width:50.5%; height:100%; background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.22), transparent 16%), radial-gradient(circle at 80% 20%, rgba(255,215,96,.28), transparent 14%), radial-gradient(circle at 50% 70%, rgba(255,130,190,.18), transparent 18%), linear-gradient(180deg, rgba(74,20,68,.98), rgba(224,56,146,.94), rgba(255,181,70,.88)); box-shadow: inset 0 0 60px rgba(255,255,255,.08); transition: transform 1.15s cubic-bezier(.77,0,.18,1), opacity .9s ease; }
.curtain-left { left:0; transform: translateX(0); border-right:1px solid rgba(255,255,255,.14); }
.curtain-right { right:0; transform: translateX(0); border-left:1px solid rgba(255,255,255,.14); }
.curtain-glow { position:absolute; inset:0; background: radial-gradient(circle at center, rgba(255,255,255,.20), transparent 18%), radial-gradient(circle at center, rgba(255,215,96,.24), transparent 12%); opacity:.95; transition:opacity .8s ease; }
body.curtain-open .curtain-left { transform: translateX(-105%); opacity:0; }
body.curtain-open .curtain-right { transform: translateX(105%); opacity:0; }
body.curtain-open .curtain-glow { opacity:0; }
@media (prefers-reduced-motion: reduce) { .gallery-card, .gallery-card img, .curtain-panel, .curtain-glow { transition:none !important; } }


/* Version 18 hover refinements */
.gallery-clean.six-grid .gallery-card:hover img {
  object-fit: cover;
  transform: scale(1.06);
  filter: brightness(1.02);
}

/* Only the local coverage card reveals more of the full image on hover */
.gallery-clean.six-grid .gallery-card:nth-child(5) img {
  object-position: center;
}

.gallery-clean.six-grid .gallery-card:nth-child(5):hover img {
  object-fit: contain;
  transform: scale(0.97);
  background: rgba(26, 10, 34, 0.92);
}

/* Face behind Dil Kholke Dance crop higher */
.gallery-clean.six-grid .gallery-card:nth-child(6) img {
  object-position: center 4%;
}

/* About photo crop */
.founder-card img {
  object-position: center top;
}


/* Version 20 final content */
.founder-card img {
  object-position: center 18%;
}

.why-mini-card strong {
  color: #d6417f;
}

.class-flow-copy h2 {
  max-width: none;
}
