
    /* ==========================================
       ТЕМНАЯ ПРЕМИУМ ТЕМА (DARK MODE)
       ========================================== */
    :root {
      --bg-main: #0C0C0C;
      --bg-card: #111110;
      --bg-card-2: #171614;
      --text-main: #F1EEE8;
      --text-muted: #A8A39B;
      --accent-red: #7D1225;
      --accent-red-hover: #9A1B34;
      --border-color: #2A2825;
      --telegram-blue: #229ED9;
      --telegram-blue-hover: #2AABEE;
      --instagram-grad: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
      --font-heading: 'Cormorant Garamond', serif;
      --font-body: 'Manrope', sans-serif;
      --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      --container: 1280px;
      --pad-x: 5%;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: var(--font-body);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

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

    img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    button { font-family: inherit; }

    /* ==========================================
       КНОПКИ
       ========================================== */
    .btn-contact {
      background-color: var(--accent-red);
      color: #FFF;
      padding: 12px 26px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      border-radius: 1px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-align: center;
      line-height: 1.2;
    }

    .btn-contact:hover {
      background-color: var(--accent-red-hover);
      box-shadow: 0 0 20px rgba(200, 16, 46, 0.4);
      transform: translateY(-1px);
    }

    .btn-tg {
      background-color: var(--telegram-blue);
    }

    .btn-tg:hover {
      background-color: var(--telegram-blue-hover);
      box-shadow: 0 0 20px rgba(34, 158, 217, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-main);
      border: 1px solid var(--border-color);
    }

    .btn-outline:hover {
      border-color: var(--accent-red);
      background: rgba(200, 16, 46, 0.08);
      box-shadow: none;
    }

    .btn-book {
      background: linear-gradient(135deg, #C8102E 0%, #8B0A1F 100%);
    }

    .btn-book:hover {
      background: linear-gradient(135deg, #E61938 0%, #C8102E 100%);
      box-shadow: 0 8px 30px rgba(200, 16, 46, 0.35);
    }

    /* ==========================================
       ШАПКА И НАВИГАЦИЯ
       ========================================== */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      padding: 20px var(--pad-x);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .logo {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .logo span {
      color: var(--accent-red);
      font-size: 0.75rem;
      font-family: var(--font-body);
      font-weight: 600;
      border: 1px solid var(--accent-red);
      padding: 2px 8px;
      letter-spacing: 1px;
    }

    nav {
      display: flex;
      gap: 30px;
    }

    nav a {
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      position: relative;
      padding: 5px 0;
      transition: var(--transition);
      cursor: pointer;
    }

    nav a:hover, nav a.active {
      color: var(--text-main);
    }

    nav a.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--accent-red);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    /* Бургер-меню */
    .burger {
      display: none;
      background: transparent;
      border: 1px solid var(--border-color);
      color: var(--text-main);
      width: 44px;
      height: 44px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .burger:hover { border-color: var(--accent-red); }

    .burger span,
    .burger span::before,
    .burger span::after {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-main);
      transition: var(--transition);
      position: relative;
    }

    .burger span::before,
    .burger span::after {
      content: '';
      position: absolute;
      left: 0;
    }

    .burger span::before { top: -7px; }
    .burger span::after  { top: 7px; }

    .burger.is-open span { background: transparent; }
    .burger.is-open span::before { top: 0; transform: rotate(45deg); }
    .burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

    /* ==========================================
       РАЗДЕЛЫ (ОТДЕЛЬНЫЕ СТРАНИЦЫ)
       ========================================== */
    .page-section {
      display: none;
      animation: fadeIn 0.4s ease-in-out forwards;
      min-height: 80vh;
      padding: 60px var(--pad-x);
      max-width: var(--container);
      margin: 0 auto;
    }

    .page-section.active { display: block; }

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

    .badge-experience {
      color: var(--accent-red);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: 3.5rem;
      font-weight: 400;
      margin-bottom: 15px;
      line-height: 1.1;
      letter-spacing: 1px;
    }

    .section-subtitle {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 700px;
      margin-bottom: 50px;
      font-weight: 300;
    }

    /* ==========================================
       1. STYLE — ПЕРСОНАЛЬНЫЙ СТИЛЬ
       ========================================== */
    .hero-banner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      margin-bottom: 80px;
      background: var(--bg-card);
      padding: 50px;
      border: 1px solid var(--border-color);
    }

    .hero-img {
      height: 500px;
      width: 100%;
      border-right: 3px solid var(--accent-red);
      filter: grayscale(20%) contrast(105%);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 30px;
    }

    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
      position: relative;
    }

    .service-card:hover {
      border-color: var(--accent-red);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(200, 16, 46, 0.1);
    }

    .service-card h3 {
      font-family: var(--font-heading);
      font-size: 2rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .service-price {
      font-size: 1.8rem;
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--accent-red);
      margin: 25px 0 15px;
    }

    .service-card ul {
      list-style: none;
      margin-bottom: 30px;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .service-card ul li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 20px;
    }

    .service-card ul li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: var(--accent-red);
    }

    .included-highlight {
      background: rgba(200, 16, 46, 0.1);
      border-left: 3px solid var(--accent-red);
      padding: 12px 15px;
      margin-bottom: 20px;
      font-size: 0.85rem;
      color: #FFF;
    }

    /* ==========================================
       2. SHOPPING — ШКОЛА ШОПИНГА
       ========================================== */
    .shopping-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 50px;
      align-items: center;
    }

    .shopping-box {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 45px;
    }

    .shopping-box h3 {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      margin-bottom: 25px;
    }

    /* ==========================================
       3. PRO — ШКОЛА СТИЛИСТОВ
       ========================================== */
    .pro-modules {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }

    .module-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 35px;
      position: relative;
      transition: var(--transition);
    }

    .module-card:hover { border-color: var(--accent-red); }

    .module-number {
      font-family: var(--font-heading);
      font-size: 4rem;
      color: var(--accent-red);
      opacity: 0.25;
      position: absolute;
      top: 10px;
      right: 20px;
      font-weight: 700;
    }

    .module-card h4 {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      margin-bottom: 15px;
    }

    .pro-cta {
      margin-top: 60px;
      padding: 50px;
      background: var(--bg-card);
      border: 1px solid var(--accent-red);
      text-align: center;
    }

    .pro-cta h3 {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      margin-bottom: 15px;
    }

    .pro-cta p {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 30px;
    }

    /* ==========================================
       4. BUSINESS — БРЕНДЫ И ОБУЧЕНИЕ
       ========================================== */
    .business-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      gap: 35px;
    }

    .business-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 40px;
      transition: var(--transition);
    }

    .business-card:hover {
      border-color: var(--accent-red);
      transform: translateY(-3px);
    }

    .business-card h3 {
      font-family: var(--font-heading);
      font-size: 2rem;
      margin-bottom: 20px;
      color: #FFF;
    }

    .business-card ul {
      list-style: none;
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 28px;
    }

    .business-card ul li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 10px;
    }

    .business-card ul li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--accent-red);
      font-weight: 600;
    }

    /* ==========================================
       5. BOOK — КНИГА
       ========================================== */
    .book-container {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 60px;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 50px;
      align-items: center;
    }

    .book-cover {
      box-shadow: 0 15px 40px rgba(0,0,0,0.8);
      border: 1px solid var(--border-color);
      width: 100%;
      aspect-ratio: 396 / 612;
      transition: var(--transition);
    }

    .book-cover:hover { transform: translateY(-5px); }

    .book-meta {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 20px 0;
      padding: 18px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .book-meta-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
    }

    .book-meta-row span:first-child { color: var(--text-muted); }
    .book-meta-row span:last-child  { color: var(--text-main); font-weight: 500; }

    .book-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 25px;
    }

    /* ==========================================
       ПОДВАЛ (FOOTER)
       ========================================== */
    footer {
      background: #050505;
      border-top: 1px solid var(--border-color);
      color: #FFF;
      padding: 60px var(--pad-x) 30px;
      margin-top: 100px;
    }

    .footer-content {
      max-width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border-color);
    }

    .footer-logo {
      font-family: var(--font-heading);
      font-size: 2rem;
      margin-bottom: 15px;
      letter-spacing: 2px;
    }

    .footer-about {
      color: var(--text-muted);
      font-size: 0.9rem;
      max-width: 380px;
      margin-bottom: 20px;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .social-link {
      width: 42px;
      height: 42px;
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--text-muted);
    }

    .social-link:hover { border-color: var(--accent-red); color: var(--text-main); }

    .social-link.ig:hover {
      background: var(--instagram-grad);
      border-color: transparent;
      color: #FFF;
    }

    .social-link.tg:hover {
      background: var(--telegram-blue);
      border-color: transparent;
      color: #FFF;
    }

    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      margin-bottom: 18px;
      color: var(--text-main);
    }

    .footer-contacts a,
    .footer-nav a {
      display: block;
      color: var(--text-muted);
      margin-bottom: 12px;
      transition: var(--transition);
      font-size: 0.9rem;
    }

    .footer-contacts a:hover,
    .footer-nav a:hover { color: var(--accent-red); }

    .footer-bottom {
      max-width: var(--container);
      margin: 0 auto;
      text-align: center;
      padding-top: 30px;
      font-size: 0.8rem;
      color: #555;
    }

    .footer-bottom a { color: var(--text-muted); transition: var(--transition); }
    .footer-bottom a:hover { color: var(--accent-red); }

    /* ==========================================
       МОДАЛЬНОЕ ОКНО
       ========================================== */
    .modal {
      display: none;
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .modal.is-open { display: flex; }

    .modal-content {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 40px;
      max-width: 480px;
      width: 100%;
      position: relative;
      border-top: 3px solid var(--accent-red);
      max-height: 92vh;
      overflow-y: auto;
    }

    .modal h3 {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      margin-bottom: 8px;
    }

    .modal-subtitle {
      color: var(--text-muted);
      font-size: 0.85rem;
      margin-bottom: 25px;
    }

    .close-modal {
      position: absolute;
      top: 12px; right: 18px;
      font-size: 1.8rem;
      color: var(--text-muted);
      cursor: pointer;
      background: transparent;
      border: none;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      line-height: 1;
    }

    .close-modal:hover { color: var(--accent-red); transform: rotate(90deg); }

    .form-group { margin-bottom: 20px; }

    .form-group label {
      display: block;
      font-size: 0.75rem;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px;
      border: 1px solid var(--border-color);
      font-family: var(--font-body);
      background: #0A0A0A;
      color: #FFF;
      font-size: 0.95rem;
      transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--accent-red);
    }

    .form-group textarea { resize: vertical; min-height: 90px; }

    .form-success {
      display: none;
      padding: 20px;
      background: rgba(34, 158, 217, 0.1);
      border: 1px solid var(--telegram-blue);
      margin-top: 15px;
      font-size: 0.9rem;
    }

    .form-success.is-shown { display: block; }

    /* ==========================================
       АДАПТИВ (МОБИЛЬНАЯ ВЕРСИЯ)
       ========================================== */
    @media (max-width: 1100px) {
      header { padding: 16px 4%; }
      .page-section { padding: 50px 4%; }
      footer { padding: 50px 4% 30px; }
      .hero-img { height: 420px; }
      .section-title { font-size: 3rem; }
    }

    @media (max-width: 900px) {
      .section-title { font-size: 2.6rem; }
      .hero-banner, .shopping-layout, .book-container {
        grid-template-columns: 1fr;
      }
      .pro-modules { grid-template-columns: 1fr; }
      .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
      .hero-img { border-right: none; border-bottom: 3px solid var(--accent-red); height: 360px; }
      .book-cover { max-width: 320px; margin: 0 auto; }
    }

    @media (max-width: 768px) {
      html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }

      header {
        position: sticky;
        top: 0;
        min-height: 64px;
        padding: 10px max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
        gap: 8px;
        isolation: isolate;
      }

      .logo {
        min-width: 0;
        flex: 1 1 auto;
        font-size: 1.25rem;
        letter-spacing: 1.5px;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
      }

      .logo span {
        flex: 0 0 auto;
        font-size: 0.56rem;
        padding: 2px 5px;
        letter-spacing: 0.6px;
      }

      .header-right {
        margin-left: auto;
        gap: 8px;
      }

      .burger {
        display: flex;
        flex: 0 0 44px;
      }

      nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100dvh - 64px);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: rgba(10, 10, 10, 0.99);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 8px 0 max(18px, env(safe-area-inset-bottom));
        border-bottom: 1px solid var(--border-color);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 1001;
      }

      nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      nav a {
        padding: 15px max(20px, 6%);
        font-size: 0.84rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
      }

      nav a.active::after { display: none; }
      nav a.active { color: var(--accent-red); }
      .header-right .btn-contact { display: none; }

      .page-section {
        width: 100%;
        max-width: 100%;
        padding: 32px max(16px, 4%);
        min-height: auto;
      }

      .badge-experience {
        font-size: 0.74rem;
        line-height: 1.55;
        letter-spacing: 1.7px;
      }

      .section-title {
        font-size: clamp(2rem, 9vw, 2.35rem);
        line-height: 1.04;
        overflow-wrap: anywhere;
      }

      .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 30px;
      }

      .hero-banner {
        width: 100%;
        min-width: 0;
        padding: 24px 20px;
        gap: 26px;
        margin-bottom: 44px;
      }

      .hero-banner > * { min-width: 0; }
      .hero-banner h2 {
        font-size: clamp(1.65rem, 7.4vw, 2rem) !important;
        line-height: 1.16 !important;
        overflow-wrap: anywhere;
      }

      .hero-banner p { line-height: 1.7; }

      .hero-img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        object-position: center;
        border-right: none;
        border-bottom: 3px solid var(--accent-red);
      }

      h2[style*="font-size: 2.8rem"] {
        font-size: 1.95rem !important;
        line-height: 1.15 !important;
        margin-bottom: 28px !important;
      }

      .services-grid, .business-grid, .pro-modules {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
      }

      .service-card, .business-card, .module-card {
        min-width: 0;
        padding: 26px 20px;
      }

      .service-card h3, .shopping-box h3 {
        font-size: 1.55rem;
        line-height: 1.2;
        overflow-wrap: anywhere;
      }

      .module-card h4 { font-size: 1.3rem; }

      .shopping-layout {
        width: 100%;
        min-width: 0;
        gap: 24px;
      }

      .shopping-layout > img {
        width: 100%;
        height: auto !important;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        object-position: center;
      }

      .shopping-box {
        min-width: 0;
        padding: 26px 20px;
      }

      .book-container {
        width: 100%;
        min-width: 0;
        padding: 26px 20px;
        gap: 30px;
      }

      .book-cover {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
      }

      .book-actions { flex-direction: column; }
      .book-actions .btn-contact { width: 100%; }

      .btn-contact {
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
      }

      .pro-cta { padding: 32px 22px; margin-top: 36px; }
      .pro-cta h3 { font-size: 1.65rem; }

      .footer-content { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
      .footer-logo { font-size: 1.6rem; }
      footer { margin-top: 60px; padding: 46px max(16px, 4%) 25px; }

      .modal { align-items: flex-end; padding: 0; }
      .modal-content {
        width: 100%;
        max-width: none;
        max-height: calc(100dvh - env(safe-area-inset-top));
        padding: 30px 20px max(24px, env(safe-area-inset-bottom));
      }
      .modal h3 { font-size: 1.5rem; }
    }

    @media (max-width: 480px) {
      .logo { font-size: 1.12rem; letter-spacing: 1.2px; }
      .logo span { font-size: 0.52rem; }
      .page-section { padding-top: 28px; }
      .section-title { font-size: clamp(1.9rem, 9.5vw, 2.15rem); }
      .section-subtitle { font-size: 0.92rem; }
      .hero-banner { padding: 22px 18px; }
      .service-card, .business-card, .module-card { padding: 24px 18px; }
      .service-price { font-size: 1.5rem; }
      .module-number { font-size: 3rem; top: 5px; right: 12px; }
      .book-container { padding: 24px 18px; gap: 26px; }
      .book-cover { max-width: 250px; }
    }

    @media (max-width: 380px) {
      :root { --pad-x: 3.5%; }
      .logo span { display: none; }
      .page-section, footer { padding-left: 14px; padding-right: 14px; }
      .section-title { font-size: 1.85rem; }
    }

    /* ==========================================
       УТИЛИТЫ
       ========================================== */
    .text-red { color: var(--accent-red); }
    .text-muted { color: var(--text-muted); }
    .center { text-align: center; }
    .mb-30 { margin-bottom: 30px; }
    .mb-50 { margin-bottom: 50px; }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(34, 158, 217, 0.5); }
      50%      { box-shadow: 0 0 0 10px rgba(34, 158, 217, 0); }
    }
    .pulse { animation: pulse 2s infinite; }
  

