/* ============================================
   Northwest Piano & Voice Lessons
   v3 — Clean
   ============================================ */

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

:root {
  --bg: #000;
  --bg-card: #111;
  --bg-elevated: #181818;
  --text: #eae6df;
  --text-dim: #8a857e;
  --text-muted: #5a5650;
  --gold: #c9a96e;
  --gold-dim: rgba(201,169,110,0.10);
  --gold-glow: rgba(201,169,110,0.25);
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  touch-action: pan-y pinch-zoom;
}

body.nav-open { overflow: hidden; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
img { max-width: 100%; height: auto; display: block; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- NAV --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 0 2rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.site-header.scrolled {
  background: rgba(0,0,0,0.92);
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo img {
  height: 36px;
  width: auto;
  transition: opacity 0.15s;
}
.logo:hover img { opacity: 0.7; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
  justify-content: center;
  align-items: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { position: absolute; left: 0; }
.nav-toggle span::before { content: ''; top: -7px; }
.nav-toggle span::after { content: ''; top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--text); }
.main-nav a.active { color: var(--gold); }


/* Desktop: centered nav, no Home item (logo is home) */
@media (min-width: 769px) {
  .site-header .container { position: relative; }
  .main-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .main-nav li:first-child { display: none; }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 104;
  -webkit-tap-highlight-color: transparent;
}
.nav-overlay.active { display: block; }

/* --- LAYOUT --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 3rem 0; }
.section--flush { padding-top: 0; }

/* --- HERO --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(64px + 4rem) 2rem 3.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.6s var(--ease) both;
}

.hero__amp {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.3s var(--ease) both;
}

.hero__cta { animation: fadeUp 0.6s 0.4s var(--ease) both; }

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

/* --- VIDEO PLACEHOLDER --- */
.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}
.video-placeholder:hover {
  border-color: var(--border-hover);
}
.video-placeholder__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.video-placeholder__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.video-placeholder:hover .video-placeholder__play {
  transform: scale(1.08);
  box-shadow: 0 8px 40px var(--gold-glow);
}
.video-placeholder__play svg {
  width: 24px;
  height: 24px;
  fill: #000;
  margin-left: 3px;
}
.video-placeholder__text {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- FOOTER LINKS --- */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--gold);
}

/* --- DIVIDER --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.4;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.4rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.btn:hover,
.btn:active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 700;
}

.btn--gold:hover,
.btn--gold:active {
  background: #d4b578;
  border-color: #d4b578;
  color: #000;
  box-shadow: 0 8px 40px var(--gold-glow);
}

.btn--large {
  padding: 1.15rem 3rem;
  font-size: 0.78rem;
  border-radius: var(--radius);
}

/* --- SECTION HEADINGS --- */
.section-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.8;
}

.section-desc + .section-desc {
  margin-top: 1rem;
}

/* --- CONTENT SPLIT --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 1rem 0;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__media img {
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transition: transform 0.3s var(--ease);
}
.split__media:hover img { transform: scale(1.02); }

.split__text .section-desc { margin-bottom: 2rem; }

/* --- FEATURES --- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature {
  text-align: center;
}

.feature__icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.feature__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.feature__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- FAQ --- */
@media (min-width: 769px) {
  .faq-header {
    margin: 0 auto;
    text-align: center;
  }
}

.faq {
  max-width: 640px;
  margin: 0 auto;
}

.faq .section-label {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 400;
  text-align: left;
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.15s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: all 0.15s;
}

.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--gold);
}

.faq-question:hover { color: var(--gold); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.2rem;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}

/* --- CONTACT --- */
.contact-hero {
  padding-top: calc(64px + 3.5rem);
  padding-bottom: 2rem;
  text-align: center;
}

.contact-hero .section-desc { margin: 0 auto; }

.contact-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 100px;
  padding: 0.6rem 1.6rem;
  margin-top: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}

.contact-line {
  display: block;
  text-align: center;
}

.contact-line__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-line__value {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--text);
  transition: color 0.15s;
}
.contact-line:hover .contact-line__value { color: var(--gold); }

.contact-line__hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
}

/* --- SERVICE AREA --- */
.service-area {
  text-align: center;
  padding: 2rem 0;
}

.service-area h3 {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-area__cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
}

.service-area__cities li {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.15s;
}
.service-area__cities li:hover {
  border-color: var(--border-hover);
  color: var(--text-dim);
}

.service-area__cities a {
  color: inherit;
  text-decoration: none;
}

/* --- ABOUT --- */
.page-header {
  padding-top: calc(64px + 3.5rem);
  padding-bottom: 1rem;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
  font-style: italic;
}

.opera-table {
  width: 100%;
  max-width: 760px;
  border-collapse: collapse;
  margin: 1rem auto;
}

