:root {
    --navy-900: #0a1128;
    --navy-800: #0d1530;
    --navy-700: #141a3d;
    --purple: #c084fc;
    --purple-dark: #a78bfa;
    --indigo: #6366f1;
    --indigo-light: #818cf8;
    --magenta: #d946ef;
    --magenta-light: #f5b6e8;
    --cyan: #22d3ee;
    --cyan-light: #67e8f9;
    --text: #e8e6f5;
    --text-muted: #a5a3c7;
    --text-dim: #9d9bbf;
    --border: rgba(167, 139, 250, 0.22);
    --border-strong: rgba(167, 139, 250, 0.4);
    --gradient-cta: linear-gradient(90deg, #d946ef, #6366f1);
    --gradient-logo: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #6366f1 100%);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--navy-900);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
  .eyebrow { font-size: 11px; letter-spacing: 2px; color: var(--cyan); text-transform: uppercase; }

  /* NAV */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px;
    max-width: 1100px; margin: 0 auto;
  }
  .nav-brand { display: flex; align-items: center; gap: 12px; }
  .logo-img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
  .brand-text { font-weight: 600; letter-spacing: 1px; font-size: 14px; }
  .brand-sub { color: var(--purple-dark); font-weight: 400; font-size: 11px; display: block; }
  .nav-links { display: flex; gap: 24px; align-items: center; font-size: 13px; }
  .nav-links a { color: #c4b5fd; transition: color .2s; }
  .nav-links a:hover { color: white; }
  .nav-cta {
    background: var(--gradient-cta); color: white;
    padding: 10px 20px; border-radius: 100px; font-weight: 600; font-size: 13px;
    box-shadow: 0 4px 14px rgba(217, 70, 239, 0.35);
    transition: transform .2s, box-shadow .2s;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(217, 70, 239, 0.5); }
  .nav-toggle {
    display: none;
    font-size: 22px;
    line-height: 1;
    padding: 8px 12px;
    color: #c4b5fd;
    background: rgba(20, 24, 60, 0.45);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
  }
  .nav-toggle:hover { background: rgba(192, 132, 252, 0.12); color: white; }

  /* HERO */
  .hero {
    position: relative;
    padding: 96px 24px 80px;
    text-align: center;
    background-image:
      linear-gradient(rgba(10, 17, 40, 0.62), rgba(10, 17, 40, 0.85)),
      url('/studio-wide.jpg');
    background-size: cover; background-position: center;
  }
  .hero-badge {
    display: inline-block; padding: 6px 16px;
    border: 1px solid rgba(34, 211, 238, 0.55);
    border-radius: 100px;
    font-size: 11px; letter-spacing: 2px;
    color: var(--cyan-light); margin-bottom: 14px;
    background: rgba(10, 17, 40, 0.55);
  }
  .hero-addr { font-size: 12px; letter-spacing: 1px; color: #e9d5ff; margin-bottom: 36px; }
  .hero-slogan {
    margin: 0 auto;
    color: white;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
    max-width: 820px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
  }
  .hero-ctas { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gradient-cta); color: white;
    padding: 14px 28px; border-radius: 8px;
    font-size: 14px; font-weight: 500;
    transition: transform .2s, box-shadow .2s;
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(217, 70, 239, 0.35); }
  .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.5); color: white;
    padding: 14px 28px; border-radius: 8px;
    font-size: 14px;
    background: rgba(10, 17, 40, 0.55);
    transition: background .2s;
    display: inline-block;
  }
  .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

  /* LANDMARKS */
  .landmarks {
    padding: 32px 24px;
    background: var(--navy-800);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .landmarks-eyebrow { text-align: center; margin-bottom: 18px; }
  .landmarks-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; max-width: 800px; margin: 0 auto;
  }
  .landmark { text-align: center; }
  .landmark svg { width: 100%; max-width: 140px; height: 64px; margin: 0 auto; }
  .landmark-name { font-size: 14px; color: #ede9fe; font-weight: 500; margin-top: 6px; }
  .landmark-time { font-size: 11px; color: var(--text-dim); }

  /* SECTION HEADINGS */
  .section { padding: 72px 24px; }
  .section-narrow { max-width: 1000px; margin: 0 auto; }
  .section-title {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    text-align: center;
    color: var(--text);
    margin-top: 8px;
    letter-spacing: -0.5px;
  }
  .section-eyebrow { text-align: center; }

  /* SERVICES */
  .services-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    margin-top: 48px;
  }
  .service-card {
    border-radius: 14px; padding: 32px;
    transition: transform .2s, border-color .2s;
  }
  .service-card.vocal {
    border: 1px solid rgba(192, 132, 252, 0.3);
    background: rgba(192, 132, 252, 0.04);
  }
  .service-card.piano {
    border: 1px solid rgba(99, 102, 241, 0.34);
    background: rgba(99, 102, 241, 0.05);
  }
  .service-card:hover { transform: translateY(-3px); }
  .service-card.vocal:hover { border-color: var(--purple); }
  .service-card.piano:hover { border-color: var(--indigo-light); }
  .service-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 600;
  }
  .service-icon.purple { background: rgba(192, 132, 252, 0.2); color: var(--purple); }
  .service-icon.indigo { background: rgba(99, 102, 241, 0.22); color: var(--indigo-light); }
  .service-title { margin-top: 18px; font-size: 20px; font-weight: 600; color: #ede9fe; }
  .service-text { margin-top: 10px; font-size: 14px; color: var(--text-dim); line-height: 1.65; }

  /* STUDIO (intro + gallery merged) */
  .studio-block { background: var(--navy-800); padding: 80px 24px; border-top: 1px solid var(--border); }
  .studio-intro {
    max-width: 720px; margin: 0 auto 44px;
    text-align: center;
  }
  .studio-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600; color: var(--text);
    line-height: 1.15; margin-top: 10px;
    letter-spacing: -0.5px;
  }
  .studio-body { font-size: 16px; color: var(--text-muted); margin-top: 18px; line-height: 1.75; }
  .studio-collage {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    max-width: 1000px; margin: 0 auto;
    height: 540px;
  }
  .studio-photo {
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    transition: transform .3s, box-shadow .3s;
  }
  .studio-photo:hover { transform: scale(1.015); box-shadow: 0 12px 40px rgba(217, 70, 239, 0.28); }
  .sp-1 {
    grid-column: 1; grid-row: 1 / span 2;
    background-image: url('/studio-wide.jpg');
    box-shadow: 0 20px 60px rgba(217, 70, 239, 0.18);
  }
  .sp-2 { grid-column: 2; grid-row: 1; background-image: url('/studio-mic-pampas.jpg'); }
  .sp-3 { grid-column: 3; grid-row: 1; background-image: url('/studio-piano.jpg'); }
  .sp-4 { grid-column: 2; grid-row: 2; background-image: url('/studio-extra-1.jpg'); }
  .sp-5 { grid-column: 3; grid-row: 2; background-image: url('/studio-extra-2.jpg'); background-position: center 30%; }

  /* COACH / FOUNDER */
  .coach { padding: 72px 24px; }
  .coach-grid {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px;
    align-items: center; max-width: 1000px; margin: 0 auto;
  }
  .coach-photo {
    border-radius: 14px;
    aspect-ratio: 3/4;
    min-height: 420px;
    background-image: url('/founder-oleksandra.jpg');
    background-size: cover;
    background-position: center top;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.22);
  }
  .coach-name {
    font-size: clamp(26px, 3.8vw, 34px);
    font-weight: 600; color: var(--text);
    line-height: 1.15; margin-top: 12px;
    letter-spacing: -0.5px;
  }
  .coach-role {
    font-size: 12px; letter-spacing: 1.5px;
    color: var(--purple); margin-top: 8px;
    text-transform: uppercase; font-weight: 500;
  }
  .coach-body { font-size: 15px; color: var(--text-muted); margin-top: 20px; line-height: 1.75; }
  .coach-body + .coach-body { margin-top: 14px; }
  .coach-creds {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 22px;
  }
  .coach-creds span {
    font-size: 11px; letter-spacing: 0.5px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    background: rgba(192, 132, 252, 0.04);
  }

  /* PRICING */
  .pricing-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 12px; margin-top: 48px;
  }
  .price-card {
    border-radius: 12px; padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--border);
    background: rgba(20, 24, 60, 0.3);
    position: relative;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    cursor: pointer;
  }
  .price-card:hover { transform: translateY(-3px); border-color: var(--purple); box-shadow: 0 14px 36px rgba(192, 132, 252, 0.18); }
  .price-card:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
  .pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 22px;
    font-style: italic;
  }
  .price-card.popular {
    border: 2px solid var(--purple);
    background: rgba(192, 132, 252, 0.08);
  }
  .price-card.duo {
    border: 1px solid rgba(217, 70, 239, 0.4);
    background: rgba(217, 70, 239, 0.05);
  }
  .price-tier { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }
  .price-card.popular .price-tier { color: #c4b5fd; }
  .price-card.duo .price-tier { color: var(--magenta-light); }
  .price-amount {
    font-size: 30px; font-weight: 600;
    margin-top: 10px; color: var(--text);
  }
  .price-card.popular .price-amount { color: white; }
  .price-detail { font-size: 11px; color: var(--text-dim); margin-top: 4px; }
  .pop-pill {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-cta); color: white;
    padding: 4px 12px; border-radius: 100px;
    font-size: 9px; letter-spacing: 1px; font-weight: 600;
    white-space: nowrap;
  }

  /* FAQ */
  .faq { padding: 80px 24px; }
  .faq-list { max-width: 760px; margin: 44px auto 0; }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(20, 24, 60, 0.32);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s, background .2s;
  }
  .faq-item[open] {
    border-color: rgba(192, 132, 252, 0.45);
    background: rgba(192, 132, 252, 0.05);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px;
    user-select: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::marker { content: ""; }
  .faq-q {
    font-size: 16px; font-weight: 500;
    color: var(--text);
    flex: 1;
  }
  .faq-icon {
    width: 22px; height: 22px;
    flex: 0 0 22px;
    position: relative;
    transition: transform .25s;
  }
  .faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute; top: 50%; left: 50%;
    width: 12px; height: 1.5px;
    background: var(--purple);
    transform: translate(-50%, -50%);
    border-radius: 2px;
  }
  .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s; }
  .faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
  .faq-a {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
  }
  .faq-a p + p { margin-top: 12px; }

  /* CONTACT */
  .contact {
    padding: 72px 24px;
    background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
    border-top: 1px solid var(--border);
  }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    max-width: 1000px; margin: 0 auto;
  }
  .visit-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 600; margin-top: 12px;
    color: var(--text); line-height: 1.25;
    letter-spacing: -0.5px;
  }
  .visit-addr { font-size: 15px; color: var(--text-muted); margin-top: 18px; line-height: 1.75; }
  .map-link {
    margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
    color: var(--cyan); font-size: 13px;
    transition: opacity .2s;
  }
  .map-link:hover { opacity: 0.8; }

  .contact-channels {
    margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px;
  }
  .contact-pill {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px; color: var(--text);
    background: rgba(20, 24, 60, 0.4);
    transition: background .2s, transform .2s, border-color .2s;
  }
  .contact-pill:hover { transform: translateY(-2px); background: rgba(20, 24, 60, 0.7); }
  .contact-pill svg { width: 15px; height: 15px; flex: 0 0 15px; }
  .pill-wa { border-color: rgba(37, 211, 102, 0.45); }
  .pill-wa:hover { background: rgba(37, 211, 102, 0.08); }
  .pill-phone { border-color: rgba(34, 211, 238, 0.45); color: var(--cyan-light); }
  .pill-phone:hover { background: rgba(34, 211, 238, 0.1); }
  .pill-email { border-color: rgba(129, 140, 248, 0.45); color: #c4b5fd; }
  .pill-email:hover { background: rgba(99, 102, 241, 0.1); }
  .pill-ig { border-color: rgba(217, 70, 239, 0.5); color: var(--magenta-light); }
  .pill-ig:hover { background: rgba(217, 70, 239, 0.1); }

  /* FORM */
  .booking-form {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    background: rgba(20, 24, 60, 0.5);
  }
  .form-title { font-size: 18px; font-weight: 600; color: var(--text); }
  .form-sub { font-size: 12px; color: var(--text-dim); margin-top: 4px; }
  .form-fields { margin-top: 18px; display: grid; gap: 10px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    background: rgba(10, 17, 40, 0.6);
    color: var(--text);
    font-size: 13px;
    font-family: inherit;
    transition: border-color .2s, background .2s;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--purple);
    background: rgba(10, 17, 40, 0.85);
  }
  .form-select.pulse, .form-input.pulse {
    animation: fieldPulse 1.2s ease;
  }
  @keyframes fieldPulse {
    0%   { box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.55); border-color: var(--magenta); }
    100% { box-shadow: 0 0 0 14px rgba(217, 70, 239, 0); }
  }
  .form-textarea { resize: vertical; min-height: 80px; }
  .form-select { appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%239d9bbf' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  .form-submit {
    background: var(--gradient-cta); color: white;
    padding: 13px;
    border-radius: 8px; text-align: center;
    font-size: 14px; font-weight: 600;
    width: 100%;
    transition: transform .2s, box-shadow .2s;
    margin-top: 4px;
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(217, 70, 239, 0.35); }
  .form-success, .form-error {
    margin-top: 12px; padding: 12px;
    border-radius: 8px;
    font-size: 13px; line-height: 1.5;
    display: none;
  }
  .form-success {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.4);
    color: var(--cyan-light);
  }
  .form-error {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.4);
    color: #fda4af;
  }
  .form-error a { color: #ffe4e6; text-decoration: underline; }
  .form-success.show, .form-error.show { display: block; }
  .form-submit:disabled { opacity: 0.6; cursor: wait; }

  /* FLOATING BOOK CTA */
  .float-book {
    position: fixed; right: 22px; bottom: 22px; z-index: 100;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px; border-radius: 100px;
    background: var(--gradient-cta); color: white;
    font-weight: 600; font-size: 14px;
    box-shadow: 0 10px 30px rgba(217, 70, 239, 0.5), 0 4px 12px rgba(99, 102, 241, 0.35);
    transition: transform .25s, box-shadow .25s, opacity .25s;
    opacity: 0; pointer-events: none;
    transform: translateY(20px);
  }
  .float-book.show {
    opacity: 1; pointer-events: auto; transform: translateY(0);
  }
  .float-book:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(217, 70, 239, 0.65); }
  .float-book svg { width: 18px; height: 18px; }

  /* FOOTER */
  .footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px; color: #6b6a85;
  }
  .footer-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

  /* RESPONSIVE */
  @media (max-width: 760px) {
    .nav-toggle { display: inline-flex; }

    /* Mobile menu: slides down beneath the nav bar */
    .nav-links {
      position: absolute;
      top: 100%; left: 0; right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--navy-800);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height .28s ease, padding .28s ease;
    }
    .nav-links.open {
      max-height: 640px;
      padding: 6px 20px 16px;
    }
    .nav-links a:not(.nav-cta) {
      display: block;
      padding: 13px 4px;
      font-size: 14.5px;
      border-bottom: 1px solid var(--border);
      color: var(--text);
    }
    .nav-links .nav-cta {
      display: block;
      margin-top: 14px;
      text-align: center;
    }

    /* Dropdown becomes an inline section on mobile */
    .nav-links .dropdown { width: 100%; }
    .nav-links .dropdown::after { display: none; }
    .nav-links .dropdown > .dropdown-toggle {
      color: var(--cyan);
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 600;
      padding: 14px 0 4px;
      border-bottom: none;
      display: block;
      width: 100%;
      text-align: left;
    }
    .nav-links .dropdown-toggle::after { display: none; }
    .nav-links .dropdown-menu {
      position: static;
      transform: none;
      opacity: 1; pointer-events: auto;
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0 0 6px;
      margin: 0;
      min-width: 0;
    }
    .nav-links .dropdown-menu a {
      padding: 10px 14px;
      font-size: 14px;
      color: var(--text-muted);
      border-bottom: none;
    }
    .nav-links .dropdown-menu a.active { color: var(--purple); }

    .hero { padding: 64px 20px 56px; }
    .section { padding: 56px 20px; }
    .studio-block, .gallery, .contact { padding: 56px 20px; }
    .services-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
    .studio-collage {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
      height: auto;
      gap: 10px;
    }
    .sp-1 { grid-column: 1 / span 2; grid-row: auto; height: 220px; }
    .sp-2, .sp-3, .sp-4, .sp-5 { grid-column: auto; grid-row: auto; height: 150px; }
    .coach-grid { grid-template-columns: 1fr; gap: 24px; }
    .coach-photo {
      aspect-ratio: 3/4;
      width: 100%;
      max-width: 320px;
      min-height: 380px; /* fallback for older mobile browsers without aspect-ratio support */
      margin: 0 auto;
    }
    .pricing-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pricing-grid .price-card.duo { grid-column: span 2; }
    .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-inner { flex-direction: column; }
    .landmarks-grid { gap: 8px; }
    .form-row { grid-template-columns: 1fr; gap: 10px; }
    .contact-pill {
      max-width: 100%;
      word-break: break-word;
      font-size: 12.5px;
      padding: 9px 14px;
    }
    .pop-pill { font-size: 8px; padding: 3px 9px; }
    .price-amount { font-size: 26px; }
    .footer-sitemap-grid { gap: 24px; }
  }

  @media (max-width: 480px) {
    .brand-sub { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-grid .price-card.duo { grid-column: auto; }
    .float-book { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 13px; }
    .float-book span { display: none; }
    .float-book svg { width: 20px; height: 20px; }
  }

  /* ===========================================================
     ADDED FOR MULTI-PAGE STRUCTURE
     =========================================================== */

  /* Nav dropdown */
  .nav-links .dropdown { position: relative; display: inline-block; }
  /* Invisible bridge so the cursor can cross the gap between
     toggle and menu without losing :hover */
  .nav-links .dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
  }
  .nav-links .dropdown-toggle {
    cursor: pointer;
    color: #c4b5fd;
    display: inline-flex; align-items: center; gap: 4px;
    font: inherit;
    background: none;
    border: none;
    padding: 0;
    transition: color .2s;
  }
  .nav-links .dropdown-toggle:hover,
  .nav-links .dropdown-toggle:focus,
  .nav-links .dropdown:hover .dropdown-toggle,
  .nav-links .dropdown.open .dropdown-toggle { color: white; outline: none; }
  .nav-links .dropdown-toggle::after {
    content: "";
    display: inline-block;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 2px;
    transition: transform .2s;
  }
  .nav-links .dropdown:hover .dropdown-toggle::after,
  .nav-links .dropdown.open .dropdown-toggle::after { transform: rotate(180deg); }
  .nav-links .dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    background: var(--navy-800);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px;
    min-width: 240px;
    opacity: 0; pointer-events: none;
    transition: opacity .15s;
    margin-top: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.4);
    z-index: 60;
  }
  .nav-links .dropdown:hover .dropdown-menu,
  .nav-links .dropdown:focus-within .dropdown-menu,
  .nav-links .dropdown.open .dropdown-menu { opacity: 1; pointer-events: auto; }
  .nav-links .dropdown-menu a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--text);
    border-radius: 6px;
    transition: background .15s, color .15s;
    white-space: nowrap;
  }
  .nav-links .dropdown-menu a:hover { background: rgba(192, 132, 252, 0.12); color: white; }
  .nav-links .dropdown-menu a.active { color: var(--purple); }

  /* Sub-page hero (smaller, content-focused) */
  .subpage-hero {
    position: relative;
    padding: 100px 24px 70px;
    text-align: center;
    background-image:
      linear-gradient(rgba(10, 17, 40, 0.78), rgba(10, 17, 40, 0.92)),
      url('/studio-wide.jpg');
    background-size: cover; background-position: center;
  }
  .subpage-eyebrow {
    display: inline-block; padding: 6px 16px;
    border: 1px solid rgba(34, 211, 238, 0.55);
    border-radius: 100px;
    font-size: 11px; letter-spacing: 2px;
    color: var(--cyan-light); margin-bottom: 20px;
    background: rgba(10, 17, 40, 0.55);
  }
  .subpage-h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700; letter-spacing: -0.8px; line-height: 1.1;
    color: white;
    max-width: 760px; margin: 0 auto;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
  }
  .subpage-lede {
    margin: 22px auto 0;
    color: #d8d4f5; font-size: clamp(15px, 2vw, 18px);
    font-weight: 400; max-width: 640px;
    line-height: 1.55;
  }
  .subpage-hero .hero-ctas { margin-top: 32px; }

  /* Article body (sub-page prose content) */
  .article {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px;
  }
  .article h2 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: var(--text);
    margin: 36px 0 12px;
    letter-spacing: -0.4px;
  }
  .article h2:first-child { margin-top: 0; }
  .article h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 8px;
  }
  .article p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
  }
  .article p:last-child { margin-bottom: 0; }
  .article ul, .article ol {
    margin: 12px 0 18px 22px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
  }
  .article li { margin-bottom: 6px; }
  .article a {
    color: var(--purple);
    border-bottom: 1px solid rgba(192, 132, 252, 0.4);
    transition: color .15s, border-color .15s;
  }
  .article a:hover { color: white; border-bottom-color: white; }
  .article strong { color: var(--text); font-weight: 500; }
  .article .lead {
    font-size: 17px;
    color: #c4b5fd;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .article-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 36px 0;
  }

  /* Locations served grid (used at bottom of sub-pages) */
  .locations-served {
    background: var(--navy-800);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 24px;
  }
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    max-width: 880px;
    margin: 30px auto 0;
  }
  .location-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    background: rgba(20, 24, 60, 0.3);
  }
  .location-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
  }
  .location-card-walk {
    font-size: 12px;
    color: var(--cyan-light);
    margin-top: 4px;
    letter-spacing: 0.5px;
  }
  .location-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.55;
  }

  /* CTA section for sub-pages */
  .subpage-cta {
    padding: 72px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  }
  .subpage-cta h2 {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 600;
    color: var(--text);
    margin-top: 8px;
    letter-spacing: -0.4px;
  }
  .subpage-cta p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 14px auto 28px;
    max-width: 540px;
    line-height: 1.65;
  }

  /* Footer sitemap block */
  .footer-sitemap {
    padding: 56px 24px 32px;
    border-top: 1px solid var(--border);
    background: var(--navy-800);
  }
  .footer-sitemap-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    align-items: start;
  }
  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 18px;
    font-weight: 600;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li {
    margin-bottom: 10px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--text-muted);
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .footer-col li:last-child { margin-bottom: 0; }
  .footer-col a {
    color: var(--text-muted);
    font-size: 13.5px;
    transition: color .15s, padding-left .15s;
    display: inline-block;
    position: relative;
  }
  .footer-col a:hover { color: white; }
  .footer-col a:hover::before {
    transform: scaleX(1);
  }
  .footer-col a::before {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    height: 1px; width: 100%;
    background: var(--purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s;
  }
  /* "Areas we cover" — plain text items styled with a subtle location dot */
  .footer-col.locations li {
    position: relative;
    padding-left: 16px;
  }
  .footer-col.locations li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.6;
  }

  @media (max-width: 960px) {
    .footer-sitemap-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 28px;
    }
  }

  @media (max-width: 760px) {
    .subpage-hero { padding: 70px 20px 50px; }
    .article { padding: 48px 20px; }
    .subpage-cta { padding: 56px 20px; }
    .locations-served { padding: 44px 20px; }
    .footer-sitemap { padding: 36px 20px 24px; }
  }

  /* ================== REVIEWS SECTION ================== */
  .reviews {
    background: var(--navy-800);
    padding: 80px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .reviews-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .reviews-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-top: 12px;
  }
  .reviews-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 18px auto 36px;
    max-width: 620px;
  }
  .reviews-widget {
    background: rgba(20, 26, 61, 0.55);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 20px;
    margin: 0 auto;
    max-width: 1100px;
    text-align: left;
  }
  .reviews-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    padding: 10px 20px;
    border: 1px solid var(--purple);
    border-radius: 100px;
    color: var(--purple);
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: background .2s, color .2s;
  }
  .reviews-cta:hover {
    background: var(--purple);
    color: var(--navy-900);
  }

  @media (max-width: 760px) {
    .reviews { padding: 56px 20px; }
    .reviews-widget { padding: 16px 10px; }
    .reviews-cta { margin-top: 22px; }
  }

  /* ===========================================================
     SUB-PAGE ARTICLE IMAGES (responsive, no forced aspect ratio)
     =========================================================== */
  .article-hero-img {
    max-width: 980px;
    margin: 0 auto 48px;
    padding: 0 24px;
  }
  .article-hero-img img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(99, 102, 241, 0.18);
    border: 1px solid var(--border);
    display: block;
  }
  .article-figure {
    margin: 32px auto;
    max-width: 680px;
    text-align: center;
  }
  .article-figure img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.15);
    border: 1px solid var(--border);
    display: block;
  }
  /* Side-by-side gallery layout for inline pairs of photos */
  .article-photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 32px auto;
    max-width: 980px;
  }
  .article-photo-pair img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(99, 102, 241, 0.14);
    border: 1px solid var(--border);
    display: block;
  }
  @media (max-width: 760px) {
    .article-hero-img { margin: 0 auto 28px; padding: 0 20px; }
    .article-hero-img img { max-height: 360px; border-radius: 10px; }
    .article-figure { margin: 24px auto; padding: 0 20px; }
    .article-figure img { max-height: 320px; border-radius: 10px; }
    .article-photo-pair { grid-template-columns: 1fr; gap: 12px; margin: 24px auto; padding: 0 20px; }
    .article-photo-pair img { max-height: 280px; }
  }

  /* ===========================================================
     HOME PAGE HUB SECTION (links to all 4 main service pages)
     =========================================================== */
  .hub-section { background: var(--navy-800); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .hub-title {
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 600; color: var(--text);
    line-height: 1.2; margin-top: 12px; letter-spacing: -0.5px;
    text-align: center; max-width: 820px; margin-left: auto; margin-right: auto;
  }
  .hub-intro {
    text-align: center; max-width: 680px;
    margin: 18px auto 36px;
    color: var(--text-muted); font-size: 15px; line-height: 1.7;
  }
  .hub-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
    max-width: 1100px; margin: 0 auto;
  }
  .hub-card {
    display: block; padding: 28px 26px;
    background: rgba(20, 26, 61, 0.55);
    border: 1px solid var(--border); border-radius: 14px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    text-decoration: none;
  }
  .hub-card:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(192, 132, 252, 0.15);
  }
  .hub-card-eyebrow { font-size: 10px; letter-spacing: 2px; color: var(--cyan); text-transform: uppercase; font-weight: 600; }
  .hub-card-title { font-size: 19px; font-weight: 600; color: var(--text); margin-top: 8px; line-height: 1.3; letter-spacing: -0.2px; }
  .hub-card-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-top: 12px; }
  .hub-card-cta { font-size: 13px; color: var(--purple); margin-top: 16px; letter-spacing: 0.3px; }
  @media (max-width: 760px) {
    .hub-grid { grid-template-columns: 1fr; gap: 14px; }
    .hub-card { padding: 22px 20px; }
  }

  /* ===========================================================
     WHAT WE OFFER — two-column (Vocal | Piano)
     =========================================================== */
  .offer-title {
    font-size: clamp(24px, 3.2vw, 32px);
    font-weight: 600; color: var(--text);
    line-height: 1.2; margin-top: 10px; letter-spacing: -0.4px;
    text-align: center; max-width: 720px;
    margin-left: auto; margin-right: auto;
  }
  .offer-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    max-width: 920px; margin: 44px auto 0;
  }
  .offer-column {
    background: rgba(20, 26, 61, 0.45);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px 24px 14px;
  }
  .offer-column-eyebrow {
    font-size: 11px; letter-spacing: 3px;
    color: var(--cyan); text-transform: uppercase;
    font-weight: 700; text-align: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .offer-link {
    display: block;
    padding: 14px;
    border-radius: 10px;
    transition: background .2s;
    text-decoration: none;
  }
  .offer-link + .offer-link { margin-top: 4px; }
  .offer-link:hover { background: rgba(192, 132, 252, 0.08); }
  .offer-link-title {
    font-size: 17px; font-weight: 600;
    color: var(--text); line-height: 1.3;
    letter-spacing: -0.2px;
  }
  .offer-arrow {
    color: var(--purple);
    font-weight: 400;
    display: inline-block;
    transition: transform .2s;
  }
  .offer-link:hover .offer-arrow { transform: translateX(3px); }
  .offer-link-text {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.55; margin-top: 6px;
  }
  @media (max-width: 760px) {
    .offer-grid { grid-template-columns: 1fr; gap: 14px; max-width: 100%; margin-top: 28px; }
    .offer-column { padding: 20px 18px 10px; }
    .offer-link { padding: 12px 10px; }
    .offer-link-title { font-size: 16px; }
  }

  .offer-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 14px auto 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
  }