/* ===== STATIC MULTI-PAGE + SEO BUILD ===== */
html { scroll-padding-top: 92px; }
body { min-width: 0; }
main { min-height: 65vh; }
.page-section { display: block !important; animation: none; }
.page-section.active { display: block !important; }
nav a.active { color: var(--text-main); }
picture { display: block; width: 100%; }
.shopping-image { width: 100%; height: 480px; border: 1px solid var(--border-color); object-fit: cover; }
.home-intro { max-width: 760px; margin-bottom: 42px; }
.home-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.home-card-link { display: flex; flex-direction: column; height: 100%; }
.home-card-link .btn-contact { margin-top: auto; }
.home-card-kicker { color: var(--accent-red); font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.mobile-telegram-cta { display: none; }

@media (max-width: 900px) {
  .home-grid { grid-template-columns: 1fr; }
  .shopping-image { height: 360px; }
}

@media (max-width: 768px) {
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .shopping-image { height: 320px; }
  .mobile-telegram-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 1800;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 20px;
    border-radius: 8px;
    background: var(--telegram-blue);
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .4px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease, background-color .2s ease;
  }
  .mobile-telegram-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-telegram-cta:active { background: var(--telegram-blue-hover); }
  footer { margin-top: 60px; }
}

@media (max-width: 480px) {
  .shopping-image { height: 290px; }
  .page-section { padding-top: 34px; }
  .hero-banner { margin-bottom: 42px; }
}

