:root {
  --cream: #fff8ed;
  --cream-2: #fff1df;
  --paper: #fffdf8;
  --purple: #5b2a86;
  --purple-dark: #321247;
  --violet: #8c5bb8;
  --coral: #ff4f7b;
  --orange: #ff6a35;
  --gold: #ffba35;
  --teal: #22aaa1;
  --ink: #1f1824;
  --muted: #635969;
  --line: rgba(91, 42, 134, 0.18);
  --shadow: 0 18px 48px rgba(82, 45, 92, 0.12);
  --soft-shadow: 0 10px 26px rgba(82, 45, 92, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 79, 123, 0.1), transparent 22rem),
    radial-gradient(circle at 94% 18%, rgba(34, 170, 161, 0.12), transparent 20rem),
    var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px min(5vw, 64px);
  border-bottom: 2px solid rgba(255, 186, 53, 0.45);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(45, 24, 55, 0.1);
}

.logo,
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  color: var(--purple);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.15em;
}

.logo-main::after {
  content: "◞";
  margin-left: -0.08em;
  color: var(--orange);
  font-size: 0.9em;
}

.logo-sub {
  margin-top: 4px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  color: #171018;
  font-size: 0.96rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  border-radius: 99px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.header-cta,
.button.purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
}

.header-cta::after {
  content: " ✨";
}

.button.coral {
  background: linear-gradient(135deg, var(--orange), var(--coral));
}

.button.purple::before {
  content: "▣";
  margin-right: 9px;
  font-size: 0.84rem;
}

.button.coral::before {
  content: "♪";
  margin-right: 9px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.94) 0%, rgba(255, 248, 237, 0.9) 46%, rgba(255, 239, 222, 0.3) 100%);
}

.hero-copy {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: 46px 0 50px;
}

.script-line,
.footer-script,
blockquote {
  font-family: "Satisfy", cursive;
}

.script-line {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1;
}

h1,
h2 {
  margin: 0;
  color: var(--purple);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 0.98;
}

