/* ===========================================================
   BondMusic — школа музыки Лизы Бонд
   =========================================================== */

:root{
  --burgundy: #7D2128;
  --burgundy-dark: #5A171C;
  --burgundy-soft: #A2444B;
  --taupe: #AFAAA3;
  --beige: #D2CEC6;
  --beige-light: #F5F1EA;
  --cream: #FBF9F5;
  --charcoal: #60605D;
  --ink: #231F20;
  --white: #FFFFFF;

  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 24px 60px -28px rgba(35,31,32,.35);
  --shadow-card: 0 18px 40px -22px rgba(35,31,32,.28);

  --ff-head: "Oswald", "Bangla MN", "Arial Narrow", sans-serif;
  --ff-body: "Lato", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; background: none; border: none; cursor: pointer; }
h1,h2,h3{ font-family: var(--ff-head); font-weight: 600; line-height: 1.08; margin: 0; color: var(--ink); letter-spacing: .01em; }

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

.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--burgundy); color:#fff; padding: 12px 18px; border-radius: 8px; z-index: 999;
}
.skip-link:focus{ left: 20px; top: 20px; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 30px; border-radius: 999px;
  font-family: var(--ff-body); font-weight: 700; font-size: 15px;
  letter-spacing: .01em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--burgundy); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(125,33,40,.55);
}
.btn-primary:hover{ background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(125,33,40,.6); }
.btn-outline{
  border: 1.5px solid var(--burgundy); color: var(--burgundy); background: transparent; padding: 12px 26px; font-size: 14px;
}
.btn-outline:hover{ background: var(--burgundy); color: #fff; transform: translateY(-2px); }
.btn-white{ background: #fff; color: var(--burgundy); }
.btn-white:hover{ transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(0,0,0,.35); }
.btn-lg{ padding: 18px 36px; font-size: 16px; }
.btn-compact{ padding: 11px 22px; font-size: 14px; }

/* ---------- header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,245,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(35,31,32,.06);
}
.header-inner{
  display: flex; align-items: center; gap: 28px; height: 78px;
}
.logo{ flex: 0 0 auto; height: 100%; display: flex; align-items: center; }
.logo img{ height: 56px; width: auto; }
.nav{ flex: 1; display: flex; justify-content: center; }
.nav-list{ display: flex; align-items: center; gap: 6px; }
.nav-link{
  padding: 10px 16px; border-radius: 999px; font-size: 15px; font-weight: 400;
  color: var(--ink); display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover{ background: var(--beige-light); color: var(--burgundy); }
.chevron{
  width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); margin-left: 2px; transition: transform .2s ease;
}
.has-dropdown{ position: relative; }
.has-dropdown:hover .chevron{ transform: rotate(225deg) translateY(2px); }
.has-dropdown::after{
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  top: 100%; width: 190px; height: 10px;
}
.dropdown{
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-soft);
  padding: 10px; min-width: 190px; opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown{
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a{
  display: block; padding: 10px 14px; border-radius: 10px; font-size: 14.5px; color: var(--charcoal);
  transition: background .2s ease, color .2s ease;
}
.dropdown a:hover{ background: var(--beige-light); color: var(--burgundy); }
.header-cta{ flex: 0 0 auto; }

.burger{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; flex: 0 0 auto;
}
.burger span{ display:block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
  display: none; max-height: 0; overflow: hidden; background: var(--cream);
  transition: max-height .35s ease;
}
.mobile-menu.open{ max-height: 640px; }
.mobile-list{ padding: 10px 24px; }
.mobile-list > li{ border-bottom: 1px solid rgba(35,31,32,.08); }
.mobile-list > li > a, .mobile-toggle{
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 16px 4px; font-size: 16px; color: var(--ink);
}
.mobile-sub{ max-height: 0; overflow: hidden; transition: max-height .3s ease; padding-left: 12px; }
.mobile-accordion.open .mobile-sub{ max-height: 240px; }
.mobile-accordion.open .chevron{ transform: rotate(225deg); }
.mobile-sub a{ display: block; padding: 10px 4px; font-size: 15px; color: var(--charcoal); }
.mobile-cta{ margin: 18px 24px 24px; width: calc(100% - 48px); }

/* ---------- hero ---------- */
.hero{
  position: relative; padding: 72px 0 120px; overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige-light) 100%);
}
.hero-blob{
  position: absolute; border-radius: 63% 37% 54% 46% / 43% 37% 63% 57%;
  filter: blur(2px); opacity: .5; z-index: 0; animation: drift 16s ease-in-out infinite;
}
.hero-blob--1{ width: 480px; height: 480px; background: var(--beige); top: -160px; right: -140px; }
.hero-blob--2{ width: 320px; height: 320px; background: var(--taupe); opacity: .28; bottom: -120px; left: -100px; animation-delay: -6s; }
@keyframes drift{
  0%,100%{ transform: translate(0,0) rotate(0deg); }
  50%{ transform: translate(-18px, 22px) rotate(8deg); }
}
.hero-inner{
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.eyebrow{
  font-family: var(--ff-head); text-transform: uppercase; letter-spacing: .16em; font-size: 13px;
  color: var(--burgundy); margin: 0 0 14px;
}
.eyebrow--center{ text-align: center; }
h1{ font-size: clamp(42px, 6vw, 68px); text-transform: uppercase; }
.hero-sub{ font-size: 18px; color: var(--charcoal); max-width: 480px; margin: 22px 0 32px; }
.hero-actions{ display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-badge{
  font-size: 14px; font-weight: 700; color: var(--burgundy); background: rgba(125,33,40,.08);
  padding: 10px 18px; border-radius: 999px;
}
.hero-media{ position: relative; }
.hero-photo-frame{ position: relative; max-width: 380px; margin: 0 auto; }
.hero-photo-frame img{
  border-radius: 63% 37% 48% 52% / 52% 42% 58% 48%;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4; object-fit: cover; width: 100%;
  position: relative; z-index: 2;
}
.vinyl-ring{
  position: absolute; z-index: 1; border-radius: 50%;
  border: 2px solid var(--burgundy); opacity: .35;
}
.hero-photo-frame .vinyl-ring{ width: 120px; height: 120px; bottom: -30px; left: -34px; }
.hero-photo-frame::after{
  content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--burgundy); bottom: 26px; left: 26px; z-index: 3;
}
.wave-divider{ position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 90px; }
.wave-divider path{ fill: var(--beige-light); }

/* ---------- trust strip ---------- */
.trust{ background: var(--beige-light); padding: 0 0 76px; }
.trust-grid{
  display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 20px;
}
.trust-item{
  background: #fff; border-radius: var(--radius-md); padding: 30px 26px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
a.trust-item{ background: var(--burgundy); color: #fff; }
.trust-item--main .trust-num{ color: #fff; }
.trust-item:hover{ transform: translateY(-4px); }
.trust-num{ font-family: var(--ff-head); font-size: 40px; color: var(--burgundy); }
.trust-label{ font-size: 15px; color: var(--charcoal); line-height: 1.45; }
a.trust-item .trust-label{ color: rgba(255,255,255,.85); }
a.trust-item .trust-label em{ display: block; font-style: normal; color: #fff; font-weight: 700; margin-top: 8px; }

/* ---------- sections ---------- */
.section{ padding: 96px 0; }
.section-head{ text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2{ font-size: clamp(28px, 4vw, 38px); text-transform: uppercase; }
.section-sub{ font-size: 17px; color: var(--charcoal); margin-top: 16px; }

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

.card{
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.card:hover{ transform: translateY(-6px); box-shadow: 0 30px 60px -26px rgba(35,31,32,.32); }
.card-photo{
  height: 180px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--beige-light), var(--beige));
  color: var(--burgundy);
}
.card-icon{ width: 68px; height: 68px; opacity: .8; }
.card-photo img{ width: 100%; height: 100%; object-fit: cover; }
.card-body{ padding: 28px 26px 30px; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.card-body h3{ font-size: 21px; text-transform: uppercase; }
.card-body p{ font-size: 15.5px; color: var(--charcoal); margin: 0; flex: 1; }
.card-body .btn{ align-self: flex-start; margin-top: 6px; }

/* kids section warmth */
.section--kids{ position: relative; background: #FBF0EA; overflow: hidden; }
.kids-blob{
  position: absolute; width: 620px; height: 620px; right: -220px; top: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(125,33,40,.10), transparent 70%);
  border-radius: 50%;
}
.card--kids .card-photo{ background: linear-gradient(135deg, #FBEAE2, #F2CFC3); }

/* ---------- about ---------- */
.about-grid{ display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.about-photo{ position: relative; max-width: 380px; }
.about-photo img{
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4; object-fit: cover;
}
.vinyl-ring--about{ width: 160px; height: 160px; top: -40px; right: -40px; left: auto; opacity: .5; border-color: var(--taupe); }
.about-text h2{ font-size: clamp(28px, 4vw, 38px); text-transform: uppercase; margin-bottom: 22px; max-width: 460px; }
.about-text p{ font-size: 17px; color: var(--charcoal); margin: 0 0 18px; max-width: 520px; }
.signature{ margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(35,31,32,.12); display: flex; flex-direction: column; gap: 2px; }
.signature-name{ font-family: var(--ff-head); font-size: 20px; text-transform: uppercase; color: var(--burgundy); }
.signature-role{ font-size: 14px; color: var(--charcoal); }

/* ---------- teachers ---------- */
.teachers{ background: var(--beige-light); }
.card-row--teachers{ display: flex; flex-wrap: wrap; justify-content: center; }
.card-row--teachers .teacher-card{ flex: 1 1 300px; max-width: 340px; }
.card-row--teachers-5 .teacher-card{ flex-basis: 180px; max-width: 210px; }
.teacher-card{ text-align: center; }
.teacher-photo{
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
  aspect-ratio: 3/4; margin-bottom: 20px;
}
.teacher-photo img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.teacher-card:hover .teacher-photo img{ transform: scale(1.05); }
.teacher-card h3{ font-size: 22px; text-transform: uppercase; }
.teacher-role{ color: var(--burgundy); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin: 6px 0 10px; }
.teacher-note{ font-size: 15px; color: var(--charcoal); max-width: 260px; margin: 0 auto; }

/* ---------- proof ---------- */
.proof-grid{ display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.proof-photo img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); aspect-ratio: 3/2; object-fit: cover; }
.proof-text h2{ font-size: clamp(26px, 3.6vw, 34px); text-transform: uppercase; margin-bottom: 18px; }
.proof-text p{ font-size: 16.5px; color: var(--charcoal); margin: 0 0 26px; }

/* ---------- prices ---------- */
.prices{ text-align: center; background: linear-gradient(180deg, var(--cream), var(--beige-light)); }
.prices .section-head{ margin-bottom: 34px; }

/* ---------- final cta ---------- */
.cta-final{
  position: relative; overflow: hidden; background: var(--burgundy); padding: 100px 0; color: #fff;
}
.cta-blob{
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 65%);
  top: -300px; left: 50%; transform: translateX(-50%);
}
.cta-final-inner{ position: relative; text-align: center; max-width: 620px; }
.cta-final h2{ color: #fff; font-size: clamp(30px, 4.4vw, 44px); text-transform: uppercase; }
.cta-final p{ font-size: 17px; color: rgba(255,255,255,.85); margin: 18px 0 34px; }

/* ---------- footer ---------- */
.footer{ background: var(--ink); color: rgba(255,255,255,.85); padding: 70px 0 0; }
.footer-grid{ display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; padding-bottom: 50px; }
.footer-logo{
  width: 92px; height: 92px; border-radius: 20px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; box-shadow: 0 14px 30px -14px rgba(0,0,0,.5);
}
.footer-logo img{ width: 74%; height: 74%; object-fit: contain; }
.footer-address{ font-size: 15.5px; line-height: 1.6; margin: 0 0 6px; color: rgba(255,255,255,.75); }
.footer-hours{ font-size: 13.5px; margin: 0 0 14px; color: rgba(255,255,255,.55); }
.footer-contact-line a{ font-size: 20px; font-family: var(--ff-head); letter-spacing: .02em; }
.footer-links{ display: flex; gap: 22px; margin-top: 18px; flex-wrap: wrap; }
.footer-link-small{ font-size: 14px; text-decoration: underline; text-underline-offset: 3px; color: rgba(255,255,255,.7); }
.footer-map iframe{ border-radius: var(--radius-md); overflow: hidden; display: block; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ---------- reviews (real yandex maps screenshots) ---------- */
.reviews-strip{
  display: flex; gap: 22px; overflow-x: auto; padding: 6px 4px 22px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.review-shot{
  flex: 0 0 300px; margin: 0; scroll-snap-align: start;
  border-radius: var(--radius-md); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-card); transition: transform .3s ease, box-shadow .3s ease;
}
.review-shot:hover{ transform: translateY(-5px); box-shadow: 0 26px 50px -24px rgba(35,31,32,.32); }
.review-shot img{ width: 100%; height: auto; display: block; }
.reviews-foot{ text-align: center; }

/* ---------- gift certificate mockup ---------- */
.cert-pair{ display: flex; gap: 30px; align-items: center; justify-content: center; flex-wrap: wrap; }
.cert-card{
  width: 340px; aspect-ratio: 1258/894; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-soft); flex: 0 0 auto;
}
.cert-card img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.cert-hero-frame{ width: 100%; max-width: 380px; margin: 0 auto; }
.cert-hero-frame .cert-card{ width: 100%; transform: rotate(-2deg); }

/* ---------- policy / legal text pages ---------- */
.policy-hero{ padding: 70px 0 20px; text-align: center; }
.policy-hero .eyebrow{ display: block; }
.policy-content{ max-width: 760px; margin: 0 auto; padding-bottom: 40px; }
.policy-content h2{
  font-size: 21px; text-transform: uppercase; color: var(--burgundy);
  margin: 40px 0 12px;
}
.policy-content h2:first-child{ margin-top: 0; }
.policy-content p, .policy-content li{ font-size: 15.5px; line-height: 1.75; color: var(--charcoal); margin: 0 0 14px; }
.policy-content ul{ padding-left: 20px; margin: 0 0 14px; }
.policy-content a{ color: var(--burgundy); text-decoration: underline; text-underline-offset: 2px; }
.policy-updated{ font-size: 13px; color: var(--taupe); margin-top: 36px; }

/* ---------- photo gallery ---------- */
.gallery-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px;
}
.gallery-item{
  position: relative; display: block; padding: 0; margin: 0; border: none; background: none;
  cursor: pointer; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card);
  font: inherit;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item--wide{ grid-column: span 2; }
.gallery-item--tall{ grid-row: span 2; }
.gallery-cta{ text-align: center; margin-top: 44px; }

.lightbox{
  position: fixed; inset: 0; z-index: 1000; background: rgba(20,16,16,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.lightbox.open{ opacity: 1; visibility: visible; }
.lightbox-img{
  max-width: 88vw; max-height: 84vh; border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-close, .lightbox-nav{
  position: absolute; border: none; cursor: pointer; color: #fff; background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover{ background: rgba(255,255,255,.26); }
.lightbox-close{ top: 24px; right: 28px; width: 44px; height: 44px; border-radius: 50%; font-size: 26px; line-height: 1; }
.lightbox-nav{ top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; font-size: 28px; }
.lightbox-prev{ left: 20px; }
.lightbox-next{ right: 20px; }

.gallery-teaser-grid{
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 40px;
}
.gallery-teaser-grid img{
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  border-radius: var(--radius-md); box-shadow: var(--shadow-card); transition: transform .3s ease;
}
.gallery-teaser-grid:hover img{ transform: scale(1.04); }

/* ---------- 404 page ---------- */
.error-section{
  position: relative; overflow: hidden; text-align: center;
  padding: 130px 0 110px; background: linear-gradient(180deg, var(--cream) 0%, var(--beige-light) 100%);
  min-height: 72vh; display: flex; align-items: center;
}
.error-wrap{ max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.error-vinyl{
  width: 180px; height: 180px; margin: 0 auto 34px; border-radius: 50%; position: relative;
  background:
    radial-gradient(circle at center, var(--burgundy) 0 9%, transparent 9.5% 100%),
    repeating-radial-gradient(circle at center, #2c2827 0, #2c2827 2px, #413c3a 2px, #413c3a 6px);
  box-shadow: var(--shadow-soft);
  animation: vinylSkip 2.6s ease-in-out infinite;
}
.error-vinyl::after{
  content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px;
  border-radius: 50%; background: var(--cream); transform: translate(-50%, -50%);
}
@keyframes vinylSkip{
  0%   { transform: rotate(0deg); }
  38%  { transform: rotate(130deg); }
  40%  { transform: rotate(114deg); }
  42%  { transform: rotate(136deg); }
  44%  { transform: rotate(122deg); }
  75%  { transform: rotate(300deg); }
  100% { transform: rotate(430deg); }
}
.error-code{
  font-family: var(--ff-head); font-size: clamp(70px, 12vw, 130px); line-height: 1; color: var(--burgundy);
  letter-spacing: .02em; margin-bottom: 6px;
}
.error-text{ font-size: 17px; color: var(--charcoal); max-width: 480px; margin: 18px auto 36px; line-height: 1.6; }
.error-actions{ display: flex; justify-content: center; margin-bottom: 34px; }
.error-links{ display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.error-links a{
  font-size: 14px; padding: 9px 18px; border-radius: 999px; border: 1.5px solid rgba(125,33,40,.25);
  color: var(--burgundy); transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.error-links a:hover{ background: var(--burgundy); color: #fff; border-color: var(--burgundy); }

/* ---------- success (thank-you) pages ---------- */
.success-section{
  position: relative; overflow: hidden; text-align: center;
  padding: 120px 0 90px; background: linear-gradient(180deg, var(--cream) 0%, var(--beige-light) 100%);
}
.success-wrap{ max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.success-icon{
  width: 72px; height: 72px; border-radius: 50%; background: var(--burgundy); color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 26px;
  box-shadow: 0 16px 32px -14px rgba(125,33,40,.5);
}
.success-icon svg{ width: 32px; height: 32px; }
.success-text{ font-size: 17px; line-height: 1.6; color: var(--charcoal); margin: 20px auto 0; max-width: 520px; }
.success-cta-label{ font-size: 16px; font-weight: 700; color: var(--ink); margin: 40px 0 20px; }
.success-actions{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.success-note{ font-size: 13.5px; color: var(--charcoal); max-width: 480px; margin: 0 auto; }
.success-note strong{ color: var(--ink); }
.faq-mini--3{ grid-template-columns: repeat(3, 1fr); max-width: 1000px; }

/* ---------- statement banner (full-bleed photo + overlay text) ---------- */
.statement-banner{
  position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background-size: cover; background-position: center;
}
.statement-banner::before{
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(35,31,32,.55), rgba(35,31,32,.7));
}
.statement-inner{ position: relative; z-index: 1; max-width: 680px; padding: 0 28px; }
.statement-inner h2{ color: #fff; font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; margin-bottom: 18px; }
.statement-inner p{ color: rgba(255,255,255,.9); font-size: 18px; margin: 0; }
.statement-banner--solid{ background: var(--burgundy); }
.statement-banner--solid::before{ background: linear-gradient(160deg, rgba(90,23,28,.15), rgba(35,31,32,.05)); }

/* ---------- kids landing: warmer hero ---------- */
.hero--kids{ background: linear-gradient(180deg, var(--cream) 0%, #FBEAE2 100%); }

/* ---------- tracks (novice / continuing, guitar block 5) ---------- */
.tracks{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 46px; }
.track-card{
  background: #fff; border-radius: var(--radius-md); padding: 30px 28px; box-shadow: var(--shadow-card);
  border-left: 4px solid var(--burgundy);
}
.track-card h3{ font-size: 19px; text-transform: uppercase; margin-bottom: 10px; color: var(--burgundy); }
.track-card p{ font-size: 15.5px; color: var(--charcoal); margin: 0; }

/* ---------- roadmap (block 5, time-based milestones) ---------- */
.roadmap{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.milestone{ text-align: center; }
.milestone-badge{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 7px 16px; border-radius: 999px; background: var(--burgundy); color: #fff;
  font-family: var(--ff-head); font-size: 13px; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 16px;
}
.milestone h3{ font-size: 17px; text-transform: uppercase; margin-bottom: 8px; }
.milestone p{ font-size: 15px; color: var(--charcoal); margin: 0; }

.roadmap-grid{ display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.roadmap-photo img{ width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); aspect-ratio: 4/5; object-fit: cover; }

/* ---------- faq mini (block 7, physical barriers) ---------- */
.faq-mini{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.faq-item{ background: #fff; border-radius: var(--radius-md); padding: 30px 28px; box-shadow: var(--shadow-card); }
.faq-item h3{ font-size: 17.5px; color: var(--burgundy); margin-bottom: 10px; }
.faq-item p{ font-size: 15.5px; color: var(--charcoal); margin: 0; }

/* ---------- vokal landing: shared tint ---------- */
.section--tint{ background: var(--beige-light); }

/* ---------- fears block ---------- */
.fears-grid{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.fear-card{
  position: relative; background: #fff; border-radius: var(--radius-md);
  padding: 34px 30px 28px; box-shadow: var(--shadow-card);
}
.fear-card--wide{ grid-column: 1 / -1; }
.fears-grid--3{ grid-template-columns: repeat(3, 1fr); }
.fear-quote{
  position: absolute; top: 6px; left: 22px; font-family: var(--ff-head);
  font-size: 64px; line-height: 1; color: var(--beige); z-index: 0;
}
.fear-card h3{ position: relative; font-size: 19px; text-transform: uppercase; margin-bottom: 10px; color: var(--burgundy); }
.fear-card p{ position: relative; font-size: 15.5px; color: var(--charcoal); margin: 0; }

/* ---------- advantages ---------- */
.advantages{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 780px; margin: 0 auto; }
.advantages--wide{ max-width: 920px; grid-template-columns: repeat(3, 1fr); }
.advantage-item{
  display: flex; align-items: center; gap: 16px; background: #fff;
  border-radius: var(--radius-sm); padding: 20px 24px; box-shadow: var(--shadow-card);
}
.advantage-icon{ width: 26px; height: 26px; color: var(--burgundy); flex: 0 0 auto; }
.advantage-item p{ margin: 0; font-size: 16px; color: var(--ink); }

/* ---------- steps ---------- */
.steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step{ text-align: center; }
.step-num{
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--burgundy); color: #fff;
  font-family: var(--ff-head); font-size: 18px; margin-bottom: 18px;
}
.step h3{ font-size: 18px; text-transform: uppercase; margin-bottom: 8px; }
.step p{ font-size: 15px; color: var(--charcoal); margin: 0; }

/* ---------- pricing ---------- */
.trial-highlight{
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--burgundy); color: #fff; border-radius: var(--radius-lg);
  padding: 34px 40px; margin-bottom: 40px;
}
.trial-highlight-text .hero-badge{ background: rgba(255,255,255,.16); color: #fff; margin-bottom: 12px; display: inline-block; }
.trial-highlight-text p{ margin: 0; font-size: 15.5px; color: rgba(255,255,255,.85); max-width: 420px; }

.price-cards{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 30px; }
.price-card{
  background: #fff; border-radius: var(--radius-md); padding: 30px 26px; text-align: center;
  box-shadow: var(--shadow-card); border: 2px solid transparent;
}
.price-card--accent{ border-color: var(--burgundy); }
.price-tag{
  display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  background: var(--burgundy); color: #fff; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.price-tag--muted{ background: var(--taupe); }
.price-card h3{ font-size: 18px; text-transform: uppercase; margin-bottom: 8px; }
.price-value{ font-family: var(--ff-head); font-size: 30px; color: var(--burgundy); margin: 0 0 6px; }
.price-per{ font-size: 14px; color: var(--charcoal); margin: 0; }

.price-toggle{
  display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 auto 6px;
  font-size: 15px; font-weight: 700; color: var(--burgundy); padding: 10px 20px;
}
.price-toggle .chevron{ margin-left: 0; }
.price-toggle[aria-expanded="true"] .chevron{ transform: rotate(225deg) translateY(2px); }

.price-table-wrap{ max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.price-table-wrap.open{ max-height: 480px; }
.price-table-scroll{ overflow-x: auto; margin: 26px 0 6px; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); }
.price-table{ width: 100%; min-width: 560px; border-collapse: collapse; background: #fff; }
.price-table th, .price-table td{ padding: 14px 18px; text-align: left; font-size: 14.5px; }
.price-table thead th{ background: var(--beige-light); color: var(--charcoal); font-weight: 700; text-transform: uppercase; font-size: 12.5px; letter-spacing: .03em; }
.price-table tbody tr:not(:last-child) td{ border-bottom: 1px solid rgba(35,31,32,.08); }
.prices-cta{ text-align: center; margin-top: 34px; }

/* ---------- lead form ---------- */
.lead-inner{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; text-align: left; max-width: 980px; }
.lead-copy h2{ color: #fff; }
.lead-copy p{ color: rgba(255,255,255,.85); margin: 16px 0 26px; font-size: 16px; }
.messenger-links{ display: flex; gap: 14px; flex-wrap: wrap; }
.lead-form{
  background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 16px;
}
.lead-field{ display: flex; flex-direction: column; gap: 6px; text-align: left; }
.lead-field span{ font-size: 13px; font-weight: 700; color: var(--charcoal); text-transform: uppercase; letter-spacing: .03em; }
.lead-field input, .lead-field select{
  border: 1.5px solid rgba(35,31,32,.15); border-radius: 12px; padding: 13px 16px;
  font-family: var(--ff-body); font-size: 16px; color: var(--ink); background: var(--cream);
  transition: border-color .2s ease;
}
.lead-field select{ cursor: pointer; }
.lead-field input:focus, .lead-field select:focus{ outline: none; border-color: var(--burgundy); }
.lead-submit{ width: 100%; margin-top: 4px; }
.lead-form .lead-note{ font-size: 12.5px; color: var(--charcoal); text-align: center; margin: 0; }
.lead-form .lead-note a{ color: var(--burgundy); text-decoration: underline; text-underline-offset: 2px; }

.lead-consent{
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 10px; text-align: left; cursor: pointer;
  font-size: 13.5px; line-height: 1.45; color: var(--charcoal);
}
.lead-consent input[type="checkbox"]{
  width: 17px; height: 17px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--burgundy); cursor: pointer;
}
.lead-consent a{ color: var(--burgundy); text-decoration: underline; text-underline-offset: 2px; }

.field-error{ display: block; font-size: 12.5px; color: #C0392B; margin-top: 5px; text-align: left; }
.lead-field.invalid input{ border-color: #C0392B; background: #FDF3F2; }
.lead-consent.invalid{ color: #C0392B; }
.lead-consent .field-error{ flex-basis: 100%; margin-top: -2px; margin-left: 27px; }

/* ---------- reveal-on-scroll ---------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px){
  .nav, .header-cta{ display: none; }
  .burger{ display: flex; }
  .mobile-menu{ display: block; }

  .hero-inner{ grid-template-columns: 1fr; text-align: center; }
  .hero-sub{ margin-left: auto; margin-right: auto; }
  .hero-actions{ justify-content: center; }
  .hero-photo-frame, .cert-hero-frame{ order: -1; margin-bottom: 10px; }

  .trust-grid{ grid-template-columns: 1fr; }
  .card-row{ grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .card-row--teachers .teacher-card{ flex-basis: 100%; max-width: 340px; }

  .about-grid{ grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .about-photo{ margin: 0 auto; }
  .about-text p{ margin-left: auto; margin-right: auto; }
  .signature{ align-items: center; }

  .proof-grid{ grid-template-columns: 1fr; text-align: center; }
  .proof-text .btn{ margin: 0 auto; }

  .footer-grid{ grid-template-columns: 1fr; text-align: center; }
  .footer-logo{ margin-left: auto; margin-right: auto; }
  .footer-links{ justify-content: center; }

  .fears-grid{ grid-template-columns: 1fr; }
  .advantages{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .price-cards{ grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .trial-highlight{ flex-direction: column; text-align: center; justify-content: center; }
  .trial-highlight-text p{ margin-left: auto; margin-right: auto; }
  .lead-inner{ grid-template-columns: 1fr; text-align: center; max-width: 520px; }
  .lead-copy p{ margin-left: auto; margin-right: auto; }
  .messenger-links{ justify-content: center; }

  .fears-grid--3{ grid-template-columns: 1fr; }
  .tracks{ grid-template-columns: 1fr; }
  .roadmap{ grid-template-columns: 1fr; }
  .roadmap-grid{ grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .roadmap-photo{ max-width: 360px; margin: 0 auto; }
  .tracks{ text-align: left; }
  .faq-mini{ grid-template-columns: 1fr; }
  .statement-banner{ min-height: 340px; }

  .gallery-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .gallery-teaser-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px){
  .section{ padding: 68px 0; }
  .hero{ padding: 48px 0 90px; }
  .btn-lg{ width: 100%; white-space: normal; text-align: center; line-height: 1.3; }
  .hero-actions{ flex-direction: column; align-items: stretch; }

  .steps{ grid-template-columns: 1fr; }
  .lead-form{ padding: 26px 22px; }
  .messenger-links{ flex-direction: column; align-items: stretch; }
  .price-table{ font-size: 13px; }
  .price-table th, .price-table td{ padding: 10px 10px; }

  .review-shot{ flex-basis: 78vw; }

  .cert-card{ width: 100%; max-width: 340px; }

  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: 10px; }
  .gallery-item--wide{ grid-column: span 2; }
  .gallery-item--tall{ grid-row: span 1; }
  .lightbox-nav{ width: 42px; height: 42px; font-size: 22px; }
  .lightbox-prev{ left: 8px; }
  .lightbox-next{ right: 8px; }
  .lightbox-close{ top: 14px; right: 14px; }
}

/* honeypot field — invisible to people, present in the DOM for bots */
.hp-field{
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