/* ===== PREMIUM MOTION ===== */
:root {
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
  --motion-fast: 280ms;
  --motion-medium: 720ms;
}

/* Hero: calm, staggered entrance without layout shift */
.page-section.hero-animate > .badge-experience,
.page-section.hero-animate > .section-title,
.page-section.hero-animate > .section-subtitle,
.page-section.hero-animate > .hero-banner,
.page-section.hero-animate > .shopping-layout,
.page-section.hero-animate > .pro-modules,
.page-section.hero-animate > .book-container {
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal var(--motion-medium) var(--motion-ease) forwards;
}

.page-section.hero-animate > .badge-experience { animation-delay: 40ms; }
.page-section.hero-animate > .section-title { animation-delay: 110ms; }
.page-section.hero-animate > .section-subtitle { animation-delay: 180ms; }
.page-section.hero-animate > .hero-banner,
.page-section.hero-animate > .shopping-layout,
.page-section.hero-animate > .pro-modules,
.page-section.hero-animate > .book-container { animation-delay: 260ms; }

.page-section.hero-animate .hero-banner > div,
.page-section.hero-animate .hero-banner > picture {
  opacity: 0;
  transform: translateY(12px);
  animation: heroReveal 760ms var(--motion-ease) forwards;
}
.page-section.hero-animate .hero-banner > div { animation-delay: 330ms; }
.page-section.hero-animate .hero-banner > picture { animation-delay: 430ms; }

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Red editorial line under the main title */
.section-title {
  position: relative;
  padding-bottom: 14px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left center;
}
.page-section.hero-animate .section-title::after {
  animation: titleLineGrow 760ms var(--motion-ease) 380ms forwards;
}
@keyframes titleLineGrow { to { transform: scaleX(1); } }

