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

    :root {
      --gold: #C9A84C;
      --gold-light: #E2C47A;
      --gold-dark: #9C7A2E;
      --dark: #0e0b07;
      --dark-mid: #1a1408;
      --white: #f5f0e8;
      --text-muted: rgba(245, 240, 232, 0.6);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'PT Serif', serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ─── HEADER ─────────────────────────────────────────── */
    header {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 48px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none !important;
    }

    .logo-icon {
      height: 36px;
      width: auto;
      flex-shrink: 0;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-outline {
      padding: 10px 28px;
      border: 1.5px solid var(--white);
      border-radius: 50px;
      background: transparent;
      color: var(--white) !important;
      font-family: 'DIN Condensed C', 'Roboto Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none !important;
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--gold);
      color: var(--gold) !important;
    }

    .btn-gold {
      padding: 10px 28px;
      border: none;
      border-radius: 50px;
      background: var(--gold);
      color: var(--dark) !important;
      font-family: 'DIN Condensed C', 'Roboto Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none !important;
      transition: all 0.3s ease;
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    }

    .nav-socials {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: 8px;
    }

    .nav-vk {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 6px;
      transition: border-color 0.3s;
      text-decoration: none !important;
    }
    .nav-vk:hover { border-color: var(--gold); }
    .nav-vk svg { width: 16px; height: 16px; fill: var(--white); }

    .nav-phone {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--white) !important;
      font-family: 'DIN Condensed C', 'Roboto Condensed', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none !important;
      transition: color 0.3s;
    }
    .nav-phone:hover { color: var(--gold) !important; }
    .nav-phone svg { width: 16px; height: 16px; fill: currentColor; }

    /* ─── BURGER MENU & MOBILE OVERLAY ───────────────────── */
    .burger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 32px;
      height: 20px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 101;
    }

    .burger-btn span {
      width: 100%;
      height: 2px;
      background-color: var(--gold);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background-color: rgba(14, 11, 7, 0.98);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 200;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .mobile-menu.is-open {
      right: 0;
    }

    .mobile-menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-close::before,
    .mobile-menu-close::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 2px;
      background-color: var(--gold);
      border-radius: 2px;
    }

    .mobile-menu-close::before { transform: rotate(45deg); }
    .mobile-menu-close::after { transform: rotate(-45deg); }

    .mobile-menu-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      width: 100%;
      padding: 0 40px;
    }

    .mobile-menu-content .btn-outline,
    .mobile-menu-content .btn-gold {
      width: 100%;
      max-width: 300px;
      text-align: center;
      padding: 16px;
      font-size: 20px;
    }

    .mobile-menu-content .nav-socials {
      margin-left: 0;
      margin-top: 16px;
      flex-direction: column;
      gap: 24px;
    }

    .mobile-menu-content .nav-phone {
      font-size: 22px;
    }

    /* ─── TOP SECTION WRAPPER ────────────────────────────── */
    .top-wrapper {
      position: relative;
      z-index: 10;
      padding-bottom: 1px; 
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(10,8,4,0.5) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(10,8,4,0.1) 0%, transparent 40%, rgba(10,8,4,0.7) 90%, rgba(10,8,4,1) 100%);
    }

    /* ─── HERO ───────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 180px 48px 0;
      max-width: 680px;
      animation: fadeUp 0.9s ease both;
    }

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

    .hero-title {
      font-family: 'DIN Condensed C', 'Roboto Condensed', sans-serif;
      font-size: clamp(48px, 7vw, 80px); /* Уменьшили размер заголовка */
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 24px;
    }

    .hero-title .accent {
      color: var(--gold);
      white-space: nowrap; /* Запрещаем перенос знака рубля на новую строку */
    }

    .hero-subtitle {
      font-size: 18px;
      font-weight: 300;
      line-height: 1.6;
      color: rgba(245, 240, 232, 0.85);
      max-width: 480px;
    }

    /* ─── CARDS SECTION ──────────────────────────────────── */
    .hero-cards {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      padding: 60px 48px 80px;
      animation: fadeUp 0.9s 0.3s ease both;
    }

    .card-item {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      padding-right: 48px;
    }

    .card-item + .card-item {
      padding-right: 0;
      padding-left: 48px;
      border-left: 1px solid rgba(201, 168, 76, 0.2);
    }

    .card-badge {
      flex-shrink: 0;
      position: relative;
    }

    .badge-shape {
      background: var(--gold);
      color: var(--white);
      font-family: 'DIN Condensed C', 'Roboto Condensed', sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 10px 16px;
      text-align: center;
      clip-path: polygon(0 8px, 50% 0, 100% 8px, 100% calc(100% - 8px), 50% 100%, 0 calc(100% - 8px));
      min-width: 100px;
      line-height: 1.1;
    }

    .card-info {}

    .card-desc {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.65;
      color: rgba(245, 240, 232, 0.85);
      margin-bottom: 10px;
    }

    .card-tag {
      font-family: 'DIN Condensed C', 'Roboto Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* ─── ADDRESS SECTION ────────────────────────────────── */
    .address-section {
      position: relative;
      z-index: 2;
      padding: 48px 48px 64px; 
    }

    .address-text {
      font-size: 16px;
      font-weight: 400;
      color: rgba(245, 240, 232, 0.9);
      letter-spacing: 0.02em;
    }

    /* ─── MAP SECTION ────────────────────────────────────── */
    .map-section {
      padding: 0 48px;
      position: relative;
      z-index: 10;
      margin-bottom: -160px; 
    }

    .map-wrapper {
      border-radius: 16px;
      overflow: hidden;
      height: 320px;
      border: 1px solid rgba(201, 168, 76, 0.2);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* ─── FOOTER ORNAMENT ────────────────────────────────── */
    .footer-ornament {
      position: relative;
      z-index: 1;
      background-color: var(--dark);
      background-image: url('https://static.tildacdn.com/tild3163-6339-4361-a463-656639316230/Group_50.svg');
      background-repeat: repeat;
      background-size: 800px auto; 
      background-position: center top; 
      height: 200px; 
      width: 100%;
    }

    /* ─── MAIN FOOTER ────────────────────────────────────── */
    .main-footer {
      background-color: var(--dark);
      padding: 0 48px 48px; /* Отступ сверху 0, так как орнамент уже дает пространство */
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      border-top: 1px solid rgba(245, 240, 232, 0.05); /* Легкая полупрозрачная линия */
      padding-top: 48px;
    }

    .footer-legal {
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .legal-link {
      color: rgba(245, 240, 232, 0.4) !important;
      font-size: 13px;
      text-decoration: none !important;
      transition: color 0.3s;
    }

    .legal-link:hover {
      color: var(--gold) !important;
    }

    .footer-contacts {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 992px) {
      .hero-title { font-size: clamp(40px, 6vw, 64px); } /* Уменьшили для планшетов */
      .hero-content { padding-top: 150px; }
    }

    @media (max-width: 768px) {
      header {
        padding: 16px 20px;
      }
      .logo-icon {
        height: 28px;
      }
      
      .desktop-nav {
        display: none;
      }
      .burger-btn {
        display: flex;
      }

      .hero-content {
        padding: 130px 20px 0;
      }
      .hero-title {
        font-size: 46px; /* Уменьшили для мобильных */
        margin-bottom: 16px;
      }
      .hero-subtitle {
        font-size: 16px;
      }
      .hero-subtitle br {
        display: none;
      }

      .hero-cards {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px 60px;
      }
      .card-item {
        padding-right: 0;
        gap: 16px;
      }
      .card-item + .card-item {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(201,168,76,0.2);
        padding-top: 32px;
      }
      .badge-shape {
        min-width: 90px;
        padding: 8px 12px;
        font-size: 16px;
      }

      .address-section {
        padding: 40px 20px 56px;
      }
      .address-text {
        font-size: 15px;
        text-align: center;
      }

      .map-section {
        padding: 0 20px;
      }
      .map-wrapper {
        height: 280px;
      }
      .map-section {
        margin-bottom: -140px; 
      }
      
      .footer-ornament {
        height: 180px;
        background-size: 600px auto;
      }
      
      .main-footer {
        padding: 0 20px 48px;
      }
      .footer-container {
        flex-direction: column;
        gap: 32px;
        padding-top: 32px;
      }
      .footer-contacts {
        justify-content: center;
      }
    }
  </style>