:root {
  --brand: #6a7f7b;
  --brand-dark: #556a66;
  --brand-deep: #445753;
  --brand-soft: #a8b8b4;
  --bg: #f4f7f6;
  --bg-accent: #edf3f1;
  --card: #ffffff;
  --card-alt: #f9fbfa;
  --text: #22302d;
  --muted: #5d6f6b;
  --line: rgba(106, 127, 123, .16);
  --shadow: 0 18px 55px rgba(70, 96, 90, .12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(106, 127, 123, .12), transparent 30%),
    linear-gradient(180deg, #f9fbfa 0%, var(--bg) 40%, #fafcfb 100%);
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 76px 0; }
.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;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(92, 124, 120, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(249, 251, 250, .88);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 86px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { display: block; width: auto; height: 56px; }
.footer-logo img { height: 62px; }

.nav {
  display: flex; align-items: center; gap: 28px;
  font-size: 15px; font-weight: 650;
}
.nav a:not(.btn):hover { color: var(--brand-dark); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px;
  border: 0; border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; font-weight: 750;
  box-shadow: 0 14px 30px rgba(85, 106, 102, .28);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(85, 106, 102, .34);
}
.btn-small { min-height: 44px; padding-inline: 18px; border-radius: 12px; }
.btn-ghost {
  background: rgba(255, 255, 255, .75);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.burger {
  display: none; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(255, 255, 255, .74); cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 2px; margin: 5px auto;
  background: var(--text); transition: .2s ease;
}

.hero {
  position: relative; overflow: hidden; padding-top: 66px;
}
.hero::before {
  content: "♪ ♫ ♬ ♩";
  position: absolute; right: 5%; top: 100px;
  color: rgba(106, 127, 123, .14);
  font-size: clamp(64px, 11vw, 160px);
  letter-spacing: 28px; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.06fr; align-items: center; gap: 50px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.055em;
}
h1 {
  margin-bottom: 20px;
  max-width: 640px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .93;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}
h3 { margin-bottom: 10px; font-size: 20px; }
.hero-text {
  max-width: 600px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0;
}
.hero-stats {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-stats div {
  min-width: 128px; padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
}
.hero-stats strong {
  display: block; font-size: 26px; color: var(--brand-dark);
}
.hero-stats span {
  display: block; color: var(--muted); font-size: 13px;
}

.hero-visual {
  position: relative; min-height: 520px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 55% 38%, rgba(255,255,255,.92), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(168, 184, 180, .36));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.notes {
  position: absolute; inset: 30px auto auto 32px;
  color: rgba(106, 127, 123, .22);
  font-size: 60px; letter-spacing: 20px;
}
.piano { position: absolute; right: 10%; top: 96px; width: 360px; height: 250px; }
.piano-lid {
  position: absolute; right: 8px; top: 0;
  width: 310px; height: 92px;
  border-radius: 100% 12px 18px 26px;
  transform: rotate(-15deg);
  background: linear-gradient(135deg, var(--brand-deep), #233431);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.piano-body {
  position: absolute; right: 20px; top: 92px;
  width: 305px; height: 112px;
  border-radius: 14px 14px 32px 32px;
  background: linear-gradient(160deg, var(--brand-deep), #314541);
  border-bottom: 10px solid var(--brand-soft);
  overflow: hidden;
}
.piano-body::before {
  content: "";
  position: absolute; left: 26px; right: 26px; top: 38px;
  height: 34px;
  background: repeating-linear-gradient(90deg, #fff 0 18px, #243432 18px 23px, #fff 23px 34px);
}
.piano-leg {
  position: absolute; top: 200px; width: 12px; height: 125px;
  background: #334542; border-radius: 0 0 10px 10px;
}
.piano-leg.one { right: 76px; }
.piano-leg.two { right: 245px; }
.instrument { position: absolute; filter: drop-shadow(0 18px 18px rgba(64, 42, 18, .12)); }
.guitar { left: 52px; bottom: 90px; font-size: 148px; transform: rotate(-7deg); }
.violin { right: 22px; bottom: 80px; font-size: 126px; transform: rotate(7deg); }
.dombra {
  right: 72px; top: 336px; padding: 12px 18px; border-radius: 999px;
  background: #d8e1de; color: var(--brand-deep); font-weight: 800; transform: rotate(-18deg);
}
.flute { left: 250px; bottom: 50px; color: #95a4a0; font-size: 38px; transform: rotate(-8deg); }

.section-head { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.direction-grid, .benefit-grid, .teacher-grid, .review-grid { display: grid; gap: 22px; }
.direction-grid { grid-template-columns: repeat(6, 1fr); }
.direction-card, .teacher-card, .review-grid blockquote {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(70, 96, 90, .08);
}
.direction-card {
  min-height: 188px; padding: 24px 18px; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.direction-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.direction-card span { display: block; margin-bottom: 15px; font-size: 44px; }
.direction-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.about-card {
  display: grid; grid-template-columns: .9fr 1fr; gap: 42px; align-items: center;
  padding: 28px; border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(212, 224, 220, .42));
  box-shadow: var(--shadow);
}
.lesson-photo {
  position: relative; min-height: 350px; border-radius: 22px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.1)),
    radial-gradient(circle at 32% 32%, #d8e1de, transparent 28%),
    linear-gradient(135deg, #f5f8f7, #bdd0cb);
}
.teacher, .student { position: absolute; bottom: 92px; font-size: 118px; }
.teacher { left: 15%; }
.student { left: 43%; font-size: 96px; }
.keys {
  position: absolute; left: 8%; right: 8%; bottom: 52px; height: 52px; border-radius: 12px;
  background: repeating-linear-gradient(90deg, #fff 0 28px, #253533 28px 34px, #fff 34px 48px);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}
.about-content p { color: var(--muted); line-height: 1.7; }
.check-list {
  display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none;
}
.check-list li { position: relative; padding-left: 34px; font-weight: 700; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -2px;
  width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(106, 127, 123, .15); color: var(--brand-dark);
}

.benefit-grid { grid-template-columns: repeat(5, 1fr); }
.benefit {
  min-height: 130px; padding: 24px 18px; display: grid; place-items: center;
  text-align: center; gap: 12px; border-right: 1px solid var(--line);
}
.benefit:last-child { border-right: 0; }
.benefit span { color: var(--brand); font-size: 34px; }

.teachers { background: rgba(255, 255, 255, .32); }
.teacher-grid { grid-template-columns: repeat(3, 1fr); }
.teacher-card { padding: 28px; }
.avatar {
  width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 18px;
  border-radius: 50%; background: linear-gradient(135deg, var(--brand-soft), var(--brand-dark));
  color: #fff; font-size: 28px; font-weight: 900;
}
.teacher-card p, .review-grid blockquote { color: var(--muted); line-height: 1.7; }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-grid blockquote { margin: 0; padding: 28px; }
.review-grid cite {
  display: block; margin-top: 18px; color: var(--text); font-style: normal; font-weight: 800;
}

.cta-card {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 44px; border-radius: 30px; color: #fff;
  background:
    radial-gradient(circle at 80% 50%, rgba(168, 184, 180, .2), transparent 28%),
    linear-gradient(135deg, var(--brand-deep), #2a3a37);
  box-shadow: var(--shadow); overflow: hidden;
}
.cta-card h2 { max-width: 760px; margin-bottom: 14px; }
.cta-card p:not(.eyebrow) {
  margin-bottom: 0; max-width: 740px; color: rgba(255,255,255,.8); line-height: 1.65;
}
.contact-grid {
  display: grid; grid-template-columns: .8fr 1fr; gap: 48px; align-items: start;
}
.contact-grid > div > p { color: var(--muted); line-height: 1.7; }
.contact-items {
  display: grid; gap: 12px; margin-top: 28px; color: var(--text); font-weight: 750;
}
.lead-form {
  display: grid; gap: 18px; padding: 30px; border: 1px solid var(--line);
  border-radius: 26px; background: rgba(255, 255, 255, .94); box-shadow: var(--shadow);
}
.lead-form label {
  display: grid; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 750;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; color: var(--text); outline: none; padding: 15px 16px;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: rgba(106, 127, 123, .72); box-shadow: 0 0 0 4px rgba(106, 127, 123, .12);
}
.form-status { margin: 0; min-height: 22px; color: var(--brand-dark); font-weight: 800; }
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 20px; border-radius: 999px;
  background: #25d366; color: #fff; font-weight: 850;
  box-shadow: 0 16px 38px rgba(37, 211, 102, .32);
}
.footer {
  padding: 34px 0; border-top: 1px solid var(--line); background: rgba(249, 251, 250, .92);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.footer-links { display: flex; gap: 18px; color: var(--muted); font-weight: 700; }
.footer p { margin: 0; color: var(--muted); font-size: 14px; }

@media (max-width: 1040px) {
  .direction-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid, .about-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit {
    border-right: 0; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, .65);
  }
}
@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed; top: 82px; left: 20px; right: 20px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 16px; border: 1px solid var(--line); border-radius: 22px;
    background: rgba(249, 251, 250, .98); box-shadow: var(--shadow);
  }
  .nav.active { display: flex; }
  .nav a { padding: 14px; }
  .nav .btn { margin-top: 8px; }
  .teacher-grid, .review-grid { grid-template-columns: 1fr; }
  .cta-card, .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 54px 0; }
  .header-inner { min-height: 74px; }
  .nav { top: 74px; }
  .logo img { height: 48px; }
  .footer-logo img { height: 54px; }
  .hero { padding-top: 42px; }
  .hero-actions, .hero-stats { flex-direction: column; }
  .hero-stats div { width: 100%; }
  .hero-visual { min-height: 360px; }
  .piano { right: -40px; top: 78px; transform: scale(.72); }
  .guitar { left: 12px; bottom: 82px; font-size: 92px; }
  .violin { right: 4px; bottom: 66px; font-size: 78px; }
  .dombra, .flute { display: none; }
  .direction-grid { grid-template-columns: 1fr 1fr; }
  .about-card, .lead-form, .cta-card { padding: 22px; }
  .lesson-photo { min-height: 260px; }
  .teacher { left: 10%; font-size: 84px; }
  .student { left: 42%; font-size: 72px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .whatsapp-float { right: 14px; bottom: 14px; }
}
@media (max-width: 420px) {
  .direction-grid { grid-template-columns: 1fr; }
  h1 { font-size: 43px; }
  h2 { font-size: 32px; }
  .btn { width: 100%; }
}


.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--brand-deep);
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(70, 96, 90, .12);
}

.map-card {
  margin-top: 24px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(70, 96, 90, .08);
}

.map-card iframe {
  display: block;
  width: 100%;
  /*height: 320px;*/
  border: 0;
}

@media (max-width: 640px) {
  .map-card,
  .map-card iframe {
    min-height: 260px;
    height: 260px;
  }
}


/* 2GIS widget */
.map-card {
  margin-top: 24px;
  overflow: hidden;
  /*min-height: 500px;*/
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(70, 96, 90, .08);
}

.map-card .dg-widget-link {
  padding: 10px 14px 0;
  font-weight: 750;
}

.map-card .dg-widget-link a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-card iframe,
.map-card > div:not(.dg-widget-link) {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 640px) {
  .map-card {
    min-height: 420px;
  }
}


/* Real teachers section */
.teachers .section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.teacher-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.teacher-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.teacher-photo {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
  background: var(--bg-accent);
}

.teacher-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .35s ease;
}

.teacher-card:hover .teacher-photo img {
  transform: scale(1.035);
}

.teacher-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.teacher-role {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(106, 127, 123, .12);
  color: var(--brand-deep);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.teacher-info h3 {
  margin-bottom: 12px;
}

.teacher-info p {
  color: var(--muted);
  line-height: 1.65;
}

.teacher-info small {
  display: block;
  margin-top: auto;
  color: var(--brand-deep);
  font-weight: 850;
  line-height: 1.45;
}

.teacher-info details {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.teacher-info summary {
  cursor: pointer;
  color: var(--brand-deep);
  font-weight: 850;
  user-select: none;
}

.teacher-bio {
  margin-top: 14px;
  max-height: 340px;
  overflow: auto;
  padding-right: 8px;
}

.teacher-bio p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1040px) {
  .teacher-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .teacher-photo {
    height: 360px;
  }

  .teacher-info {
    padding: 22px;
  }
}


/* =========================
   GRATO Luxury Redesign
   ========================= */
:root {
  --lux-cream: #f6efe3;
  --lux-cream-2: #fbf7ef;
  --lux-paper: #fffaf1;
  --lux-ink: #27221d;
  --lux-muted: #6f675e;
  --lux-gold: #b8945e;
  --lux-gold-2: #d6b679;
  --lux-deep: #15120e;
  --lux-line: rgba(184, 148, 94, .22);
  --lux-shadow: 0 26px 70px rgba(64, 47, 28, .13);
}

body.luxury-style {
  color: var(--lux-ink);
  background: var(--lux-cream-2);
  overflow-x: hidden;
}

.luxury-style .container {
  width: min(1360px, calc(100% - 160px));
}

.luxury-style .section {
  padding: 104px 0;
}

.luxury-style .site-header {
  background: rgba(255, 250, 241, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 148, 94, .12);
}

.luxury-style .header-inner {
  min-height: 92px;
}

.luxury-style .logo img {
  height: 180px;
}

.luxury-style .nav {
  gap: 34px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
}

.luxury-style .nav a:not(.btn) {
  position: relative;
}

.luxury-style .nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--lux-gold);
  transition: right .28s ease;
}

.luxury-style .nav a:not(.btn):hover::after {
  right: 0;
}

.luxury-style .btn {
  min-height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b8945e, #8f6b38);
  color: #fff;
  font-weight: 850;
  letter-spacing: .02em;
  box-shadow: 0 22px 44px rgba(143, 107, 56, .23);
  transition: transform .25s ease, box-shadow .25s ease;
}

.luxury-style .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 58px rgba(143, 107, 56, .32);
}

.luxury-style .btn-small {
  min-height: 50px;
  padding: 0 24px;
}

.luxury-style .btn-ghost {
  background: #fff;
  color: var(--lux-ink);
  border: 1px solid var(--lux-line);
  box-shadow: none;
}

/* Hero */
.lux-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--lux-cream);
}

.lux-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero-piano-bg.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  animation: luxHeroZoom 16s ease-out forwards;
}

.lux-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,250,241,.98) 0%, rgba(255,250,241,.88) 32%, rgba(255,250,241,.24) 58%, rgba(13,10,7,.24) 100%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0));
}