/* Scroll reveal. JS only adds this to elements below the first screen. */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms var(--motion-ease),
    transform 700ms var(--motion-ease),
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.book-cover.reveal-on-scroll {
  transform: translateY(18px) rotate(-1.2deg) scale(.99);
}
.book-cover.reveal-on-scroll.is-revealed {
  transform: translateY(0) rotate(0deg) scale(1);
}
.book-cover.reveal-on-scroll.is-revealed:hover {
  transform: translateY(-5px) rotate(.35deg) scale(1.008);
}

/* Images: restrained editorial zoom on pointer devices only */
@media (hover: hover) and (pointer: fine) {
  .hero-banner picture,
  .shopping-layout picture,
  .shopping-layout > img {
    overflow: hidden;
  }
  .hero-img,
  .shopping-image {
    transition: transform 650ms var(--motion-ease), filter 650ms var(--motion-ease);
  }
  .hero-banner:hover .hero-img,
  .shopping-layout:hover .shopping-image {
    transform: scale(1.018);
    filter: grayscale(12%) contrast(106%);
  }
}

/* Cards: small lift, no aggressive motion */
.service-card,
.business-card,
.module-card {
  transition:
    transform 360ms var(--motion-ease),
    border-color 280ms ease,
    box-shadow 360ms var(--motion-ease);
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .business-card:hover,
  .module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
  }
  .service-card:hover .service-price {
    filter: brightness(1.15);
  }
}

