/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #faf7f2;
  --ivory:   #f3ede3;
  --gold:    #b8860b;
  --gold-lt: #d4a843;
  --brown:   #3d2b1f;
  --text:    #2c2016;
  --muted:   #7a6652;
  --white:   #ffffff;
  --shadow:  0 4px 24px rgba(0,0,0,0.10);
  --radius:  6px;
  --nav-h:   72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Georgia', serif; font-weight: normal; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); line-height: 1.25; }
h3 { font-size: 1.25rem; }
p  { max-width: 65ch; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

/* ─── Navigation ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,134,11,0.2);
}

.nav-logo {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none;
}
.nav-logo .logo-name {
  font-size: 1.1rem; color: var(--brown); letter-spacing: 0.04em;
}
.nav-logo .logo-sub {
  font-size: 0.7rem; color: var(--gold); letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2.4rem; list-style: none;
}
.nav-links a {
  color: var(--brown); font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--brown); transition: 0.3s;
}

/* ─── Page wrapper ─── */
main { padding-top: var(--nav-h); }

/* ─── Hero ─── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--brown) 0%, #5a3e2b 55%, #7a5540 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 6rem 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-text { color: var(--white); }
.hero-text .tagline {
  font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.2rem;
}
.hero-text h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero-text p {
  font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 2.4rem;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  font-family: 'Georgia', serif; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius); transition: 0.25s; cursor: pointer;
  border: none; text-decoration: none;
}
.btn-primary {
  background: var(--gold); color: var(--white);
}
.btn-primary:hover { background: var(--gold-lt); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.violin-emblem {
  width: 260px; height: 260px;
  border: 1.5px solid rgba(184,134,11,0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.violin-emblem::before {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid rgba(184,134,11,0.2); border-radius: 50%;
}
.violin-icon { font-size: 7rem; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }

/* ─── Section base ─── */
section { padding: 5rem 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
}
.section-title { color: var(--brown); margin-bottom: 1.4rem; }
.divider {
  width: 48px; height: 2px; background: var(--gold);
  margin-bottom: 2.5rem;
}

/* ─── Features strip (home) ─── */
.features {
  background: var(--ivory);
}
.features-list {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}
.feature-item {
  display: flex; gap: 1.8rem; align-items: flex-start;
  padding: 2.4rem 2.4rem 2.4rem 0;
  border-bottom: 1px solid rgba(184,134,11,0.18);
}
.feature-item:nth-child(odd) { padding-right: 3rem; border-right: 1px solid rgba(184,134,11,0.18); }
.feature-item:nth-child(even) { padding-left: 3rem; }
.feature-item:nth-last-child(-n+2) { border-bottom: none; }

.feature-num {
  font-size: 0.75rem; letter-spacing: 0.15em; color: var(--gold);
  font-family: 'Georgia', serif; padding-top: 0.25rem; flex-shrink: 0;
}
.feature-item h3 { color: var(--brown); margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-item p  { color: var(--muted); font-size: 0.97rem; max-width: none; line-height: 1.65; }

@media (max-width: 640px) {
  .features-list { grid-template-columns: 1fr; }
  .feature-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .feature-item:nth-child(even) { padding-left: 0; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(184,134,11,0.18); }
  .feature-item:last-child { border-bottom: none; }
}

/* ─── Pricing text block ─── */
.pricing-text { max-width: 680px; }
.pricing-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.pricing-text strong { color: var(--brown); }

/* ─── Organized Lessons (home) ─── */
.organized-layout { max-width: 680px; }
.lesson-bullets {
  list-style: none; margin-top: 1.6rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.lesson-bullets li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 1.05rem; color: var(--text); line-height: 1.6;
}
.lesson-bullets li::before {
  content: ''; flex-shrink: 0;
  width: 20px; height: 20px; margin-top: 2px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23b8860b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ─── About strip (home) ─── */
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img {
  background: linear-gradient(160deg, var(--brown) 0%, #7a5540 100%);
  border-radius: var(--radius); min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.about-img .big-icon { font-size: 9rem; opacity: 0.75; }
.about-text p { color: var(--muted); margin-bottom: 1.2rem; }
.about-text .stats {
  display: flex; gap: 2.5rem; margin-top: 2rem;
}
.stat strong {
  display: block; font-size: 2rem; color: var(--gold); line-height: 1;
}
.stat span { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── Testimonials ─── */
.testimonials { background: var(--brown); }
.testimonials .section-label { color: var(--gold-lt); }
.testimonials .section-title { color: var(--white); }
.testimonials .divider { background: var(--gold-lt); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.07); padding: 2rem 1.8rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.testimonial-card blockquote {
  color: rgba(255,255,255,0.85); font-style: italic; font-size: 1rem;
  margin-bottom: 1.2rem;
}
.testimonial-card cite {
  font-style: normal; font-size: 0.85rem; color: var(--gold-lt);
}

/* ─── CTA band ─── */
.cta-band {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 100%);
  text-align: center; padding: 4rem 5%;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.88); margin: 0 auto 2rem; }
.btn-white {
  background: var(--white); color: var(--gold);
}
.btn-white:hover { background: var(--cream); color: var(--gold); }

/* ─── Lessons page ─── */
.page-hero {
  background: linear-gradient(135deg, var(--brown) 0%, #5a3e2b 100%);
  padding: 5rem 5% 4rem;
  text-align: center; color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.8); margin: 0 auto; max-width: 56ch; }

.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem; margin-top: 1rem;
}
.package-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s;
}
.package-card:hover { transform: translateY(-4px); }
.package-card.featured { border: 2px solid var(--gold); }

.pkg-header {
  padding: 2rem 1.8rem 1.4rem;
  background: var(--ivory);
  border-bottom: 1px solid rgba(184,134,11,0.15);
}
.pkg-header .badge {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.25rem 0.7rem;
  background: var(--gold); color: var(--white);
  border-radius: 20px; margin-bottom: 0.8rem;
}
.pkg-header h3 { color: var(--brown); font-size: 1.3rem; margin-bottom: 0.3rem; }
.pkg-header .price {
  font-size: 2rem; color: var(--gold); line-height: 1;
}
.pkg-header .price span { font-size: 0.85rem; color: var(--muted); }

.pkg-body { padding: 1.6rem 1.8rem; flex: 1; }
.pkg-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.pkg-body ul li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--muted); font-size: 0.95rem; }
.pkg-body ul li::before { content: '✓'; color: var(--gold); font-weight: bold; flex-shrink: 0; }