.lux-hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: end;
  gap: 48px;
  padding: 78px 0;
}

.lux-hero-content {
  align-self: center;
  max-width: 760px;
  animation: luxFadeUp .9s ease both;
}

.luxury-style .eyebrow {
  margin-bottom: 22px;
  color: var(--lux-gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow.line {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.eyebrow.line::before {
  content: "";
  width: 58px;
  height: 1px;
  background: var(--lux-gold);
}

.lux-hero h1 {
  margin: 0 0 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(55px, 8vw, 42px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lux-hero h1 span {
  display: block;
}

.lux-hero h1 span:nth-child(2),
.lux-hero h1 span:nth-child(3) {
  color: var(--lux-gold);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 42px;
  color: #3d3832;
  font-size: 20px;
  line-height: 1.72;
}

.lux-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 72px;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--lux-ink);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.play-link span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lux-gold);
  border-radius: 50%;
  color: var(--lux-gold);
  background: rgba(255,255,255,.45);
  transition: transform .25s ease, background .25s ease;
}

.play-link:hover span {
  transform: scale(1.08);
  background: #fff;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--lux-gold);
  font-weight: 800;
}

.hero-note span {
  font-size: 28px;
}

.hero-note p {
  margin: 0;
  color: var(--lux-gold);
}

.hero-quote {
  justify-self: end;
  margin-bottom: 42px;
  max-width: 470px;
  padding: 26px 36px;
  border: 1px solid rgba(184, 148, 94, .62);
  background: rgba(14, 11, 8, .54);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-quote p {
  position: relative;
  margin: 0;
  padding: 0 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.45;
}

.hero-quote p::before,
.hero-quote p::after {
  position: absolute;
  top: -8px;
  color: var(--lux-gold-2);
  font-size: 46px;
  line-height: 1;
}

.hero-quote p::before { content: "“"; left: 0; }
.hero-quote p::after { content: "”"; right: 0; }

/* Feature strip */
.feature-strip {
  background: rgba(255, 250, 241, .94);
  border-top: 1px solid rgba(184, 148, 94, .12);
  border-bottom: 1px solid rgba(184, 148, 94, .12);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  min-height: 164px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  border-right: 1px solid rgba(184, 148, 94, .13);
}

.feature:last-child {
  border-right: 0;
}

.feature > span {
  flex: 0 0 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #f2e6d2 100%);
  color: var(--lux-gold);
  font-size: 34px;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.feature p {
  margin: 0;
  color: var(--lux-muted);
  line-height: 1.6;
}

/* Section visual language */
.luxury-style .section-head {
  max-width: 820px;
  margin-bottom: 56px;
}

.luxury-style .section-head h2,
.luxury-style .about-content h2,
.luxury-style .cta-card h2,
.luxury-style .contact-grid h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.luxury-style .section-head p:not(.eyebrow),
.luxury-style .about-content p,
.luxury-style .cta-card p,
.luxury-style .contact-grid p {
  color: var(--lux-muted);
  line-height: 1.72;
}

.luxury-style .directions {
  background: linear-gradient(180deg, #fffaf1 0%, #f5eee2 100%);
}

.luxury-style .direction-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.luxury-style .direction-card {
  min-height: 230px;
  border: 1px solid rgba(184,148,94,.13);
  background: rgba(255,255,255,.70);
  box-shadow: 0 16px 36px rgba(64,47,28,.09);
  transition: transform .28s ease, box-shadow .28s ease;
}

.luxury-style .direction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(64,47,28,.16);
}

.luxury-style .direction-card span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #f2e6d2 100%);
  color: var(--lux-gold);
}

.luxury-style .about {
  background: #fbf7ef;
}

.luxury-style .about-card {
  grid-template-columns: .92fr 1fr;
  border: 0;
  border-radius: 36px;
  background: #fffaf1;
  box-shadow: var(--lux-shadow);
}

.luxury-style .lesson-photo,
.luxury-style .image-block {
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(184,148,94,.16);
}

.luxury-style .benefits {
  background: #f1e7d8;
}

.luxury-style .benefit {
  border: 0;
  border-radius: 28px;
  background: rgba(255,250,241,.82);
  box-shadow: 0 18px 44px rgba(64,47,28,.09);
  transition: transform .28s ease, box-shadow .28s ease;
}

.luxury-style .benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(64,47,28,.13);
}

.luxury-style .teachers {
  background: #fffaf1;
}

.luxury-style .teacher-grid {
  gap: 28px;
}

.luxury-style .teacher-card {
  border: 1px solid rgba(184,148,94,.15);
  border-radius: 28px;
  background: rgba(255,250,241,.82);
  box-shadow: 0 18px 44px rgba(64,47,28,.09);
  transition: transform .28s ease, box-shadow .28s ease;
}

.luxury-style .teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(64,47,28,.14);
}

.luxury-style .teacher-photo {
  height: 370px;
}

.luxury-style .teacher-photo img {
  transition: transform .5s ease;
}

.luxury-style .teacher-card:hover .teacher-photo img {
  transform: scale(1.04);
}

.luxury-style .teacher-role {
  background: rgba(184,148,94,.13);
  color: var(--lux-gold);
}

.luxury-style .pricing,
.luxury-style .reviews,
.luxury-style .contact-section {
  background: #f5eee2;
}

.luxury-style .price-card,
.luxury-style .review-grid blockquote,
.luxury-style .lead-form {
  border: 1px solid rgba(184,148,94,.15);
  border-radius: 28px;
  background: rgba(255,250,241,.88);
  box-shadow: 0 18px 44px rgba(64,47,28,.09);
}

.luxury-style .cta-card {
  border-radius: 0;
  border: 1px solid rgba(184,148,94,.35);
  background:
    radial-gradient(circle at 80% 20%, rgba(184,148,94,.28), transparent 32%),
    linear-gradient(135deg, #1d1915, #0f0d0b);
}

.luxury-style .contact-grid {
  align-items: start;
}

.luxury-style .map-card {
  grid-column: 1 / -1;
  min-height: 500px;
  border-radius: 28px;
  border: 1px solid var(--lux-line);
  background: #fff;
  box-shadow: var(--lux-shadow);
}

.luxury-style .map-card iframe,
.luxury-style .map-card > div:not(.dg-widget-link) {
  width: 100% !important;
  max-width: 100% !important;
}

.luxury-style .whatsapp-float {
  animation: luxPulse 2.2s infinite;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes luxFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes luxHeroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.02); }
}

