  :root {
      --primary: #c6a43f;
      --primary-light: #e5c87b;
      --primary-dark: #9e832c;
      --accent: #1e3a5f;
      --accent-light: #2b4b78;
      --accent-dark: #0f2940;
      --light: #faf9f7;
      --gray: #5a6470;
      --dark: #1e262f;
      --gold: #d4af37;
      --gold-light: #f5e7c8;
      --gold-dark: #b8960c;
      --cream: #f8f5f0;
      --shadow-sm: 0 5px 20px rgba(0,0,0,0.03);
      --shadow-md: 0 10px 40px rgba(0,0,0,0.05);
      --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
      --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
      --border-light: 1px solid rgba(255,255,255,0.1);
      --header-height: 80px;
      --nav-height: 70px;
    }

    * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    }
    
    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-height) + 20px);
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--dark);
      background: var(--cream);
      line-height: 1.8;
      font-weight: 300;
      overflow-x: hidden;
      width: 100%;
      padding-top: var(--nav-height);
    }
    
    h1, h2, h3, h4 {
      font-family: 'Playfair Display', 'Cormorant Garamond', serif;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    
    .container { 
      max-width: 1400px; 
      margin: 0 auto; 
      padding: 0 40px; 
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 30%, rgba(214, 184, 114, 0.05) 0%, transparent 30%),
                  radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.05) 0%, transparent 30%);
      pointer-events: none;
      z-index: -1;
    }

    .gold-line {
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
      margin: 20px 0 30px;
    }
    
    .gold-line.center {
      margin: 20px auto 30px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--nav-height);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      z-index: 999;
      border-bottom: 2px solid var(--gold);
      transition: all 0.3s ease;
    }
    
    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
      white-space: nowrap;
    }
    
    .nav-logo span {
      color: var(--gold);
    }
    
    .menu-toggle {
      display: none;
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-gold);
      border: 2px solid rgba(255,255,255,0.3);
    }
    
    .menu-toggle i {
      color: var(--accent-dark);
      font-size: 1.3rem;
      transition: transform 0.3s ease;
    }
    
    .menu-toggle:hover {
      transform: scale(1.1) rotate(90deg);
      box-shadow: 0 10px 25px rgba(212,175,55,0.5);
    }
    
    .menu-toggle:hover i {
      transform: scale(1.1);
    }
    
    .menu-toggle.active {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    }
    
    .menu-toggle.active i {
      color: var(--gold);
    }
    
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
    }
    
    .nav-item {
      position: relative;
    }
    
    .nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--accent);
      text-decoration: none;
      padding: 8px 0;
      transition: all 0.3s ease;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }
    
    .nav-link i {
      color: var(--gold);
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }
    
    .nav-link:hover {
      color: var(--gold);
    }
    
    .nav-link:hover i {
      transform: translateY(-2px);
    }
    
    .nav-link.active {
      color: var(--gold);
      font-weight: 600;
    }
    
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--gold);
    }
    
    .nav-overlay {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0;
      width: 100%;
      height: calc(100vh - var(--nav-height));
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(3px);
      z-index: 997;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
      display: block;
      opacity: 1;
    }
    
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-dark);
      font-size: 1.2rem;
      cursor: pointer;
      box-shadow: var(--shadow-gold);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 998;
      border: none;
      text-decoration: none;
    }
    
    .scroll-top.show {
      opacity: 1;
      visibility: visible;
    }
    
    .scroll-top:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 15px 30px rgba(212,175,55,0.4);
    }
    
    .progress-bar {
      position: fixed;
      top: var(--nav-height);
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      z-index: 999;
      transition: width 0.1s ease;
    }

    header {
      position: relative;
      background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
      color: white;
      padding: 80px 0 100px;
      text-align: center;
      overflow: hidden;
      margin-top: 0;
    }
    
    header::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 140%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      transform: rotate(15deg);
    }
    
    header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    }
    
    .particle {
      position: absolute;
      width: 6px;
      height: 6px;
      background: rgba(212, 175, 55, 0.3);
      border-radius: 50%;
      pointer-events: none;
    }
    
    .particle:nth-child(1) { top: 20%; left: 10%; animation: float 20s infinite; }
    .particle:nth-child(2) { top: 60%; right: 15%; animation: float 25s infinite; }
    .particle:nth-child(3) { bottom: 30%; left: 20%; animation: float 22s infinite; }
    .particle:nth-child(4) { top: 40%; right: 25%; animation: float 28s infinite; }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
      25% { transform: translateY(-20px) translateX(10px); opacity: 0.6; }
      50% { transform: translateY(0) translateX(20px); opacity: 0.3; }
      75% { transform: translateY(20px) translateX(10px); opacity: 0.6; }
    }
    
    .logo-container {
      position: relative;
      display: inline-block;
      margin-bottom: 25px;
    }
    
    .logo {
      max-width: 220px;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
      position: relative;
      z-index: 2;
      transition: transform 0.6s ease;
    }
    
    .logo:hover {
      transform: scale(1.05) rotate(2deg);
    }
    
    .logo-container::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 1;
      animation: pulse 3s infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
    }
    
    header h1 { 
      font-size: clamp(2.5rem, 8vw, 5.5rem);
      margin-bottom: 10px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.2);
      letter-spacing: 1px;
      animation: fadeInUp 1s ease;
      padding: 0 15px;
    }
    
    .slogan { 
      font-size: clamp(1rem, 4vw, 1.4rem);
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
      font-weight: 300;
      letter-spacing: 0.5px;
      animation: fadeInUp 1.2s ease;
      padding: 0 20px;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section { 
      padding: 80px 0;
      position: relative;
      scroll-margin-top: calc(var(--nav-height) + 20px);
    }
    
    .section-title {
      text-align: center;
      font-size: clamp(2.2rem, 6vw, 4.2rem);
      margin-bottom: 0.5rem;
      color: var(--accent);
      font-weight: 600;
      position: relative;
      display: inline-block;
      width: 100%;
      padding: 0 15px;
    }
    
    .section-title::before {
      content: '✦';
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      color: var(--gold);
      font-size: 1.5rem;
      opacity: 0.5;
    }
    
    .section-subtitle {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 40px;
      color: var(--gray);
      font-size: clamp(1rem, 3vw, 1.2rem);
      font-weight: 300;
      font-style: italic;
      padding: 0 20px;
    }

    .about { 
      background: white;
      position: relative;
      border-bottom: 1px solid rgba(212,175,55,0.1);
    }
    
    .about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(212,175,55,0.03) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    
    .about-text h2 { 
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--accent);
      margin-bottom: 20px;
      line-height: 1.2;
      position: relative;
    }
    
    .about-text h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }
    
    .about-text p {
      color: var(--gray);
      margin-bottom: 20px;
      font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
    
    .about-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      transition: transform 0.8s ease;
    }
    
    .about-image:hover img {
      transform: scale(1.05);
    }
    
    .about-image::after {
      content: '';
      position: absolute;
      top: 15px;
      left: 15px;
      width: 100%;
      height: 100%;
      border: 3px solid var(--gold);
      border-radius: 20px;
      z-index: -1;
      opacity: 0.3;
      transition: all 0.4s ease;
    }
    
    .about-image:hover::after {
      top: 10px;
      left: 10px;
      opacity: 0.5;
    }

    .mission {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .mission::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 70%;
      height: 200%;
      background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
      border-radius: 50%;
      animation: rotate 30s infinite linear;
    }
    
    .mission::after {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -10%;
      width: 70%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
      border-radius: 50%;
      animation: rotate 40s infinite linear reverse;
    }
    
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    
    .mission .section-title {
      color: var(--gold-light);
    }
    
    .mission .gold-line.center {
      background: linear-gradient(90deg, transparent, var(--gold-light), white, var(--gold-light), transparent);
    }
    
    .mission-text {
      font-size: clamp(1.4rem, 4vw, 2.2rem);
      max-width: 900px;
      margin: 0 auto;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      line-height: 1.5;
      position: relative;
      z-index: 2;
      text-shadow: 0 2px 20px rgba(0,0,0,0.2);
      padding: 0 20px;
    }

    .entertainment {
      background: white;
      position: relative;
      border-bottom: 1px solid rgba(212,175,55,0.1);
    }
    
    .entertainment::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(212,175,55,0.02) 0%, transparent 50%);
      pointer-events: none;
    }
    
    .entertainment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .entertainment-card {
      background: linear-gradient(145deg, #ffffff, var(--cream));
      border-radius: 25px;
      padding: 40px 25px 30px;
      text-align: center;
      box-shadow: var(--shadow-md);
      transition: all 0.5s ease;
      border: 1px solid rgba(212,175,55,0.1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .entertainment-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .entertainment-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: var(--shadow-lg), var(--shadow-gold);
      border-color: var(--gold);
    }
    
    .entertainment-card:hover::before {
      opacity: 1;
    }
    
    .entertainment-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--gold-light), white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      border: 2px solid var(--gold);
      box-shadow: var(--shadow-gold);
      transition: all 0.5s ease;
    }
    
    .entertainment-card:hover .entertainment-icon {
      transform: rotateY(180deg) scale(1.1);
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    }
    
    .entertainment-icon i {
      font-size: 2.5rem;
      color: var(--accent);
      transition: all 0.5s ease;
    }
    
    .entertainment-card:hover .entertainment-icon i {
      color: white;
      transform: rotateY(180deg);
    }
    
    .entertainment-card h3 {
      font-size: 1.6rem;
      color: var(--accent);
      margin: 10px 0 5px;
      font-family: 'Playfair Display', serif;
      position: relative;
      z-index: 2;
    }
    
    .entertainment-card p {
      color: var(--gray);
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      z-index: 2;
      position: relative;
    }
    
    .entertainment-note {
      text-align: center;
      max-width: 800px;
      margin: 50px auto 0;
      padding: 25px 30px;
      background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(30,58,95,0.05));
      border-radius: 50px;
      border: 1px solid var(--gold-light);
      color: var(--accent);
      font-size: 1.1rem;
      font-weight: 400;
      backdrop-filter: blur(5px);
      box-shadow: var(--shadow-gold);
    }
    
    .entertainment-note i {
      color: var(--gold);
      margin-right: 10px;
      font-size: 1.3rem;
    }

    .gratitude { 
      background: linear-gradient(135deg, #ffffff, var(--cream));
    }
    
    .gratitude-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }
    
    .latter-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
      border: 1px solid rgba(212,175,55,0.1);
      position: relative;
    }
    
    .latter-card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: var(--shadow-lg), var(--shadow-gold);
      border-color: var(--gold);
    }
    
    .latter-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      transform: translateX(-100%);
      transition: transform 0.6s ease;
    }
    
    .latter-card:hover::before {
      transform: translateX(0);
    }
    
    .latter-card::after {
      content: '✧';
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 1.8rem;
      color: var(--gold);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 2;
    }
    
    .latter-card:hover::after {
      opacity: 0.5;
    }
    
    .latter-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      transition: transform 0.8s ease;
      filter: sepia(10%) brightness(1.02);
    }
    
    .latter-card:hover .latter-image {
      transform: scale(1.1);
    }
    
    .latter-caption {
      padding: 20px;
      text-align: center;
      font-weight: 500;
      color: var(--accent);
      background: white;
      font-size: 0.95rem;
      border-top: 1px solid rgba(212,175,55,0.2);
      position: relative;
      z-index: 2;
      transition: all 0.4s ease;
    }
    
    .latter-card:hover .latter-caption {
      background: linear-gradient(135deg, white, var(--gold-light));
      color: var(--accent-dark);
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }
    
    .contact-card {
      background: white;
      border-radius: 25px;
      padding: 40px 20px;
      text-align: center;
      box-shadow: var(--shadow-md);
      transition: all 0.5s ease;
      border: 1px solid rgba(212,175,55,0.1);
      position: relative;
      overflow: hidden;
    }
    
    .contact-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.1) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .contact-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg), var(--shadow-gold);
      border-color: var(--gold);
    }
    
    .contact-card:hover::before {
      opacity: 1;
    }
    
    .contact-icon {
      font-size: 3rem;
      color: var(--gold);
      margin-bottom: 20px;
      transition: transform 0.5s ease;
    }
    
    .contact-card:hover .contact-icon {
      transform: scale(1.1) rotate(5deg);
    }
    
    .contact-name {
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 10px;
      font-family: 'Playfair Display', serif;
    }
    
    .phone {
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--dark);
      margin: 15px 0;
      letter-spacing: 1px;
      font-family: 'Montserrat', sans-serif;
      word-break: break-word;
    }

    .btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--accent-dark);
      padding: 14px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.4s ease;
      box-shadow: var(--shadow-gold);
      border: none;
      letter-spacing: 1px;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      white-space: nowrap;
    }
    
    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.6s ease;
    }
    
    .btn:hover::before {
      left: 100%;
    }
    
    .btn:hover {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 20px 40px rgba(212,175,55,0.4);
    }
    
    .btn:active {
      transform: translateY(-2px);
    }
    
    .btn-outline {
      background: transparent;
      border: 2px solid var(--gold);
      color: var(--gold);
      box-shadow: none;
      padding: 12px 30px;
    }
    
    .btn-outline:hover {
      background: var(--gold);
      color: var(--accent-dark);
    }
    
    .btn-center { 
      text-align: center; 
      margin-top: 50px; 
    }

    footer {
      background: linear-gradient(135deg, var(--accent-dark) 0%, var(--dark) 100%);
      color: rgba(255,255,255,0.7);
      text-align: center;
      padding: 70px 0 40px;
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    }
    
    footer::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
      border-radius: 50%;
      animation: float 15s infinite;
    }
    
    footer h2 {
      color: white;
      font-size: clamp(2rem, 6vw, 3.5rem);
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
      font-family: 'Playfair Display', serif;
      padding: 0 20px;
    }
    
    footer h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    
    .requisites {
      background: rgba(255,255,255,0.05);
      padding: 30px 20px;
      border-radius: 20px;
      display: inline-block;
      margin: 40px 0;
      border: 1px solid rgba(212,175,55,0.2);
      backdrop-filter: blur(10px);
      max-width: 90%;
      line-height: 1.8;
      font-size: clamp(0.9rem, 3vw, 1.1rem);
      box-shadow: var(--shadow-gold);
      word-break: break-word;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.98);
      backdrop-filter: blur(15px);
      z-index: 1000;
      text-align: center;
      padding: 20px;
      animation: modalFadeIn 0.3s ease;
      overflow: hidden;
    }
    
    @keyframes modalFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .modal-content-wrapper {
      width: 100%;
      height: calc(100% - 80px);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      margin-top: 40px;
    }
    
    .modal-content {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 15px;
      box-shadow: 0 0 40px rgba(212,175,55,0.3);
      transition: transform 0.1s ease;
      cursor: zoom-in;
      transform-origin: center center;
      will-change: transform;
      user-select: none;
      -webkit-user-select: none;
      -webkit-touch-callout: none;
    }
    
    .modal-content.zoomed {
      cursor: grab;
    }
    
    .modal-content.zoomed:active {
      cursor: grabbing;
    }
    
    .modal .close {
      position: absolute;
      top: 15px;
      right: 25px;
      color: var(--gold);
      font-size: 50px;
      cursor: pointer;
      transition: transform 0.3s ease;
      text-shadow: 0 0 20px rgba(212,175,55,0.5);
      z-index: 1001;
      font-weight: 300;
      line-height: 1;
    }
    
    .modal .close:hover {
      transform: rotate(90deg) scale(1.1);
      color: white;
    }
    
    .zoom-controls {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(10px);
      padding: 12px 20px;
      border-radius: 50px;
      border: 1px solid var(--gold);
      box-shadow: var(--shadow-gold);
      z-index: 1002;
      align-items: center;
    }
    
    .zoom-btn {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      border: none;
      color: var(--accent-dark);
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(212,175,55,0.3);
    }
    
    .zoom-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 25px rgba(212,175,55,0.5);
    }
    
    .zoom-btn.reset {
      width: auto;
      padding: 0 20px;
      border-radius: 30px;
      gap: 5px;
      font-size: 1rem;
    }
    
    .zoom-level {
      color: white;
      font-size: 0.9rem;
      min-width: 60px;
      text-align: center;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    @media (max-width: 1024px) {
      .container { padding: 0 30px; }
      .about-grid { gap: 40px; }
      .section { padding: 70px 0; }
    }
    
    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }
      
      .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - var(--nav-height));
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 15px;
        transition: left 0.3s ease;
        z-index: 998;
        overflow-y: auto;
        box-shadow: 5px 0 30px rgba(0,0,0,0.1);
        border-right: 2px solid var(--gold);
      }
      
      .nav-menu.active {
        left: 0;
      }
      
      .nav-item {
        width: 100%;
        text-align: left;
      }
      
      .nav-link {
        font-size: 1.1rem;
        padding: 15px 20px;
        justify-content: flex-start;
        width: 100%;
        border-radius: 10px;
        background: rgba(212,175,55,0.05);
        transition: all 0.3s ease;
      }
      
      .nav-link:hover {
        background: rgba(212,175,55,0.15);
        transform: translateX(5px);
      }
      
      .nav-link.active {
        background: linear-gradient(135deg, var(--gold-light), rgba(212,175,55,0.2));
        border-left: 4px solid var(--gold);
      }
      
      .nav-link.active::after {
        display: none;
      }
      
      .nav-link i {
        width: 25px;
        font-size: 1.2rem;
      }
      
      header { 
        padding: 70px 0 90px; 
      }
      
      .logo { max-width: 180px; }
      
      .section { 
        padding: 60px 0; 
      }
      
      .about-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
      }
      
      .about-text h2::after {
        left: 0;
        transform: none;
      }
      
      .about-image {
        max-width: 100%;
        margin: 0 auto;
      }
      
      .gratitude-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }
      
      .latter-image {
        height: 250px;
      }
      
      .contacts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        white-space: normal;
      }
      
      .modal .close {
        font-size: 45px;
        top: 10px;
        right: 20px;
      }
      
      .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
      }
      
      .zoom-controls {
        bottom: 20px;
        padding: 10px 15px;
        gap: 10px;
      }
      
      .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
      
      .zoom-btn.reset {
        padding: 0 15px;
        font-size: 0.9rem;
      }
      
      .zoom-level {
        font-size: 0.8rem;
        min-width: 50px;
      }
      
      .entertainment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .entertainment-card {
        padding: 30px 20px;
      }
      
      .entertainment-card h3 {
        font-size: 1.4rem;
      }
      
      .entertainment-note {
        padding: 20px;
        font-size: 1rem;
        margin-top: 40px;
      }
    }
    
    @media (max-width: 480px) {
      .container { padding: 0 15px; }
      
      .nav-logo {
        font-size: 1.1rem;
      }
      
      .menu-toggle {
        width: 40px;
        height: 40px;
      }
      
      .menu-toggle i {
        font-size: 1.1rem;
      }
      
      header { 
        padding: 50px 0 70px; 
      }
      
      .logo { max-width: 150px; }
      
      .header h1 { 
        font-size: 2rem; 
      }
      
      .slogan { 
        font-size: 0.95rem; 
        padding: 0 15px;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .section-title::before {
        font-size: 1.2rem;
        top: -15px;
      }
      
      .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
      }
      
      .about-text h2 {
        font-size: 1.8rem;
      }
      
      .mission-text {
        font-size: 1.2rem;
      }
      
      .gratitude-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .latter-image {
        height: 220px;
      }
      
      .latter-caption {
        font-size: 0.9rem;
        padding: 15px;
      }
      
      .contact-card {
        padding: 30px 15px;
      }
      
      .contact-name {
        font-size: 1.4rem;
      }
      
      .phone {
        font-size: 1.1rem;
      }
      
      .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
      }
      
      .btn-outline {
        padding: 8px 20px;
      }
      
      .requisites {
        padding: 20px 15px;
        font-size: 0.85rem;
      }
      
      footer h2 {
        font-size: 1.8rem;
      }
      
      .modal-content-wrapper {
        height: calc(100% - 100px);
        margin-top: 50px;
      }
      
      .modal .close {
        font-size: 40px;
        top: 10px;
        right: 15px;
      }
      
      .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
      }
      
      .nav-menu {
        width: 90%;
        max-width: 280px;
      }
      
      .nav-link {
        font-size: 1rem;
        padding: 12px 15px;
      }
      
      .zoom-controls {
        bottom: 15px;
        padding: 8px 12px;
        gap: 8px;
      }
      
      .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
      }
      
      .zoom-btn.reset {
        padding: 0 12px;
        font-size: 0.8rem;
      }
      
      .zoom-level {
        font-size: 0.75rem;
        min-width: 40px;
      }
    }
    
    @media (max-width: 360px) {
      .header h1 { font-size: 1.8rem; }
      .logo { max-width: 130px; }
      .latter-image { height: 200px; }
      .btn { padding: 8px 20px; }
    }
    
    @media (max-height: 500px) and (orientation: landscape) {
      header { padding: 40px 0 50px; }
      .logo { max-width: 120px; }
      .section { padding: 40px 0; }
      
      .nav-menu {
        padding: 20px;
      }
      
      .nav-link {
        padding: 10px;
        font-size: 1rem;
      }
      
      .modal-content-wrapper {
        height: calc(100% - 70px);
        margin-top: 35px;
      }
      
      .zoom-controls {
        bottom: 10px;
        padding: 5px 10px;
      }
      
      .zoom-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
      }
    }