h1 {
  max-width: 620px;
  font-size: clamp(3.3rem, 6.7vw, 6rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  letter-spacing: -0.035em;
}

h3,
p {
  margin-top: 0;
}

.lead {
  max-width: 520px;
  margin: 22px 0 0;
  color: #2f2933;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  font-weight: 500;
}

.lead::after {
  content: " ♥";
  color: var(--coral);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-photo {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 44% 0 0 44%;
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.media-frame img,
.media-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame img {
  object-position: center;
}

.hero-photo video,
.hero-photo img {
  object-position: center;
}

.media-frame video {
  z-index: 2;
}

.media-frame img {
  z-index: 1;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background: linear-gradient(90deg, rgba(255, 248, 237, 0.1), transparent 45%);
  pointer-events: none;
}

.flower {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.flower-left {
  bottom: 3px;
  left: -26px;
  width: 150px;
  height: 180px;
}

.flower span {
  position: absolute;
  width: 62px;
  height: 92px;
  border-radius: 70% 30% 70% 30%;
  background: var(--coral);
  transform-origin: bottom center;
}

.flower span:nth-child(1) {
  left: 42px;
  top: 52px;
  transform: rotate(8deg);
}

.flower span:nth-child(2) {
  left: 4px;
  top: 68px;
  transform: rotate(-54deg);
}

.flower span:nth-child(3) {
  left: 70px;
  top: 74px;
  transform: rotate(55deg);
}

.flower span:nth-child(4) {
  left: 34px;
  top: 104px;
  background: #ff7899;
  transform: rotate(122deg);
}

.flower i {
  position: absolute;
  left: 54px;
  top: 108px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}

.classes-section,
.testimonials,
.faq-section {
  padding: 44px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.section-title.centered {
  justify-content: center;
  text-align: center;
}

.section-title.small {
  justify-content: center;
  margin-bottom: 6px;
}

.leaf-mark {
  color: var(--coral);
  font-family: "Satisfy", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  transform: rotate(-24deg);
}

.leaf-mark.right {
  transform: rotate(24deg);
}

.leaf-mark.teal {
  color: var(--teal);
}

.leaf-mark.orange {
  color: var(--orange);
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.class-card {
  display: flex;
  min-height: 214px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border: 1.8px solid currentColor;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.class-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: currentColor;
  background: color-mix(in srgb, currentColor 12%, white);
  font-size: 2.1rem;
  font-weight: 800;
}

.class-card h3 {
  margin: 0 0 10px;
  color: currentColor;
  font-size: 1.16rem;
  line-height: 1.1;
}

.class-card p {
  margin: 0;
  color: #38313b;
  font-size: 0.94rem;
}

.purple-card,
.violet-card {
  color: var(--purple);
}

.orange-card {
  color: var(--orange);
}

.pink-card {
  color: var(--coral);
}

.teal-card {
  color: var(--teal);
}

.gold-card {
  color: #df8d00;
}

.schedule-about {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  align-items: start;
  padding: 34px 0 44px;
}

.weekly-card,
.instructor-card,
.testimonial-grid article,
details {
  border: 1.5px solid rgba(255, 79, 123, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--soft-shadow);
}

.weekly-card {
  padding: 24px 22px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.location-pin {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.location-pin::before {
  content: "⌖ ";
  color: var(--purple);
}

.schedule-list {
  display: grid;
  gap: 8px;
}

.schedule-list article {
  display: grid;
  grid-template-columns: 120px 90px 1fr 28px;
  gap: 16px;
  align-items: center;
  min-height: 54px;
  padding: 6px 12px 6px 0;
  border: 1px solid rgba(91, 42, 134, 0.1);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 6px 18px rgba(82, 45, 92, 0.06);
}

.day {
  display: grid;
  height: 54px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 8px;
  background: color-mix(in srgb, currentColor 8%, white);
  font-size: 1.03rem;
  font-weight: 800;
}

.teal-day {
  color: var(--teal);
}

.purple-day {
  color: var(--purple);
}

.pink-day {
  color: var(--coral);
}

.orange-day {
  color: var(--orange);
}

.schedule-list strong {
  font-size: 0.96rem;
}

.schedule-list p {
  margin: 0;
  font-weight: 800;
}

.schedule-list em {
  color: var(--teal);
  font-style: normal;
  font-size: 1.55rem;
  text-align: right;
}

.pricing-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.pricing-strip article {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(91, 42, 134, 0.12);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 232, 215, 0.74));
  box-shadow: 0 10px 24px rgba(82, 45, 92, 0.08);
}

.pricing-strip span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-strip strong {
  color: var(--purple);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.note::before {
  content: "▣ ";
  color: var(--purple);
}

.instructor-card {
  padding: 22px;
}

.instructor-heading {
  justify-content: flex-start !important;
  margin-left: 172px;
}

.instructor-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
}

.portrait {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--cream-2);
}

.portrait.media-frame img {
  object-fit: cover;
  object-position: center center;
  padding: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.9), transparent 8rem),
    linear-gradient(135deg, #fff8ed, #ffe8d7);
}

.instructor-card h3 {
  margin: 0;
  color: var(--purple);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.role {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 800;
}

.instructor-card p {
  margin-bottom: 10px;
}

blockquote {
  margin: 12px 0 0;
  color: var(--purple);
  font-size: 1.35rem;
  line-height: 1.15;
}

blockquote::after {
  content: " ♡";
  color: var(--coral);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-grid article {
  position: relative;
  min-height: 140px;
  padding: 22px 26px;
  border-color: transparent;
  background: #fff8ec;
}

.testimonial-grid span {
  color: var(--coral);
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.7;
}

.testimonial-grid article:nth-child(2) span {
  color: var(--teal);
}

.testimonial-grid article:nth-child(3) span {
  color: var(--gold);
}

.testimonial-grid p {
  margin: -10px 0 14px 28px;
  color: #302833;
  font-size: 0.96rem;
}

.testimonial-grid strong {
  margin-left: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.google-review-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.review-summary {
  display: grid;
  justify-items: center;
  max-width: 520px;
  margin: -8px auto 18px;
  color: var(--muted);
  text-align: center;
}

.review-summary span {
  display: none;
}

.review-summary p {
  margin: 0;
  color: #5f5864;
  font-size: clamp(0.92rem, 1.35vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
}

.review-stage {
  position: relative;
  min-height: 205px;
}

.google-review {
  position: absolute;
  top: 0;
  bottom: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-content: start;
  width: calc((100% - 32px) / 3);
  min-height: 205px;
  padding: 16px 22px 18px;
  border: 1px solid rgba(255, 79, 123, 0.2);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 30px rgba(82, 45, 92, 0.07);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translateY(10px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.google-review.is-active,
.google-review.is-next,
.google-review.is-third {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.google-review.is-active {
  left: 0;
}

.google-review.is-next {
  left: calc((100% + 16px) / 3);
}

.google-review.is-third {
  right: 0;
}

.google-review .stars {
  width: fit-content;
  margin: 0 0 12px;
  border-radius: 999px;
  padding: 4px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: var(--soft-shadow);
}

.google-review blockquote {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--purple-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.035em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.google-review blockquote::before {
  content: "“";
  color: var(--coral);
}

.google-review blockquote::after {
  content: "”";
  color: var(--coral);
}

.google-review strong {
  display: block;
  color: var(--purple);
  font-size: 0.88rem;
}

.google-review > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 0 0;
}

.review-controls button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  box-shadow: var(--soft-shadow);
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease;
}

.review-controls button:hover {
  transform: translateY(-2px) scale(1.04);
}

.review-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.review-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 79, 123, 0.16);
  box-shadow: none;
  cursor: pointer;
}

.review-dots button.is-active {
  width: 9px;
  background: var(--coral);
  transform: none;
}

.review-progress {
  display: none;
}

.faq-section {
  padding-top: 32px;
  padding-bottom: 54px;
}

.testimonials .section-title,
.faq-section .section-title {
  margin-bottom: 18px;
}

.testimonials .section-title h2,
.faq-section .section-title h2 {
  position: relative;
}

.testimonials .section-title h2::after,
.faq-section .section-title h2::after {
  position: absolute;
  right: 12%;
  bottom: -18px;
  left: 12%;
  content: "♡";
  color: var(--coral);
  font-family: "Satisfy", cursive;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  border-bottom: 2px solid rgba(255, 79, 123, 0.48);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}

details {
  overflow: hidden;
}

.faq-list details {
  border-color: rgba(255, 79, 123, 0.18);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 10px 30px rgba(82, 45, 92, 0.06);
}

summary {
  display: flex;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  padding: 18px 22px;
  color: var(--purple);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "▶";
  color: var(--purple);
  font-size: 0.92rem;
  transition: transform 0.2s ease;
}

details[open] summary::before {
  transform: rotate(90deg);
}

details p {
  margin: -4px 22px 18px;
  color: var(--muted);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin-top: 26px;
  margin-bottom: 46px;
  border: 2px solid rgba(255, 79, 123, 0.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(82, 45, 92, 0.14);
}

.location-copy {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.8vw, 54px) clamp(26px, 3.4vw, 38px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 80%, rgba(255, 79, 123, 0.22), transparent 9rem),
    radial-gradient(circle at 18% 14%, rgba(255, 186, 53, 0.16), transparent 9rem),
    linear-gradient(135deg, var(--purple-dark), var(--purple));
}

.location-copy::after {
  position: absolute;
  right: -48px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: repeating-conic-gradient(from -12deg, rgba(255, 79, 123, 0.13) 0 13deg, transparent 13deg 30deg);
  pointer-events: none;
}

.location-copy .script-line,
.location-copy h2 {
  position: relative;
  z-index: 1;
  color: #fff;
}

.location-copy .script-line {
  margin-bottom: 42px;
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
}

.location-copy .script-line::after {
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 104px;
  height: 12px;
  content: "♡";
  color: var(--coral);
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%);
}

.location-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.75rem);
}

.location-copy p:not(.script-line) {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.location-copy .location-address {
  max-width: 330px;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.55;
  font-weight: 600;
}

.location-copy .button {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
}

.location-copy .button::before {
  content: "⌖";
}

.map-frame {
  overflow: hidden;
  min-height: 520px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.contact-band {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  padding: 44px 0 36px;
  color: #fff;
  background:
    radial-gradient(circle at 5% 50%, rgba(255, 79, 123, 0.4), transparent 9rem),
    radial-gradient(circle at 95% 45%, rgba(255, 186, 53, 0.28), transparent 10rem),
    linear-gradient(135deg, var(--purple-dark), var(--purple));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.9fr 0.78fr 1fr;
  gap: 34px;
  align-items: center;
}

.footer-logo .logo-main {
  color: #fff;
}

.footer-logo .logo-sub {
  color: var(--gold);
}

.contact-grid p,
address {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
}

address,
.contact-grid > div:nth-child(3) {
  display: grid;
  gap: 8px;
  margin: 0;
}

address strong,
.contact-grid strong {
  color: #fff;
}

address a {
  color: rgba(255, 255, 255, 0.9);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a,
.social-placeholder {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--purple);
  background: #fff;
  box-shadow: 0 10px 24px rgba(35, 15, 55, 0.16);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.socials a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  transform: translateY(-2px);
}

.social-placeholder {
  opacity: 0.66;
}

.socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.socials a svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.socials a .instagram-logo {
  width: 28px;
  height: 28px;
  fill: initial;
  stroke: none;
}

.socials a .facebook-logo {
  fill: currentColor;
  stroke: none;
}

.socials a[aria-label="Danzica Instagram"]:hover {
  background: #fff;
}

.footer-script {
  margin: 0;
  color: var(--gold) !important;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.08;
  transform: rotate(-4deg);
}

.footer-flower {
  position: absolute;
  bottom: -44px;
  width: 160px;
  height: 160px;
  pointer-events: none;
}

.footer-flower::before,
.footer-flower::after {
  position: absolute;
  content: "";
  border-radius: 70% 30% 70% 30%;
}

.footer-flower::before {
  width: 92px;
  height: 128px;
  background: var(--coral);
}

.footer-flower::after {
  width: 70px;
  height: 100px;
  background: var(--teal);
  transform: rotate(58deg);
}

.footer-flower.left {
  left: -36px;
}

.footer-flower.right {
  right: -20px;
  transform: scaleX(-1);
}

.site-footer {
  padding: 14px 20px 18px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--purple);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.84rem;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 40px rgba(50, 18, 71, 0.18);
  backdrop-filter: blur(12px);
}

.mobile-cta a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 900;
}

.mobile-cta a:nth-child(2) {
  color: #fff;
  background: var(--orange);
}

@media (max-width: 1080px) {
  .class-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .instructor-heading {
    margin-left: 0;
    justify-content: center !important;
  }

  .instructor-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto auto;
    padding: 13px 18px;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 12px;
    background: var(--purple);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .header-cta {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .hero-copy,
  .schedule-about,
  .location-section,
  .contact-grid,
  .pricing-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-photo {
    min-height: 410px;
    border-radius: 120px 20px 20px 120px;
  }

  .portrait {
    min-height: 380px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .review-summary {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .review-summary p {
    text-align: center;
  }

  .review-stage {
    min-height: 230px;
  }

  .google-review,
  .google-review.is-prev,
  .google-review.is-next,
  .google-review.is-third {
    left: 0;
    right: auto;
    width: 100%;
    min-height: 230px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(0.94);
  }

  .google-review.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }

  .location-section {
    margin-top: 16px;
  }

  .location-copy {
    min-height: auto;
    text-align: center;
  }

  .location-copy p:not(.script-line) {
    max-width: none;
  }

  .location-copy .button {
    width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, 520px);
  }

  .site-header {
    gap: 10px;
  }

  .logo-main {
    font-size: 1.25rem;
  }

  .logo-sub {
    font-size: 0.58rem;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 12px;
  }

  .header-cta::after {
    content: "";
  }

  .hero-copy {
    padding: 34px 0 36px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .script-line {
    font-size: 2.45rem;
  }

  .hero-actions {
    display: grid;
  }

  .google-review-carousel {
    padding: 0;
  }

  .review-stage {
    min-height: 240px;
  }

  .google-review {
    min-height: 240px;
    padding: 20px;
    border-radius: 22px;
  }

  .google-review blockquote {
    font-size: clamp(0.98rem, 4.6vw, 1.12rem);
  }

  .review-controls {
    gap: 10px;
  }

  .review-controls button {
    width: 42px;
    height: 42px;
  }

  .review-dots {
    max-width: 150px;
    overflow-x: auto;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .button {
    width: 100%;
  }

  .hero-photo {
    min-height: 330px;
    border-radius: 82px 18px 18px 82px;
  }

  .hero-photo video,
  .hero-photo img {
    object-position: 55% center;
  }

  .flower-left {
    opacity: 0.5;
    transform: scale(0.78);
  }

  .class-grid {
    grid-template-columns: 1fr;
  }

  .class-card {
    min-height: auto;
    padding: 20px;
  }

  .schedule-list article {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding: 0 12px 12px 0;
  }

  .day {
    grid-column: 1 / -1;
  }

  .schedule-list p {
    grid-column: 1 / 2;
  }

  .schedule-list em {
    grid-row: 2 / 4;
    grid-column: 2 / 3;
  }

  .portrait {
    min-height: 360px;
    border-radius: 18px;
  }

  .portrait.media-frame img {
    padding: 6px;
  }

  .contact-band {
    padding-bottom: 48px;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 88px;
  }
}

@media (max-width: 390px) {
  .section-shell {
    width: min(100% - 22px, 360px);
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero-photo {
    min-height: 300px;
  }

  .portrait {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