@keyframes luxPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.03); }
}

@media (max-width: 1280px) {
  .luxury-style .container {
    width: min(1180px, calc(100% - 80px));
  }

  .lux-hero h1 {
    font-size: clamp(54px, 8vw, 94px);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .luxury-style .direction-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .lux-hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-quote {
    justify-self: start;
    margin-bottom: 0;
  }

  .lux-hero-shade {
    background: linear-gradient(90deg, rgba(255,250,241,.98) 0%, rgba(255,250,241,.88) 66%, rgba(255,250,241,.36) 100%);
  }

  .luxury-style .nav {
    top: 92px;
  }
}

@media (max-width: 640px) {
  .luxury-style .container {
    width: min(100% - 32px, 1180px);
  }

  .luxury-style .section {
    padding: 72px 0;
  }

  .luxury-style .header-inner {
    min-height: 78px;
  }

  .luxury-style .logo img {
    height: 48px;
  }

  .luxury-style .nav {
    top: 78px;
  }

  .lux-hero,
  .lux-hero-inner {
    min-height: auto;
  }

  .lux-hero-bg {
    background-position: 68% center;
  }

  .lux-hero-inner {
    padding: 70px 0 54px;
  }

  .lux-hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .lux-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 42px;
  }

  .play-link {
    justify-content: center;
  }

  .hero-quote {
    padding: 22px;
  }

  .hero-quote p {
    padding: 0 22px;
    font-size: 18px;
  }

  .feature-grid,
  .luxury-style .direction-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(184,148,94,.13);
    padding: 24px 0;
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .luxury-style .section-head h2,
  .luxury-style .about-content h2,
  .luxury-style .cta-card h2,
  .luxury-style .contact-grid h2 {
    font-size: 36px;
  }

  .luxury-style .about-card,
  .luxury-style .cta-card,
  .luxury-style .lead-form {
    padding: 26px;
  }

  .luxury-style .teacher-photo {
    height: 390px;
  }

  .luxury-style .map-card {
    min-height: 420px;
  }
}


