   /* === base.css — современный стиль в стиле metronome-giga === */

   :root {
       --bg-body: #f8f9fa;
       --text: #333;
       --text-muted: #767777;
       --accent: #3498db;
       --accent-hover: #2980b9;
       --success: #27ae60;
       --danger: #e74c3c;
       --warning: #f39c12;
       --white: #fff;
       --half-opasity-bg: rgba(255, 255, 255, 0.72);
       --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
       --shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
       --border: 1px solid #d8d8d8;
       --radius: 5px;
       --transition: all 0.2s ease;
   }

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

   body {
       font-family: 'Segoe UI', Arial, sans-serif;
       background-color: var(--bg-body);
       background-image: url('../images/drumvox-bg.png');
       background-repeat: no-repeat;
       background-position: center center;
       background-size: cover;
       color: var(--text);
       display: flex;
       flex-direction: column;
       min-height: 100vh;
   }

   /* === Navbar === */
   .navbar {
       background-color: var(--white);
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
       padding: 20px 20px;
       position: sticky;
       top: 0;
       z-index: 1000;
   }

   .nav-container {
       display: flex;
       flex-wrap: wrap;
       align-items: center;
       justify-content: center;
       gap: 20px;
       max-width: 1400px;
       margin: 0 auto;
   }

   .nav-brand {
       display: flex;
       align-items: center;
   }

   .nav-brand h2 {
       color: var(--text);
       font-size: 1.5rem;
       margin: 0;
   }

   .burger-menu {
       display: none;
       flex-direction: column;
       cursor: pointer;
       padding: 5px;
       background: none;
       border: none;
       color: var(--text);
       font-size: 1.5rem;
       margin-left: auto;
   }

   .burger-line {
       width: 25px;
       height: 3px;
       background-color: currentColor;
       margin: 3px 0;
       transition: 0.3s;
       border-radius: 2px;
   }

   .nav-menu {
       display: flex;
       list-style: none;
   }

   .nav-menu li {
       margin: 0 10px;
   }

   .nav-menu a {
       text-decoration: none;
       padding: 10px 20px;
       border-radius: 4px;
       transition:  0.3s;
   }

   .nav-menu a:hover {
       background: rgba(255, 255, 255, 0.1);
       color: var(--text);
   }

   .nav-btn {
       display: inline-block;
       padding: 10px 16px;
       background: var(--accent);
       color: var(--white);
       text-decoration: none;
       border-radius: var(--radius);
       font-weight: 300;
       transition: var(--transition);
       box-shadow: var(--shadow-sm);
       border: none;
       cursor: pointer;
       text-align: center;
       min-width: 120px;
   }

   .nav-btn:hover {
       background: var(--accent-hover);
       box-shadow: var(--shadow);
       text-decoration: none;
   }

   .nav-label {
       font-size: 0.75rem;
       color: var(--text-muted);
       margin-bottom: 4px;
       text-align: center;
   }

   /* === Основной контент === */
   .main-content {
       flex: 1;
       display: flex;
       justify-content: center;
       align-items: center;
       background: var(--half-opasity-bg);
       padding: 20px;
   }



   .dNone {
       display: none;
   }



   /* Дополнительные стили, специфичные для лендинга */
   .hero {
       text-align: center;
       padding: 60px 20px;
       max-width: 800px;
       margin: 0 auto;
   }

   .hero h1 {
       font-size: 2.5rem;
       margin-bottom: 20px;
       color: var(--text);
   }

   .hero p {
       font-size: 1.1rem;
       color: var(--text-muted);
       line-height: 1.6;
   }

   .cta-button {
       display: inline-block;
       margin-top: 30px;
       padding: 12px 28px;
       background: var(--accent);
       color: var(--white);
       text-decoration: none;
       border-radius: var(--radius);
       font-weight: 600;
       transition: var(--transition);
       box-shadow: var(--shadow-sm);
   }

   .cta-button:hover {
       background: var(--accent-hover);
       box-shadow: var(--shadow);
   }

 .spas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
    justify-items: center;
}

.spa-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px; /* фиксированная минимальная высота */
}

.spa-card h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.25rem;
}

.spa-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.spa-card a {
    display: inline-block;
    margin-top: auto;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition:  0.2s;
}

.spa-card a:hover {
    background: var(--accent-hover);
    text-decoration: none;
}



      /* === Адаптивность === */
   @media (max-width: 768px) {
       .nav-container {
           flex-direction: row;
           justify-content: space-between;
       }

       .nav-brand {
           flex: 1;
       }

       .burger-menu {
           display: flex;
           margin-left: 10px;
       }

       .nav-menu {
           position: fixed;
           top: 80px;
           left: -100%;
           width: 100%;
           height: calc(100vh - 80px);
           background: var(--white);
           flex-direction: column;
           align-items: center;
           justify-content: flex-start;
           padding-top: 30px;
           transition: left 0.3s ease;
           box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
           z-index: 999;
       }

       .nav-menu.active {
           left: 0;
       }

       .nav-menu li {
           margin: 15px 0;
           width: 80%;
       }

       .nav-menu a {
           display: block;
           padding: 15px;
           width: 100%;
           text-align: center;
           font-size: 1.2rem;
           background: var(--accent);
           color: var(--white);
           border-radius: var(--radius);
           margin: 5px 0;
       }

       .nav-btn {
           min-width: 100px;
           padding: 8px 12px;
           font-size: 0.9rem;
       }

   }