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

:root {
  --white: #ffffff;
  --black: #0f0f10;
  --gray-100: #f7f4ed;
  --gray-200: #e9e2d0;
  --gray-400: #7b7568;
  --gray-600: #4f4a3e;
  --gold: #c8a84b;
  --gold-light: #f4e5aa;
  --surface: #fffdfa;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --nav-h: 72px;
  --shadow: 0 18px 45px rgba(15, 15, 16, 0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: linear-gradient(180deg, #fcfbf8 0%, #f6f0e4 100%);
  color: var(--black);
  line-height: 1.7;
  font-size: 16px;
}
a { color: inherit; }

nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 15, 16, 0.07);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; z-index: 1000;
}

.nav-logo { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; color: var(--black); text-decoration: none; letter-spacing: -0.5px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.84rem; font-weight: 600; color: var(--gray-600); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-cta { background: var(--black) !important; color: var(--white) !important; padding: 0.6rem 1.1rem !important; border-radius: 999px; border-bottom: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-cta.active { background: var(--gold) !important; color: var(--black) !important; border-bottom: none !important; }

.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(--black); transition: all 0.3s; }

.mobile-menu { display: none; position: fixed; inset: 0; background: var(--surface); z-index: 998; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--black); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }

.page-top { margin-top: var(--nav-h); }

section { padding: 6rem 8%; }
.section-header { margin-bottom: 3rem; }
.section-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--black); line-height: 1.15; }
.section-line { width: 56px; height: 2px; background: var(--gold); margin-top: 1rem; }