/* Buttons: a single soft light pass on interaction */
.btn-contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-contact::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -50%;
  bottom: -50%;
  left: -45%;
  width: 34%;
  transform: translateX(-240%) rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.20), transparent);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn-contact:hover::after,
  .btn-contact:focus-visible::after {
    animation: buttonShine 720ms var(--motion-ease) 1;
  }
}
@keyframes buttonShine {
  from { transform: translateX(-240%) rotate(12deg); }
  to   { transform: translateX(620%) rotate(12deg); }
}

/* Replace the old infinite pulse with a restrained static emphasis. */
.pulse {
  animation: none;
  box-shadow: 0 0 0 1px rgba(34, 158, 217, .10), 0 8px 24px rgba(34, 158, 217, .12);
}

/* Accessibility: users who request less motion get instant state changes. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal-on-scroll,
  .reveal-on-scroll.is-revealed,
  .book-cover.reveal-on-scroll,
  .book-cover.reveal-on-scroll.is-revealed,
  .page-section.hero-animate > .badge-experience,
  .page-section.hero-animate > .section-title,
  .page-section.hero-animate > .section-subtitle,
  .page-section.hero-animate > .hero-banner,
  .page-section.hero-animate > .shopping-layout,
  .page-section.hero-animate > .pro-modules,
  .page-section.hero-animate > .book-container,
  .page-section.hero-animate .hero-banner > div,
  .page-section.hero-animate .hero-banner > picture {
    opacity: 1 !important;
    transform: none !important;
  }
  .section-title::after { transform: scaleX(1) !important; }
}


/* ===== DIDISHA EDITORIAL LUXURY REDESIGN ===== */
:root {
  --ivory: #F1EEE8;
  --ivory-soft: #E7E1D8;
  --ink: #171411;
  --warm-gray: #A8A39B;
  --oxblood: #7D1225;
  --oxblood-deep: #5F0E1D;
  --hairline: rgba(241, 238, 232, .16);
  --paper-hairline: rgba(23, 20, 17, .18);
  --container: 1440px;
}

