  /* Footer section */
  /* ===== LUXURY FOOTER ===== */
  .luxury-footer {
    background: #2a2a2a;
    color: #e8e2d6;
    padding: 5rem 2rem 2rem;
    position: relative;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #f8f5f0;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .footer-heading::after {
    content: "";
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 50px;
    height: 1px;
    background: #d4af37;
  }
  
  /* Contact Column */
  .contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
  }
  
  .footer-icon {
    width: 20px;
    height: 20px;
    fill: #d4af37;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .contact-item a,
  .contact-item p {
    font-family: 'Cormorant Garamond', serif;
    color: #e8e2d6;
    line-height: 1.6;
    transition: color 0.3s;
  }
  
  .contact-item a:hover {
    color: #d4af37;
  }
  
  .map-link {
    background: transparent;
    border: none;
    color: #d4af37;
    font-family: 'Cormorant Garamond', serif;
    padding: 0;
    margin-top: 0.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }
  
  .map-link:hover {
    text-decoration: underline;
  }
  
  /* Newsletter Column */
  .newsletter-desc {
    font-family: 'Cormorant Garamond', serif;
    color: #b3a089;
    margin-bottom: 2rem;
    line-height: 1.7;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .input-group {
    position: relative;
  }
  
  .input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #4a4a4a;
    padding: 0.8rem 0;
    color: #f8f5f0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
  }
  
  .input-group input:focus {
    outline: none;
  }
  
  .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4af37;
    transition: width 0.4s;
  }
  
  .input-group input:focus ~ .underline {
    width: 100%;
  }
  
  .newsletter-button {
    align-self: flex-start;
    background: #d4af37;
    color: #2a2a2a;
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .newsletter-button:hover {
    background: #e8c05a;
  }
  
  .newsletter-button svg {
    stroke: #2a2a2a;
    transition: transform 0.3s;
  }
  
  .newsletter-button:hover svg {
    transform: translateX(3px);
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .social-links a {
    color: #e8e2d6;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #d4af37;
  }
  
  .social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  
  /* Map Modal */
  .map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal-content {
    position: relative;
    background: #2a2a2a;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
  }
  
  .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #d4af37;
    font-size: 2rem;
    cursor: pointer;
  }
  
  iframe {
    width: 100%;
    height: 60vh;
  }
  
  /* Copyright */
  .copyright {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
  }
  
  .copyright p {
    font-family: 'Cormorant Garamond', serif;
    color: #7a6a5f;
  }
  
  .heart {
    color: #d4af37;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    .newsletter-form {
      max-width: 100%;
    }
  }