.btn-primary, .btn-outline, .btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.4rem; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 999px; transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease; cursor: pointer;
}
.btn-primary { background: var(--black); color: var(--white); border: 1.5px solid var(--black); }
.btn-primary:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); border: none; }
.btn-gold:hover { background: #dfbb55; transform: translateY(-2px); }

.img-placeholder { width: 100%; height: 100%; min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #f0f0f0; color: var(--gray-400); font-size: 0.85rem; text-align: center; gap: 0.5rem; }

#home {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 3rem;
  padding: 5.5rem 8% 4rem; position: relative; overflow: hidden;
}
#home::before {
  content: ''; position: absolute; right: -130px; top: -130px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(200,168,75,0.28) 0%, rgba(255,255,255,0) 70%); pointer-events: none;
}
.hero-copy { z-index: 1; max-width: 640px; }
.hero-badge { display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); padding: 0.45rem 0.9rem; border: 1px solid rgba(200,168,75,0.4); border-radius: 999px; margin-bottom: 1.4rem; background: rgba(244,229,170,0.22); }
.hero-copy h1 { font-family: var(--serif); font-size: clamp(3rem, 5.4vw, 4.6rem); font-weight: 700; line-height: 1.05; color: var(--black); margin-bottom: 0.8rem; }
.hero-subtitle { font-family: var(--serif); font-size: clamp(1.2rem, 2.1vw, 1.5rem); font-weight: 400; color: var(--gold); margin-bottom: 1.2rem; line-height: 1.45; }
.hero-copy p { color: var(--gray-600); font-size: 1rem; line-height: 1.8; margin-bottom: 0.8rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-highlights { display: grid; gap: 0.7rem; padding-left: 0; list-style: none; margin-top: 1.6rem; }
.hero-highlights li { display: flex; align-items: center; gap: 0.65rem; color: var(--gray-600); font-weight: 500; }
.hero-highlights li::before { content: '✦'; color: var(--gold); font-size: 0.9rem; }
.hero-media { display: flex; justify-content: center; }
.hero-image-card { position: relative; width: min(100%, 460px); background: var(--surface); border: 1px solid rgba(15, 15, 16, 0.08); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.hero-image-card img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.image-badge { position: absolute; left: 1rem; bottom: 1rem; background: rgba(15,15,16,0.77); color: var(--white); padding: 0.7rem 1rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

.home-preview { padding: 4rem 8% 5rem; background: rgba(255, 255, 255, 0.5); }
.home-preview-title { font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 0.45rem; color: var(--black); }
.home-preview-sub { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 2.2rem; }
.preview-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.preview-card {
  background: var(--surface); border: 1px solid rgba(15, 15, 16, 0.08); padding: 1.8rem 1.5rem; border-radius: 20px; text-decoration: none; color: var(--black); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; display: block; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(15,15,16,0.05);
}
.preview-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.preview-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.preview-card:hover::after { width: 100%; }
.preview-card-icon {
  width: 44px; height: 44px; margin-bottom: 0.9rem; border: 1px solid rgba(15, 15, 16, 0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(200, 168, 75, 0.08);
}
.preview-card-icon svg {
  width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.preview-card-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.45rem; }
.preview-card-desc { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }
.preview-arrow { display: inline-block; margin-top: 0.9rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

.about-section { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-box { width: 100%; aspect-ratio: 3/4; background: var(--gray-100); border-radius: 24px; overflow: hidden; border: 1px solid rgba(15,15,16,0.08); box-shadow: var(--shadow); }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-accent { position: absolute; bottom: -24px; right: -24px; width: 140px; height: 140px; border: 2px solid var(--gold); border-radius: 20px; opacity: 0.4; z-index: -1; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.stat-card { background: var(--gray-100); border: 1px solid rgba(15,15,16,0.06); padding: 1.1rem; border-radius: 16px; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--black); line-height: 1; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--gray-600); margin-top: 0.35rem; }
.about-text p { color: var(--gray-600); margin-bottom: 1.2rem; line-height: 1.85; }

.music-section { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.service-card { border: 1px solid rgba(15,15,16,0.08); padding: 1.7rem 1.5rem; border-radius: 20px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(15,15,16,0.04); background: linear-gradient(145deg, #fffdfa 0%, #fefcf6 100%); text-decoration: none; color: inherit; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card:hover::after { width: 100%; }
.service-icon { width: 42px; height: 42px; background: var(--black); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.15rem; }
.service-icon svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--black); margin-bottom: 0.55rem; }
.service-desc { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }
.music-quote { margin-top: 3.5rem; border-left: 3px solid var(--gold); padding: 1.25rem 1.75rem; background: var(--gray-100); border-radius: 0 16px 16px 0; }
.music-quote p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--black); line-height: 1.6; }
.music-quote cite { display: block; margin-top: 0.75rem; font-size: 0.8rem; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }

.prog-section { background: rgba(255,255,255,0.55); }
.prog-intro { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: start; margin-bottom: 3.5rem; }
.prog-intro p { color: var(--gray-600); line-height: 1.85; margin-bottom: 1rem; }
.skills-wrap { display: flex; flex-direction: column; gap: 1rem; background: var(--surface); padding: 1.4rem; border-radius: 20px; border: 1px solid rgba(15,15,16,0.08); box-shadow: 0 12px 30px rgba(15,15,16,0.04); }
.skill-row { display: flex; flex-direction: column; gap: 0.35rem; }
.skill-row-top { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; color: var(--gray-600); }
.skill-bar { height: 4px; background: var(--gray-200); border-radius: 999px; overflow: hidden; }
.skill-fill { height: 100%; background: var(--black); border-radius: 999px; width: 0; transition: width 1s ease; }
.stack-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.tag { background: var(--surface); border: 1px solid rgba(15,15,16,0.08); color: var(--black); font-size: 0.8rem; font-weight: 600; padding: 0.42rem 0.9rem; border-radius: 999px; }
.prog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.prog-card { background: var(--surface); border: 1px solid rgba(15,15,16,0.08); padding: 1.6rem 1.4rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(15,15,16,0.05); }
.prog-card-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.prog-card-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.45rem; }
.prog-card-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

.gallery-section { background: var(--surface); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { aspect-ratio: 4/3; background: var(--gray-100); border-radius: 18px; overflow: hidden; position: relative; border: 1px solid rgba(15,15,16,0.08); box-shadow: 0 10px 25px rgba(15,15,16,0.04); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; min-height: 400px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder { width: 100%; height: 100%; min-height: 180px; display: flex; align-items: center; justify-content: center; color: var(--gray-400); font-size: 0.8rem; flex-direction: column; gap: 0.5rem; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: var(--white); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

.contact-section { background: var(--black); color: var(--white); }
.contact-section .section-label { color: var(--gold); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-line { background: var(--gold); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.contact-text p { color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 1rem; }
.contact-info-row { display: flex; align-items: center; gap: 0.85rem; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.contact-info-icon { color: var(--gold); font-size: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.57); }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: var(--white); padding: 0.85rem 1rem; font-family: var(--sans); font-size: 0.95rem; border-radius: 2px; outline: none; transition: border-color 0.2s; width: 100%; -webkit-appearance: none; }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 1rem; transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

footer { background: #080808; color: rgba(255,255,255,0.45); padding: 2rem 5%; font-size: 0.82rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-logo { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.footer-logo span { color: var(--gold); }
footer a { color: var(--gold); text-decoration: none; }

.wa-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,0.4); z-index: 999; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip { position: absolute; right: 66px; background: var(--black); color: var(--white); font-size: 0.78rem; font-weight: 600; padding: 0.4rem 0.85rem; border-radius: 999px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.wa-float:hover .wa-tooltip { opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #home { grid-template-columns: 1fr; padding: 3rem 5%; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-highlights { justify-items: center; }
  .hero-media { display: flex; justify-content: center; width: 100%; margin-top: 1.5rem; }
  .hero-image-card { width: min(100%, 360px); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { display: block; }
  .prog-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .prog-cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: auto; min-height: 180px; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  section { padding: 4rem 5%; }
  .prog-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .preview-cards { grid-template-columns: 1fr; }
  .hero-image-card { width: 100%; max-width: 320px; }
  .image-badge { font-size: 0.72rem; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; text-align: center; }
}