.opera-table th {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-align: left;
  padding: 0.8rem 1rem;
  color: var(--text-dim);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

.opera-table td {
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.opera-table tbody tr { transition: background 0.15s; }
.opera-table tbody tr:hover { background: var(--bg-card); }

.training-section {
  max-width: 760px;
  margin: 2.5rem auto 0;
}

.training-section h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-dim);
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.training-grid + .training-grid {
  margin-top: 1.2rem;
}

/* --- LOCATIONS --- */
.locations-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.location-item {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: var(--text-dim);
  transition: color 0.15s;
}
.location-item:hover { color: var(--gold); }

@media (max-width: 600px) {
  .locations-list { grid-template-columns: 1fr; gap: 1.1rem; }
  .location-item { font-size: 1.25rem; }
}

/* --- GUIDE LINKS --- */
.guide-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.guide-link {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dim);
  transition: color 0.15s;
}

.guide-link:hover { color: var(--gold); }

/* --- RECITALS --- */
.recital-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 64px;
}

.recital-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.recital-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.15) 100%
  );
}

.recital-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.recital-hero__content .section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.recital-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.recital-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.recital-video {
  width: 100%;
  border-radius: var(--radius);
  background: #000;
}

@media (max-width: 600px) {
  .recital-hero { min-height: 50vh; }
  .recital-hero__content { padding-bottom: 2.5rem; }
  .recital-gallery { grid-template-columns: 1fr; gap: 1rem; }
}

/* --- ARTICLES --- */
.article {
  max-width: 680px;
  margin: 0 auto;
}

.article h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
}

.article p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.article a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article ul {
  margin: 0 0 1.2rem 1.4rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}

.article li { margin-bottom: 0.5rem; }

.article-meta {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* --- STATS BAR --- */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
}

.stat__label {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.4rem;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 3rem 0;
}

.testimonials__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-swiper {
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonials-swiper .swiper-wrapper { height: 220px; }

.testimonial-slide {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem 2.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-slide.overflowing { cursor: pointer; }
.testimonial-slide.overflowing::after {
  content: '';
  position: absolute;
  bottom: 2.2rem;
  left: 0; right: 0;
  height: 2rem;
  background: linear-gradient(transparent, var(--bg-card));
  pointer-events: none;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.testimonial-author {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 1.8rem 0.9rem;
  background: var(--bg-card);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  text-align: right;
}

.tap-hint {
  position: absolute;
  bottom: 0.9rem;
  left: 1.8rem;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  opacity: 0.6;
  display: none;
}
.testimonial-slide.overflowing .tap-hint { display: block; }

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.testimonials-prev,
.testimonials-next {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.testimonials-prev:hover,
.testimonials-next:hover { color: var(--gold); }

.testimonials-count {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Testimonial popup */
.testimonial-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1.5rem;
}
.testimonial-popup.open { display: flex; }

.testimonial-popup-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.4rem;
  max-width: 420px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.testimonial-popup-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-popup-author {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  text-align: right;
}

.testimonial-popup-close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}
.testimonial-popup-close:hover { color: var(--gold); }

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer__brand img {
  height: 26px;
  width: auto;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 280px;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer__contact-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer__contact-link:hover { color: var(--gold); }

.footer__contact-link span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a {
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer__bottom-links a:hover { color: var(--gold); }

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 2rem; }
  .testimonials-swiper .swiper-wrapper { height: 250px; }
  .footer__inner { flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
  .footer__tagline { max-width: none; }
  .footer__contact { flex-direction: column; gap: 1rem; }
  .footer__bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 1.2rem; }
  .site-header .logo img { height: 30px; }
  .nav-toggle { display: flex; margin-right: -9px; }

  .hero { padding: calc(64px + 2.5rem) 1.4rem 2.5rem; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #111;
    border-left: 1px solid rgba(255,255,255,0.1);
    transition: right 0.25s ease;
    z-index: 105;
    padding-top: 80px;
  }
  .main-nav.open { right: 0; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav a {
    padding: 1.2rem 2rem;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .main-nav a.active { color: var(--gold); }

  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse { direction: ltr; }

  .features { grid-template-columns: 1fr; gap: 2rem; }

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

  .opera-table th,
  .opera-table td { padding: 0.4rem 0.5rem; font-size: 0.8rem; }

  .btn { padding: 1rem 2rem; min-height: 48px; }
  .btn--large { padding: 1.1rem 2.5rem; }

  .section { padding: 2.5rem 0; }
  .container { padding: 0 1.4rem; }
  .section-title { font-size: 1.8rem; }
  .stats-bar__inner { gap: 2rem; }
  .stat__number { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .service-area__cities li { font-size: 0.72rem; padding: 0.35rem 0.8rem; }
}