::selection { background: var(--oxblood); color: var(--ivory); }

body {
  background:
    radial-gradient(circle at 82% 8%, rgba(125,18,37,.075), transparent 28rem),
    var(--bg-main);
  letter-spacing: -.005em;
}

header {
  min-height: 76px;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(12,12,12,.86);
  border-bottom-color: var(--hairline);
}

.logo {
  font-size: 1.95rem;
  font-weight: 600;
  letter-spacing: .12em;
}
.logo span {
  font-family: var(--font-body);
  color: var(--ivory-soft);
  border-color: rgba(125,18,37,.9);
  font-size: .62rem;
  font-weight: 500;
  padding: 4px 9px;
  letter-spacing: .12em;
}

nav { gap: clamp(18px, 2vw, 34px); }
nav a {
  color: #8E8982;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
}
nav a.active::after { height: 1px; }

.page-section {
  max-width: var(--container);
  padding-top: clamp(58px, 7vw, 106px);
  padding-bottom: clamp(68px, 8vw, 120px);
}

.badge-experience {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #B9B2A8;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .22em;
  margin-bottom: 20px;
}
.badge-experience::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--accent-red);
}

.section-title {
  max-width: 1100px;
  font-size: clamp(4.1rem, 7.2vw, 7.2rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.035em;
  margin-bottom: 26px;
  padding-bottom: 26px;
  text-wrap: balance;
}
.section-title::after {
  width: 88px;
  height: 1px;
}

.section-subtitle {
  max-width: 820px;
  margin-bottom: clamp(50px, 6vw, 82px);
  color: #9B968F;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.8;
  font-weight: 400;
}

/* Buttons: fashion-house restraint, no messenger-blue CTA. */
.btn-contact {
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 0;
  background: var(--accent-red);
  color: var(--ivory);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  box-shadow: none;
}
.btn-contact:hover {
  background: var(--accent-red-hover);
  box-shadow: 0 14px 40px rgba(125,18,37,.20);
}
.btn-tg { background-color: var(--accent-red); }
.btn-tg:hover { background-color: var(--accent-red-hover); box-shadow: 0 14px 40px rgba(125,18,37,.20); }
.btn-outline { border-color: rgba(241,238,232,.30); }
.btn-outline:hover { border-color: var(--ivory); background: var(--ivory); color: var(--ink); }
.btn-book { background: var(--ink); color: var(--ivory); }
.btn-book:hover { background: var(--oxblood); box-shadow: 0 14px 40px rgba(125,18,37,.20); }
.pulse { box-shadow: none; }

/* Hero: editorial composition instead of boxed landing-page card. */
.hero-banner {
  grid-template-columns: minmax(280px, .74fr) minmax(0, 1.26fr);
  gap: clamp(42px, 6vw, 92px);
  padding: 0;
  margin-bottom: clamp(88px, 9vw, 140px);
  background: transparent;
  border: 0;
  align-items: center;
}
.hero-banner > div:first-child h2 {
  font-size: clamp(2.25rem, 3.4vw, 4rem) !important;
  line-height: 1.02 !important;
  font-weight: 400;
  letter-spacing: -.025em;
}
.hero-banner > div:first-child p {
  font-size: .97rem !important;
  line-height: 1.85;
}
.hero-banner picture { position: relative; }
.hero-banner picture::before {
  content: 'DIDISHA / ST. PETERSBURG';
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  padding: 7px 10px;
  background: rgba(12,12,12,.74);
  color: var(--ivory);
  font: 600 .61rem/1 var(--font-body);
  letter-spacing: .18em;
  backdrop-filter: blur(6px);
}
.hero-img {
  height: clamp(560px, 61vw, 760px);
  border: 0;
  filter: saturate(.82) contrast(1.03);
  object-position: center 42%;
}

/* Home direction list: magazine index rather than cards. */
.home-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
  counter-reset: didisha-home;
}
.home-card-link {
  counter-increment: didisha-home;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 46px;
  min-height: 200px;
  padding: 34px 0 38px;
  background: transparent;
  border: 0 !important;
  border-bottom: 1px solid var(--hairline) !important;
}
.home-card-link::before {
  content: '0' counter(didisha-home);
  position: absolute;
  top: 36px;
  right: 0;
  color: #615D58;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
}
.home-card-link > div { max-width: 820px; }
.home-card-link h3 {
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}
.home-card-kicker { color: #9B968F; letter-spacing: .2em; }
.home-card-link .btn-contact { min-width: 148px; margin-bottom: 2px; }

/* Personal services: editorial price list. */
.services-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  padding: 42px 0 46px;
  background: transparent;
  border: 0 !important;
  border-bottom: 1px solid var(--hairline) !important;
}
.service-card h3 {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
}
.service-price {
  color: var(--ivory);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.service-card ul { max-width: 760px; line-height: 1.75; }
.service-card ul li::before { content: '·'; color: #6F6962; }
.included-highlight {
  max-width: 760px;
  background: transparent;
  border-left: 1px solid var(--accent-red);
  color: var(--ivory-soft);
  padding: 8px 0 8px 18px;
}

/* Shopping: oversized image + text, no framed box. */
.shopping-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}
.shopping-image {
  height: clamp(600px, 64vw, 820px);
  border: 0;
  filter: saturate(.84) contrast(1.03);
}
.shopping-box {
  padding: 0;
  background: transparent;
  border: 0;
}
.shopping-box h3 {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
}
.shopping-box li { padding-top: 14px !important; padding-bottom: 14px !important; border-color: var(--hairline) !important; }
.shopping-box li strong { color: #6F6962 !important; font-family: var(--font-heading); font-weight: 400 !important; }

/* Pro: syllabus as editorial columns. */
.pro-modules {
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.module-card {
  min-height: 330px;
  padding: 38px 34px 42px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.module-card:first-child { border-left: 1px solid var(--hairline); }
.module-number {
  top: 26px;
  right: 28px;
  color: var(--ivory);
  opacity: .08;
  font-size: 6rem;
  font-weight: 400;
}
.module-card h4 { font-size: 2rem; font-weight: 400; line-height: 1.08; }
.module-card p { line-height: 1.85; }
.pro-cta {
  margin-top: 72px;
  padding: 60px clamp(24px, 7vw, 96px);
  background: var(--ivory);
  color: var(--ink);
  border: 0;
  text-align: left;
}
.pro-cta h3 { font-size: clamp(2.6rem, 4.5vw, 4.8rem); font-weight: 400; line-height: .95; }
.pro-cta p { color: #5F5A54; margin-left: 0; }

/* Business: clean fashion-agency service rows. */
.business-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.business-card {
  position: relative;
  padding: 42px 0 46px;
  background: transparent;
  border: 0 !important;
  border-bottom: 1px solid var(--hairline) !important;
}
.business-card h3 {
  max-width: 900px;
  font-size: clamp(2rem, 3.25vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ivory);
}
.business-card > p,
.business-card > ul,
.business-card > .included-highlight { max-width: 860px; }
.business-card ul { line-height: 1.8; }
.business-card ul li::before { content: '·'; color: #6F6962; }
.business-card .btn-contact { margin-top: 4px; }

/* Business proof panel: quieter, more like agency credentials. */
#business .hero-banner > div:last-child {
  background: transparent !important;
  border: 0 !important;
  border-left: 1px solid var(--hairline) !important;
  padding: 14px 0 14px clamp(28px, 5vw, 60px) !important;
}
#business .hero-banner > div:last-child > div:nth-child(odd) {
  color: var(--ivory) !important;
  font-weight: 400 !important;
}

/* Book: warm paper insert, like a printed editorial object. */
#book .book-container {
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 100px);
  padding: clamp(38px, 6vw, 86px);
  background: var(--ivory);
  color: var(--ink);
  border: 0;
}
#book .book-container h2 { color: var(--ink); font-size: clamp(3rem, 5vw, 5.4rem) !important; font-weight: 400; }
#book .book-container [style*="color: var(--text-muted)"] { color: #625D57 !important; }
#book .book-meta { border-color: var(--paper-hairline); }
#book .book-meta-row span:first-child { color: #77716B; }
#book .book-meta-row span:last-child { color: var(--ink); }
#book .book-cover { border: 0; box-shadow: 0 24px 70px rgba(23,20,17,.20); }
#book .btn-outline { color: var(--ink); border-color: rgba(23,20,17,.35); }
#book .btn-outline:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* Footer and socials: monochrome with oxblood accents. */
footer {
  background: #080807;
  border-top-color: var(--hairline);
  padding-top: 78px;
}
.footer-content { border-bottom-color: var(--hairline); }
.footer-logo { font-size: 2.6rem; font-weight: 400; }
.social-link { border-color: var(--hairline); color: #9A958E; }
.social-link:hover,
.social-link.ig:hover,
.social-link.tg:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: var(--ivory);
}
.footer-bottom { color: #625E58; }

.mobile-telegram-cta {
  background: var(--accent-red) !important;
  border-radius: 0 !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.32) !important;
  letter-spacing: .12em !important;
  text-transform: uppercase;
}
.mobile-telegram-cta:active { background: var(--accent-red-hover) !important; }

/* Motion tuned for editorial redesign. */
@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .business-card:hover,
  .module-card:hover,
  .home-card-link:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: rgba(241,238,232,.38) !important;
  }
  .hero-banner:hover .hero-img,
  .shopping-layout:hover .shopping-image { transform: scale(1.012); filter: saturate(.92) contrast(1.03); }
}