/* Fix: content must stay visible if JS/reveal animation fails */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}

html.js-enabled .reveal {
  opacity: 0 !important;
  transform: translateY(34px) !important;
  transition: opacity .8s ease, transform .8s ease;
}

html.js-enabled .reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* v2 fixes: teacher details, about image, restored learning/pricing blocks */
.teacher-grid {
  align-items: start !important;
}

.teacher-card {
  align-self: start !important;
}

.teacher-info details {
  overflow: hidden;
}

.teacher-info summary {
  position: relative;
  list-style: none;
  transition: color .25s ease;
}

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

.teacher-info summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 8px;
  transition: transform .25s ease;
}

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

.teacher-bio {
  height: 0;
  max-height: none !important;
  overflow: hidden;
  opacity: 0;
  transition: height .42s ease, opacity .32s ease, transform .32s ease;
  transform: translateY(-6px);
}

.teacher-info details[open] .teacher-bio {
  opacity: 1;
  transform: translateY(0);
}

.about-photo-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #f7efe2, #dfe8e4);
  box-shadow: inset 0 0 0 1px rgba(184, 148, 94, .22), 0 22px 54px rgba(64, 47, 28, .11);
}

.about-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(184,148,94,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,250,241,.12), rgba(184,148,94,.10));
  pointer-events: none;
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  filter: saturate(.88) contrast(.98);
  transition: transform .7s ease;
}

