    :root {
      --color-background: #E8E1D8;
      --color-section: #F6F4F1;
      --color-title: #5B4636;
      --color-detail: #A58C78;
      --color-accent: #C2A46D;
    }

    body {
      font-family: 'Lora', serif;
      background-color: var(--color-background);
      color: var(--color-title);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      color: var(--color-title);
    }

    .glass-effect {
      background: rgba(246, 244, 241, 0.6);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(194, 164, 109, 0.2);
    }

    .parallax-hero {
      will-change: transform;
    }

    .toast {
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 9999;
      padding: 0.9rem 1rem;
      border-radius: 0.75rem;
      color: white;
      font-size: 0.95rem;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
    }

    .toast.success {
      background: #15803d;
    }

    .toast.error {
      background: #b91c1c;
    }

    .faq-item {
      border-bottom: 1px solid rgba(78, 54, 41, 0.1);
    }

    .faq-trigger {
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .faq-trigger:hover {
      color: var(--color-accent);
    }

    .faq-content {
      height: 0;
      overflow: hidden;
      opacity: 0;
    }

    .faq-icon {
      transition: transform 0.35s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-item.active .faq-trigger {
      color: var(--color-accent);
      font-weight: 600;
    }

    .hero-cta-wrap {
      position: relative;
      z-index: 20;
    }

    .hero-cta-btn {
      opacity: 1 !important;
      visibility: visible !important;
    }

    .gallery-thumb {
      background: #f8f4ef;
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .gallery-thumb:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(75, 58, 43, 0.24);
    }

    .lightbox-overlay {
      animation: fadeIn 0.2s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