@media (max-width: 900px) {
  .section-title { font-size: clamp(3.35rem, 10vw, 5rem); }
  .hero-banner { grid-template-columns: 1fr; gap: 34px; }
  .hero-img { height: min(86vh, 680px); }
  .shopping-layout { grid-template-columns: 1fr; }
  .shopping-image { height: min(88vh, 680px); }
  .service-card { grid-template-columns: 1fr 190px; }
  .pro-modules { grid-template-columns: 1fr; }
  .module-card, .module-card:first-child { border-left: 1px solid var(--hairline); border-right: 1px solid var(--hairline); }
  #book .book-container { grid-template-columns: minmax(220px, 320px) 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  header { min-height: 68px; background: rgba(12,12,12,.94); }
  .page-section { padding-top: 48px; }
  .badge-experience { font-size: .61rem; line-height: 1.6; }
  .section-title { font-size: clamp(3rem, 15vw, 4.3rem); line-height: .91; margin-bottom: 22px; }
  .section-subtitle { margin-bottom: 46px; line-height: 1.7; }
  .hero-banner { padding: 0 !important; margin-bottom: 78px; }
  .hero-img { height: min(78vh, 620px); border-bottom: 0; }
  .hero-banner picture::before { left: 12px; bottom: 12px; font-size: .55rem; }
  .home-card-link { grid-template-columns: 1fr; gap: 24px; min-height: auto; padding: 30px 0 34px; }
  .home-card-link h3 { font-size: clamp(2.25rem, 12vw, 3.35rem); }
  .home-card-link::before { top: 30px; }
  .home-card-link .btn-contact { width: fit-content; }
  .service-card { grid-template-columns: 1fr; gap: 24px; padding: 34px 0 38px; }
  .service-card h3 { font-size: clamp(2rem, 10vw, 3rem); }
  .service-card .btn-contact { width: 100%; }
  .shopping-image { height: min(75vh, 610px) !important; }
  .shopping-box h3 { font-size: clamp(2.2rem, 11vw, 3.3rem); }
  .module-card { min-height: 260px; padding: 30px 24px 34px; }
  .pro-cta { margin-top: 52px; padding: 42px 24px; }
  .business-card { padding: 34px 0 38px; }
  .business-card h3 { font-size: clamp(2rem, 10vw, 3rem); }
  .business-card .btn-contact { width: 100%; }
  #business .hero-banner > div:last-child { border-left: 0 !important; border-top: 1px solid var(--hairline) !important; padding: 32px 0 0 !important; }
  #book .book-container { grid-template-columns: 1fr; padding: 30px 22px 34px; }
  #book .book-cover { max-width: 270px; margin: 0 auto; }
  #book .book-container h2 { font-size: clamp(2.6rem, 13vw, 4rem) !important; }
  footer { padding-top: 58px; }
}