.about-card:hover .about-photo-card img {
  transform: scale(1.035);
}

.learning {
  background:
    radial-gradient(circle at 14% 0%, rgba(184,148,94,.12), transparent 26%),
    linear-gradient(180deg, #f5eee2 0%, #eef5f1 100%);
}

.learning-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.learning-main,
.learning-step {
  border-radius: 32px;
  box-shadow: 0 22px 54px rgba(64, 47, 28, .10);
}

.learning-main {
  padding: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 14%, rgba(184,148,94,.24), transparent 32%),
    linear-gradient(135deg, #314641, #182521);
}

.learning-main .eyebrow {
  color: #f5c846;
}

.learning-main h2 {
  margin-bottom: 24px;
  font-family: Inter, Manrope, system-ui, sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -.06em;
  text-transform: none;
}

.learning-main p {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.82);
  line-height: 1.72;
}

.learning-main .btn {
  background: linear-gradient(135deg, #f5c846, #e7a32a);
  color: #1c251f;
}

.learning-step {
  padding: 34px 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(184,148,94,.14);
  transition: transform .3s ease, box-shadow .3s ease;
}

.learning-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(64, 47, 28, .15);
}

.learning-step span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 16px;
  background: #f5c846;
  color: #1f2b26;
  font-weight: 950;
}

.learning-step h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.22;
}

.learning-step p {
  color: var(--muted);
  line-height: 1.72;
}

.pricing {
  background:
    radial-gradient(circle at 70% 8%, rgba(245,200,70,.18), transparent 28%),
    linear-gradient(180deg, #f6f8f5 0%, #fbf7ef 100%);
}

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

.price-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(184,148,94,.14);
  box-shadow: 0 22px 54px rgba(64, 47, 28, .10);
  transition: transform .3s ease, box-shadow .3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 76px rgba(64, 47, 28, .15);
}

.price-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 76% 10%, rgba(245,200,70,.22), transparent 30%),
    linear-gradient(135deg, #334941, #1a2925);
}

.price-tag {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff1b8;
  color: #1e2824;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.price {
  margin: 0 0 24px;
  color: #e4a122;
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.price small {
  font-size: 20px;
}

.price-card.featured .price,
.price-card.featured .price small {
  color: #fff;
}

.price-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  color: var(--muted);
}

.price-card.featured ul {
  color: rgba(255,255,255,.82);
}

.price-card li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e4a122;
  font-weight: 950;
}

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

  .learning-main {
    grid-column: 1 / -1;
  }

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

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

  .learning-main,
  .learning-step,
  .price-card {
    padding: 26px;
  }

  .about-photo-card,
  .about-photo-card img {
    min-height: 300px;
  }
}


/* v3: full-size concert collage without cropping */
.concert-collage-section {
  padding: 104px 0 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(184,148,94,.15), transparent 28%),
    linear-gradient(180deg, #fffaf1 0%, #15120e 72%);
  overflow: hidden;
}

