:root {
        --bg-color: #fdfbfb;
        --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #fcedf0 100%);
        --text-main: #2c2a29;
        --text-muted: #5e5a58;
        --champagne-gold: #cba87c;
        --champagne-gold-light: rgba(203, 168, 124, 0.2);
        --card-bg: rgba(255, 255, 255, 0.88);
        --shadow-soft: 0 12px 28px rgba(222, 198, 201, 0.12);
        --shadow-gold-glow: 0 0 25px rgba(203, 168, 124, 0.35);
        --radius: 24px;
      }

      html {
        scroll-behavior: smooth;
        height: 100%;
      }

      body {
        margin: 0;
        padding: 0;
        font-family: 'Montserrat', sans-serif;
        background: var(--bg-gradient);
        color: var(--text-main);
        -webkit-font-smoothing: antialiased;
        min-height: 100%;
        line-height: 1.6;
        position: relative;
        overflow-x: hidden;
      }

      /* Subtle Bow Pattern Decor */
      .bow-decor {
        position: fixed;
        font-size: 1.32rem;
        color: rgba(203, 168, 124, 0.38);
        opacity: 0.18;
        z-index: -1;
        pointer-events: none;
        user-select: none;
        text-shadow: 0 0 20px rgba(203, 168, 124, 0.12);
      }
      .bow-1 {
        top: 9%;
        left: 4%;
        transform: rotate(-15deg);
      }
      .bow-2 {
        top: 26%;
        right: 7%;
        transform: rotate(18deg);
      }
      .bow-3 {
        top: 57%;
        left: 8%;
        transform: rotate(-8deg);
      }
      .bow-4 {
        top: 82%;
        right: 10%;
        transform: rotate(14deg);
      }
      .bow-5 {
        top: 44%;
        right: 18%;
        transform: rotate(-12deg);
        font-size: 1.05rem;
        opacity: 0.12;
      }
      .bow-6 {
        top: 72%;
        left: 18%;
        transform: rotate(10deg);
        font-size: 1.08rem;
        opacity: 0.12;
      }

      .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 22px 20px 34px;
      }

      .top-actions {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 24px;
      }

      .top-link-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        color: var(--text-main);
        font-size: 0.82rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border: 1px solid rgba(203, 168, 124, 0.34);
        background: rgba(255, 255, 255, 0.56);
        box-shadow: 0 8px 24px rgba(222, 198, 201, 0.16);
        transition: all 0.35s ease;
        backdrop-filter: blur(10px);
      }

      .top-link-btn:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-gold-glow);
        border-color: var(--champagne-gold);
        background: rgba(255, 255, 255, 0.82);
      }

      .hero {
        position: relative;
        padding: 56px 34px 34px;
        margin-bottom: 42px;
        border-radius: 32px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.46));
        border: 1px solid rgba(203, 168, 124, 0.18);
        box-shadow: 0 22px 46px rgba(222, 198, 201, 0.16);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        overflow: hidden;
      }

      .hero::before {
        content: '';
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: 130px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(203, 168, 124, 0.95), transparent);
        opacity: 0.95;
      }

      .hero::after {
        content: '';
        position: absolute;
        right: -40px;
        bottom: -70px;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(203, 168, 124, 0.14), transparent 68%);
        pointer-events: none;
      }

      /* Typography */
      h1,
      h2,
      h3 {
        font-family: 'Playfair Display', serif;
        font-weight: 400;
        margin-top: 0;
        text-align: center;
      }

      h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        color: var(--text-main);
        line-height: 1.2;
      }

      .subtitle {
        text-align: center;
        font-size: 1.12rem;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto 30px auto;
        font-weight: 300;
      }

      /* Dividers & Accents */
      .gold-divider {
        height: 1px;
        width: 80px;
        background: var(--champagne-gold);
        margin: 30px auto;
        opacity: 0.7;
      }

      .gold-underline {
        text-decoration: none;
        border-bottom: 1px solid var(--champagne-gold);
        padding-bottom: 2px;
      }

      .section-heading {
        text-align: center;
        margin-bottom: 28px;
      }

      .section-label {
        display: inline-block;
        margin-bottom: 10px;
        padding: 6px 14px;
        border: 1px solid rgba(203, 168, 124, 0.28);
        border-radius: 999px;
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--champagne-gold);
        background: rgba(255, 255, 255, 0.55);
      }

      .section-title {
        margin-bottom: 0;
        font-size: 2rem;
      }

      .section-subtitle {
        max-width: 640px;
        margin: 12px auto 0;
        text-align: center;
        color: var(--text-muted);
        font-size: 0.98rem;
      }

      /* Buttons */
      .btn {
        display: inline-block;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.48));
        color: var(--text-main);
        text-decoration: none;
        padding: 18px 45px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        border-radius: 50px;
        border: 1px solid rgba(203, 168, 124, 0.72);
        box-shadow:
          0 10px 28px rgba(222, 198, 201, 0.24),
          inset 0 1px 0 rgba(255, 255, 255, 0.72);
        transition:
          transform 0.35s ease,
          box-shadow 0.35s ease,
          border-color 0.35s ease,
          background 0.35s ease;
        font-weight: 500;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        position: relative;
      }

      .btn:hover {
        box-shadow:
          0 14px 32px rgba(222, 198, 201, 0.28),
          0 0 24px rgba(203, 168, 124, 0.26);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 241, 0.72));
        color: var(--text-main);
        transform: translateY(-3px) scale(1.01);
        border-color: rgba(203, 168, 124, 0.92);
      }

      .hero-cta {
        text-align: center;
        margin-bottom: 0;
      }

      /* Cards Layout */
      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 78px;
      }

      .card {
        background: rgba(255, 255, 255, 0.88);
        border-radius: var(--radius);
        padding: 45px 35px;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--champagne-gold-light);
        transition:
          transform 0.4s ease,
          box-shadow 0.4s ease,
          border-color 0.4s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        backdrop-filter: blur(10px);
      }

      .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
        opacity: 0.6;
      }

      .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 38px rgba(214, 194, 196, 0.42);
        border-color: rgba(203, 168, 124, 0.36);
      }

      .card h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: var(--text-main);
        font-weight: 600;
        line-height: 1.35;
        border-bottom: 1px solid var(--champagne-gold-light);
        padding-bottom: 20px;
      }

      .tariff-name,
      .tariff-price {
        display: block;
      }

      .tariff-price {
        margin-top: 8px;
        font-size: 1.02rem;
        color: var(--champagne-gold);
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 0.04em;
      }

      .card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
      }

      .card li {
        margin-bottom: 15px;
        font-size: 0.95rem;
        color: var(--text-muted);
        padding-left: 24px;
        position: relative;
        font-weight: 300;
        line-height: 1.5;
      }

      .card li::before {
        content: '❖';
        color: var(--champagne-gold);
        position: absolute;
        left: 0;
        font-size: 0.9rem;
        top: 2px;
      }

      /* About Section */
      .about-section {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 30px auto;
        padding: 50px 40px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: var(--radius);
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: var(--shadow-soft);
        position: relative;
      }

      .about-section::after {
        content: '⋈';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        color: var(--champagne-gold);
        background: var(--bg-color);
        padding: 0 15px;
        border-radius: 50%;
      }

      .about-section p {
        font-size: 1.1rem;
        color: var(--text-muted);
        font-family: 'Playfair Display', serif;
        line-height: 1.9;
        margin: 0;
      }

      .about-meta-wrap {
        margin: 0 auto 70px;
        max-width: 820px;
        text-align: center;
      }

      .about-meta-wrap .gold-divider {
        margin: 0 auto 16px;
        width: 110px;
      }

      .hero-meta {
        margin: 0 auto;
        max-width: 720px;
        text-align: center;
        font-size: 0.78rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--champagne-gold);
        line-height: 1.8;
      }

      /* Gallery */
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 80px;
      }

      .gallery-item {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--champagne-gold-light);
        aspect-ratio: 3/4;
        position: relative;
      }

      .gallery-item::after {
        content: '';
        position: absolute;
        inset: 10px;
        border: 1px solid rgba(203, 168, 124, 0.4);
        border-radius: calc(var(--radius) - 8px);
        pointer-events: none;
      }

      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
      }

      .gallery-item:hover img {
        transform: scale(1.05);
      }

      /* Final Footer Block */
      .bottom-wrapper {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.4));
        border-radius: var(--radius);
        padding: 52px 20px 34px;
        text-align: center;
        border: 1px solid rgba(203, 168, 124, 0.18);
        box-shadow: 0 16px 42px rgba(222, 198, 201, 0.18);
        margin-top: 28px;
        position: relative;
        backdrop-filter: blur(10px);
      }

      .cta-container {
        margin-bottom: 40px;
      }

      .site-footer {
        margin-top: 40px;
        padding: 20px 8px 4px;
        border-top: 1px solid rgba(94, 90, 88, 0.08);
      }

      .footer-inner {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
      }

      .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 16px;
        margin-bottom: 12px;
      }

      .footer-links a {
        color: #8f8a87;
        text-decoration: none;
        font-size: 0.76rem;
        letter-spacing: 0.04em;
        transition: color 0.25s ease;
      }

      .footer-links a:hover {
        color: var(--champagne-gold);
      }

      .footer-notes {
        display: grid;
        gap: 8px;
      }

      .footer-note {
        margin: 0;
        color: #9a9491;
        font-size: 0.7rem;
        line-height: 1.6;
      }

      /* Mobile Adjustments */
      @media (max-width: 768px) {
        .container {
          padding: 16px 14px 24px;
        }
        .top-actions {
          gap: 8px;
          margin-bottom: 18px;
        }
        .top-link-btn {
          font-size: 0.71rem;
          padding: 8px 12px;
        }
        .hero {
          padding: 40px 18px 24px;
          margin-bottom: 28px;
          border-radius: 26px;
        }
        h1 {
          font-size: 2rem;
          margin-bottom: 16px;
        }
        .gold-divider {
          margin: 22px auto;
        }
        .section-title {
          font-size: 1.7rem;
        }
        .hero-meta {
          font-size: 0.66rem;
          letter-spacing: 0.12em;
        }
        .subtitle,
        .section-subtitle,
        .about-section p,
        .card li {
          font-size: 0.95rem;
        }
        .subtitle {
          margin-bottom: 22px;
        }
        .pricing-grid,
        .gallery-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
        .pricing-grid {
          margin-bottom: 56px;
        }
        .gallery-grid {
          margin-bottom: 56px;
        }
        .card {
          padding: 30px 20px;
        }
        .card h3 {
          font-size: 1.28rem;
          margin-bottom: 20px;
          padding-bottom: 16px;
        }
        .tariff-price {
          font-size: 0.94rem;
          margin-top: 6px;
        }
        .about-section {
          padding: 30px 18px;
          margin-bottom: 22px;
        }
        .btn {
          width: 100%;
          box-sizing: border-box;
          padding: 17px 18px;
        }
        .bottom-wrapper {
          padding: 34px 16px 24px;
          margin-top: 16px;
        }
        .cta-container {
          margin-bottom: 24px;
        }
        .site-footer {
          margin-top: 28px;
          padding: 10px 4px 4px;
        }
        .footer-links {
          margin-bottom: 10px;
        }
        .footer-links a {
          font-size: 0.72rem;
        }
        .footer-note {
          font-size: 0.68rem;
        }
        .about-meta-wrap {
          margin: 0 auto 46px;
        }
      }