@media (max-width: 480px) {
  .logo { font-size: 1.22rem; }
  .page-section { padding-top: 40px; }
  .section-title { font-size: clamp(2.75rem, 15vw, 3.75rem); }
  .hero-img { height: 64vh; min-height: 470px; }
  .shopping-image { height: 67vh !important; min-height: 500px; }
}


/* Mobile footer: centered editorial stack */
@media (max-width: 768px) {
  footer {
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
    text-align: center;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
    justify-items: center;
  }
  .footer-content > div,
  .footer-col,
  .footer-contacts {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-about {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-col h4 {
    text-align: center;
  }
  .footer-nav a,
  .footer-contacts a {
    text-align: center;
  }
  .footer-bottom {
    max-width: 520px;
    line-height: 1.7;
  }
}

/* Mobile navigation booking CTA */
.mobile-nav-cta { display: none; }
@media (max-width: 768px) {
  nav .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 16px max(20px, 6%) 8px;
    padding: 14px 20px;
    border: 1px solid var(--accent-red);
    background: var(--accent-red);
    color: #F7F2EA;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: center;
  }
  nav .mobile-nav-cta:hover,
  nav .mobile-nav-cta:active {
    background: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
    color: #fff;
  }
  nav .mobile-nav-cta::after { display: none !important; }
}
