/* ============================================================
   footer.css — Footer styles
   Shared across all pages
   Ocean Club Global
   ============================================================ */

/* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    padding: 5rem 4rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .footer-brand .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-mid);
    text-decoration: none;
    display: block;
    margin-bottom: 1.2rem;
  }

  .footer-brand p {
    font-size: 1.0rem;
    font-weight: 200;
    line-height: 1.9;
    color: rgba(250,247,240,0.3);
    max-width: 240px;
  }

  .footer-col h4 {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 1.5rem;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.75rem; }

  .footer-col ul li a {
    font-size: 0.8rem;
    font-weight: 200;
    color: rgba(250,247,240,0.35);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover { color: var(--gold-mid); }

  .footer-bottom {
    background: var(--text-dark);
    border-top: 0.5px solid rgba(184,146,42,0.1);
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 0.65rem;
    font-weight: 200;
    color: rgba(250,247,240,0.18);
    letter-spacing: 0.1em;
  }

  .social-links { display: flex; gap: 1.5rem; }

  .social-links a {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,247,240,0.2);
    text-decoration: none;
    transition: color 0.3s;
  }

  .social-links a:hover { color: var(--gold-mid); }

  