.pkg-footer { padding: 0 1.8rem 1.8rem; }
.pkg-footer .btn { width: 100%; text-align: center; display: block; }

/* levels */
.levels-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 1rem;
}
.level-card {
  padding: 1.8rem 1.6rem;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 3px solid var(--gold);
}
.level-card .lvl-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.level-card h3 { color: var(--brown); margin-bottom: 0.5rem; }
.level-card p { color: var(--muted); font-size: 0.9rem; max-width: none; }

/* FAQ */
.faq { background: var(--ivory); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.faq-item {
  border-bottom: 1px solid rgba(184,134,11,0.2);
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.2rem 0; font-family: 'Georgia', serif; font-size: 1rem;
  color: var(--brown); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .arrow { color: var(--gold); transition: transform 0.25s; font-style: normal; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-a p { color: var(--muted); font-size: 0.95rem; padding-bottom: 1.2rem; }

/* ─── Contact page ─── */
.contact-centered {
  max-width: 680px; margin: 0 auto; text-align: left;
}
.contact-centered > p { color: var(--muted); margin-bottom: 2rem; font-size: 0.97rem; }

.contact-form-wrap {
  background: var(--white); padding: 2.8rem;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--brown); margin-bottom: 0.4rem; }
.contact-form-wrap .form-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brown);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem; border: 1.5px solid rgba(184,134,11,0.25);
  border-radius: var(--radius); font-family: 'Georgia', serif; font-size: 0.95rem;
  color: var(--text); background: var(--cream); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: 0.5rem; }

.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--brown); margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); margin: 0 auto; }

/* map placeholder */
.map-section { background: var(--ivory); }
.map-placeholder {
  width: 100%; height: 340px; background: #ddd;
  border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem;
  background: linear-gradient(135deg, #e0d5c8 0%, #c8bfb4 100%);
}

/* ─── Footer ─── */
footer {
  background: var(--brown); color: rgba(255,255,255,0.7);
  padding: 3rem 5% 1.5rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-brand .logo-name { font-size: 1.1rem; color: var(--white); }
.footer-brand .logo-sub { font-size: 0.7rem; color: var(--gold-lt); letter-spacing: 0.18em; text-transform: uppercase; }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 34ch; line-height: 1.65; }
footer h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--gold-lt); }
footer ul li { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 0.5rem;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; text-align: center; }
  .hero-visual   { display: none; }
  .btn-group     { justify-content: center; }
  .about-inner   { grid-template-columns: 1fr; }
  .about-img     { min-height: 200px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    padding: 1.5rem 5%; border-bottom: 1px solid rgba(184,134,11,0.2);
    gap: 1.2rem;
  }
  .hamburger { display: flex; }
  .form-row  { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