.concert-collage-head {
  max-width: 900px;
  text-align: center;
  margin-bottom: 54px;
}

.concert-collage-head h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--lux-ink, #27221d);
}

.concert-collage-head p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 720px;
  color: var(--lux-muted, #6f675e);
  line-height: 1.72;
}

.concert-collage {
  width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  background: #15120e;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 -24px 70px rgba(64, 47, 28, .12);
}

.concert-collage img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 640px) {
  .concert-collage-section {
    padding-top: 72px;
  }

  .concert-collage-head {
    margin-bottom: 34px;
  }

  .concert-collage-head h2 {
    font-size: 34px;
  }
}


/* v4: teacher cards equal closed height + working animated details */
.teacher-grid {
  align-items: start !important;
}

.teacher-card {
  min-height: 675px;
  align-self: start !important;
}

.teacher-info {
  display: flex !important;
  flex-direction: column !important;
  flex: 1;
}

.teacher-info small {
  margin-top: auto;
}

.teacher-info details {
  overflow: hidden;
}

.teacher-info summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  transition: color .25s ease;
}

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

.teacher-info summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 8px;
  transition: transform .25s ease;
}

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

.teacher-bio {
  height: 0;
  max-height: none !important;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: height .42s ease, opacity .32s ease, transform .32s ease;
}

.teacher-info details[open] .teacher-bio {
  opacity: 1;
  transform: translateY(0);
}

.teacher-bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1280px) {
  .teacher-card {
    min-height: 690px;
  }
}

@media (max-width: 640px) {
  .teacher-card {
    min-height: auto;
  }
}


/* v5: vertical video reviews */
.video-reviews {
  background:
    radial-gradient(circle at 12% 0%, rgba(184,148,94,.16), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, #f5eee2 100%);
}

.video-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.video-review-card {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 250, 241, .92);
  border: 1px solid rgba(184,148,94,.16);
  box-shadow: 0 24px 62px rgba(64,47,28,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.video-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(64,47,28,.16);
}

.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(circle at 50% 18%, rgba(184,148,94,.2), transparent 34%),
    linear-gradient(135deg, #1b1713, #3d3022);
  overflow: hidden;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(214,182,121,.34);
  border-radius: 24px;
  pointer-events: none;
  z-index: 2;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #15120e;
}

.video-review-info {
  padding: 24px 26px 28px;
}

.video-review-info h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.video-review-info p {
  margin: 0;
  color: var(--lux-muted, #6f675e);
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .video-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .video-review-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
  }

  .video-review-card {
    min-width: 82%;
    scroll-snap-align: start;
  }
}


/* v6: palette changed to match the sent teal/white GRATO reference */
:root {
  --lux-cream: #f4f7f4;
  --lux-cream-2: #fbfcf9;
  --lux-paper: #ffffff;
  --lux-ink: #132322;
  --lux-muted: #5d716e;
  --lux-gold: #5c7c78;
  --lux-gold-2: #8eaaa6;
  --lux-deep: #0e1d1d;
  --lux-line: rgba(92, 124, 120, .20);
  --lux-shadow: 0 26px 70px rgba(20, 43, 41, .11);

  --bg: #f4f7f4;
  --bg-accent: #e8f0ed;
  --card: #ffffff;
  --card-alt: #f8faf8;
  --text: #132322;
  --muted: #5d716e;
  --brand: #5c7c78;
  --brand-dark: #456460;
  --brand-deep: #132322;
  --brand-soft: #dbe7e4;
  --gold: #5c7c78;
  --gold-dark: #456460;
  --line: rgba(92, 124, 120, .20);
  --shadow: 0 26px 70px rgba(20, 43, 41, .11);
}

body,
body.luxury-style {
  color: #132322;
  background:
    radial-gradient(circle at 85% 0%, rgba(92, 124, 120, .12), transparent 28%),
    linear-gradient(180deg, #fbfcf9 0%, #f4f7f4 48%, #fbfcf9 100%);
}

/* Header */
.luxury-style .site-header,
.site-header {
  background: rgba(251, 252, 249, .92) !important;
  border-bottom: 1px solid rgba(92, 124, 120, .14) !important;
}

.luxury-style .nav a:not(.btn)::after,
.nav a:not(.btn)::after {
  background: #5c7c78 !important;
}

/* Buttons */
.luxury-style .btn,
.btn,
.nav-cta {
  background: linear-gradient(135deg, #5f807c, #3f5f5b) !important;
  color: #fff !important;
  box-shadow: 0 22px 44px rgba(63, 95, 91, .22) !important;
}

.luxury-style .btn:hover,
.btn:hover,
.nav-cta:hover {
  box-shadow: 0 28px 58px rgba(63, 95, 91, .30) !important;
}

.luxury-style .btn-ghost,
.btn-ghost,
.btn-light {
  background: #ffffff !important;
  color: #132322 !important;
  border: 1px solid rgba(92, 124, 120, .22) !important;
}

/* Hero colors */
.lux-hero {
  background: #f4f7f4 !important;
}

.lux-hero-shade {
  background:
    linear-gradient(90deg, rgba(251,252,249,.98) 0%, rgba(251,252,249,.90) 32%, rgba(251,252,249,.30) 58%, rgba(10,22,22,.28) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0)) !important;
}

.luxury-style .eyebrow,
.eyebrow,
.hero-note,
.hero-note p,
.play-link span,
.text-link {
  color: #5c7c78 !important;
}

.eyebrow.line::before,
.eyebrow.line::after {
  background: #5c7c78 !important;
}

.lux-hero h1 span:nth-child(2),
.lux-hero h1 span:nth-child(3),
.about-hero h2,
.price {
  color: #5c7c78 !important;
}

.play-link span {
  border-color: #5c7c78 !important;
  background: rgba(255,255,255,.58) !important;
}

.hero-quote {
  border-color: rgba(142,170,166,.55) !important;
  background: rgba(13, 29, 29, .58) !important;
}

.hero-quote p::before,
.hero-quote p::after {
  color: #8eaaa6 !important;
}

/* Light sections and cards */
.feature-strip,
.directions,
.about,
.about-school,
.teachers,
.reviews,
.contact-section,
.contacts,
.video-reviews {
  background:
    radial-gradient(circle at 12% 0%, rgba(92,124,120,.08), transparent 28%),
    linear-gradient(180deg, #fbfcf9 0%, #f4f7f4 100%) !important;
}

.feature > span,
.luxury-style .direction-card span,
.direction-card span {
  background: radial-gradient(circle, #ffffff 0%, #e8f0ed 100%) !important;
  color: #5c7c78 !important;
}

.feature,
.luxury-style .direction-card,
.direction-card,
.teacher-card,
.step-card,
.learning-step,
.price-card,
.review-grid blockquote,
.video-review-card,
.lead-form,
.about-card {
  border-color: rgba(92,124,120,.16) !important;
  background: rgba(255,255,255,.86) !important;
  box-shadow: 0 20px 54px rgba(20,43,41,.09) !important;
}

.luxury-style .direction-card:hover,
.direction-card:hover,
.teacher-card:hover,
.learning-step:hover,
.price-card:hover,
.video-review-card:hover {
  box-shadow: 0 32px 76px rgba(20,43,41,.14) !important;
}

/* Dark sections like in reference */
.learning,
.final-cta {
  background:
    radial-gradient(circle at 75% 12%, rgba(142,170,166,.18), transparent 28%),
    linear-gradient(180deg, #112423 0%, #081616 100%) !important;
}

.learning-main,
.price-card.featured,
.final-card,
.cta-card {
  background:
    radial-gradient(circle at 72% 12%, rgba(142,170,166,.16), transparent 32%),
    linear-gradient(135deg, #263f3c, #0d1e1d) !important;
  color: #fff !important;
  border-color: rgba(142,170,166,.24) !important;
}

.learning-main .eyebrow,
.final-card .eyebrow,
.cta-card .eyebrow,
.price-card.featured .price,
.price-card.featured .price small {
  color: #b8cbc7 !important;
}

.learning-main .btn {
  background: linear-gradient(135deg, #8eaaa6, #5f807c) !important;
  color: #fff !important;
}

.learning-main p,
.final-card p:not(.eyebrow),
.cta-card p:not(.eyebrow),
.price-card.featured ul {
  color: rgba(255,255,255,.78) !important;
}

.price-tag,
.learning-step span,
.price-card span,
.teacher-role,
.teacher-info span {
  background: rgba(92,124,120,.12) !important;
  color: #456460 !important;
}

.price-card.featured .price-tag,
.price-card.featured span {
  background: rgba(255,255,255,.12) !important;
  color: #dbe7e4 !important;
}

.price-card li::before,
.check-list li::before {
  color: #5c7c78 !important;
}

/* Inputs/social/map */
.contact-items a,
.contact-items span,
.social-links a,
.lead-form input,
.lead-form select,
.lead-form textarea {
  border-color: rgba(92,124,120,.20) !important;
  background: #fbfcf9 !important;
  color: #132322 !important;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #5c7c78 !important;
  box-shadow: 0 0 0 4px rgba(92,124,120,.12) !important;
}

.map-card {
  border-color: rgba(92,124,120,.18) !important;
  box-shadow: 0 26px 70px rgba(20,43,41,.11) !important;
}

.map-card .dg-widget-link a {
  color: #456460 !important;
}

/* Collage section */
.concert-collage-section {
  background:
    radial-gradient(circle at 78% 0%, rgba(92,124,120,.13), transparent 26%),
    linear-gradient(180deg, #fbfcf9 0%, #0d1e1d 72%) !important;
}

.concert-collage {
  background: #0d1e1d !important;
}

/* Video block */
.video-frame {
  background:
    radial-gradient(circle at 50% 18%, rgba(142,170,166,.22), transparent 34%),
    linear-gradient(135deg, #0d1e1d, #263f3c) !important;
}

.video-frame::before {
  border-color: rgba(184,203,199,.36) !important;
}

/* Footer */
.footer {
  background: #0d1e1d !important;
  color: rgba(255,255,255,.78) !important;
}

.footer .logo img {
  filter: brightness(0) invert(1);
  opacity: .86;
}

/* WhatsApp remains green but softer */
.whatsapp-float {
  background: #25c36a !important;
  box-shadow: 0 18px 40px rgba(37,195,106,.28) !important;
}


/* Mobile adaptation layer */
@media (max-width: 1024px) {
  .luxury-style .container,
  .container {
    width: min(100% - 48px, 920px);
  }

  .luxury-style .logo img {
    height: 96px;
  }

  .luxury-style .nav,
  .nav {
    gap: 18px;
    font-size: 14px;
  }

  .lux-hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
    min-height: auto;
    padding: 72px 0 64px;
  }

  .lux-hero-content {
    max-width: 720px;
  }

  .hero-quote {
    justify-self: start;
    max-width: 620px;
    margin: 0;
  }

  .feature-grid,
  .luxury-style .direction-grid,
  .direction-grid,
  .teacher-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-card,
  .luxury-style .about-card,
  .contact-grid,
  .luxury-style .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .luxury-style .header-inner,
  .header-inner {
    min-height: 76px;
  }

  .luxury-style .logo img,
  .logo img {
    height: 56px;
  }

  .burger {
    display: block;
    flex: 0 0 46px;
  }

  .luxury-style .nav,
  .nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(92,124,120,.18);
    border-radius: 18px;
    background: rgba(251,252,249,.98);
    box-shadow: 0 24px 70px rgba(20,43,41,.18);
  }

  .luxury-style .nav.active,
  .nav.active {
    display: flex;
  }

  .luxury-style .nav a,
  .nav a {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .luxury-style .nav a:not(.btn)::after,
  .nav a:not(.btn)::after {
    display: none;
  }

  .luxury-style .nav .btn,
  .nav .btn {
    width: 100%;
    margin-top: 8px;
  }

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

  .lux-hero-shade {
    background:
      linear-gradient(180deg, rgba(251,252,249,.98) 0%, rgba(251,252,249,.93) 54%, rgba(251,252,249,.74) 100%),
      linear-gradient(90deg, rgba(251,252,249,.96), rgba(251,252,249,.58)) !important;
  }

  .lux-hero-bg {
    background-position: 62% center;
    opacity: .46;
  }

  .lux-hero h1 {
    max-width: 100%;
    font-size: 48px;
    line-height: .98;
    letter-spacing: .04em;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.62;
  }

  .lux-hero .hero-actions {
    margin-bottom: 38px;
  }

  .play-link {
    width: fit-content;
  }

  .learning-grid,
  .pricing-grid,
  .video-review-grid {
    grid-template-columns: 1fr !important;
  }

  .teacher-card {
    min-height: auto !important;
  }

  .cta-card,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 76px;
  }

  .luxury-style .container,
  .container {
    width: min(100% - 28px, 1180px);
  }

  .luxury-style .section,
  .section {
    padding: 58px 0;
  }

  .lux-hero-inner {
    padding: 48px 0 44px;
  }

  .luxury-style .eyebrow,
  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: .14em;
  }

  .eyebrow.line {
    gap: 10px;
  }

  .eyebrow.line::before {
    width: 32px;
  }

  .lux-hero h1 {
    margin-bottom: 22px;
    font-size: 38px;
    letter-spacing: .025em;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .lux-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .btn,
  .luxury-style .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 14px;
    text-align: center;
  }

  .play-link {
    width: 100%;
    justify-content: center;
    font-size: 12px;
  }

  .play-link span {
    width: 46px;
    height: 46px;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-quote {
    padding: 18px;
  }

  .hero-quote p {
    padding: 0 16px;
    font-size: 17px;
  }

  .feature-grid,
  .luxury-style .direction-grid,
  .direction-grid,
  .teacher-grid,
  .review-grid,
  .benefit-grid {
    grid-template-columns: 1fr !important;
  }

  .feature,
  .direction-card,
  .learning-step,
  .price-card,
  .review-grid blockquote,
  .video-review-card {
    border-radius: 18px !important;
  }

  .luxury-style .section-head h2,
  .section-head h2,
  .luxury-style .about-content h2,
  .about-content h2,
  .luxury-style .cta-card h2,
  .cta-card h2,
  .luxury-style .contact-grid h2,
  .contact-grid h2,
  .learning-main h2,
  .concert-collage-head h2 {
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .luxury-style .about-card,
  .about-card,
  .luxury-style .cta-card,
  .cta-card,
  .luxury-style .lead-form,
  .lead-form,
  .learning-main,
  .learning-step,
  .price-card {
    padding: 22px;
    border-radius: 20px;
  }

  .about-photo-card,
  .about-photo-card img {
    min-height: 260px;
  }

  .luxury-style .teacher-photo,
  .teacher-photo {
    height: min(360px, 112vw);
  }

  .teacher-info,
  .video-review-info {
    padding: 20px;
  }

  .concert-collage-section {
    padding-top: 58px;
  }

  .concert-collage-head {
    margin-bottom: 28px;
  }

  .concert-collage {
    width: 100%;
    margin-left: 0;
  }

  .video-review-grid {
    display: grid;
    gap: 18px;
    overflow: visible;
    padding-bottom: 0;
  }

  .video-review-card {
    min-width: 0;
  }

  .video-frame {
    max-height: 72vh;
  }

  .contact-items,
  .social-links {
    gap: 10px;
  }

  .social-links a {
    flex: 1 1 140px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 48px;
    padding: 13px 14px;
  }

  .luxury-style .map-card,
  .map-card {
    min-height: 360px;
    border-radius: 18px;
  }

  .map-card iframe,
  .map-card > div:not(.dg-widget-link) {
    min-height: 320px !important;
  }

  .footer-links {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .luxury-style .container,
  .container {
    width: min(100% - 22px, 1180px);
  }

  .lux-hero h1 {
    font-size: 32px;
  }

  .luxury-style .section-head h2,
  .section-head h2,
  .luxury-style .about-content h2,
  .about-content h2,
  .luxury-style .cta-card h2,
  .cta-card h2,
  .luxury-style .contact-grid h2,
  .contact-grid h2,
  .learning-main h2,
  .concert-collage-head h2 {
    font-size: 27px;
  }

  .luxury-style .about-card,
  .about-card,
  .luxury-style .cta-card,
  .cta-card,
  .luxury-style .lead-form,
  .lead-form,
  .learning-main,
  .learning-step,
  .price-card {
    padding: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
