   :root {
    --bg-deep: #1a1a2e;
    --bg-card: #16213e;
    --bg-subtle: #1f2b47;
    --gold: #ffffff;
    --gold-light: #e0c994;
    --gold-dim: rgba(201, 169, 110, 0.15);
    --text-primary: #eee8dc;
    --text-secondary: #d2d2d2;
    --text-muted: #6b6d82;
    --white: #fff;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Outfit', sans-serif;
  }
 /* ─── Footer ─── */
  footer {
    position: relative;
    background: var(--bg-deep);
    overflow: hidden;
  }

  /* Decorative top accent */
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  }

  /* Subtle background texture */
  .footer-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
                       radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  /* ─── CTA / Newsletter strip ─── */
  .footer-cta {
    position: relative;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  }

  .footer-cta .cta-text {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--text-primary);
  }

  .footer-cta .cta-text em {
    color: var(--gold);
    font-style: italic;
  }

  .cta-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .cta-form:focus-within {
    border-color: var(--gold);
  }

  .cta-form input {
    background: rgba(255,255,255,0.04);
    border: none;
    padding: 0.85rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 0.85rem;
    width: 260px;
    outline: none;
    letter-spacing: 0.03em;
  }

  .cta-form input::placeholder {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .cta-form button {
    background: var(--gold);
    color: var(--bg-deep);
    border: none;
    padding: 0.85rem 1.6rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, letter-spacing 0.3s;
  }

  .cta-form button:hover {
    background: var(--gold-light);
    letter-spacing: 0.16em;
  }

  /* ─── Main footer grid ─── */
  .footer-main {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    padding: 4rem 5% 3rem;
    max-width: 1300px;
    margin: 0 auto;
  }

  /* ─── Brand column ─── */
  .footer-brand {}

  .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
  }

  .logo-mark {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-mark svg {
    width: 100%;
    height: 100%;
  }

  .brand-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.1;
  }

  .brand-name span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 400;
    margin-top: 2px;
  }

  .brand-tagline {
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 280px;
  }

  .social-links {
    display: flex;
    gap: 0.6rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
  }

  .social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-3px);
  }

  .social-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  /* ─── Links columns ─── */
  .footer-col {}

  .footer-col-title {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 500;

    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.6rem;
    position: relative;
    padding-bottom: 0.8rem;
  }

  .footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color 0.3s, gap 0.3s;
    position: relative;
  }

  .footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }

  .footer-links a:hover {
    color: var(--text-primary);
    gap: 0.5rem;
  }

  .footer-links a:hover::before {
    width: 12px;
  }

  /* ─── Contact column ─── */
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .contact-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(74, 74, 74);
    border-radius: 50%;
    color: var(--gold);
    margin-top: 2px;
  }

  .contact-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .contact-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .contact-text a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
  }

  .contact-text a:hover {
    color: var(--gold-light);
  }

  .contact-label {
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
  }

  /* ─── Bottom bar ─── */
  .footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.6rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1300px;
    margin: 0 auto;
  }

  .footer-bottom p, .footer-bottom a {
    font-size: 16px;
    color: rgb(192, 192, 192);
    text-align: center;
  }
  .footer-bottom a:hover{text-decoration: none;color: white;}

  .footer-bottom-links {
    display: flex;
    gap: 1.8rem;
  }

  .footer-bottom-links a {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.3s;
  }

  .footer-bottom-links a:hover {
    color: var(--gold);
  }

  /* ─── Decorative lotus watermark ─── */
  .footer-watermark {
    position: absolute;
    right: 5%;
    bottom: 4rem;
    width: 200px;
    height: 200px;
    opacity: 0.025;
    pointer-events: none;
  }

  .footer-watermark svg {
    width: 100%;
    height: 100%;
    fill: var(--gold);
  }
  .ft-logo{width: 100px;height: 100px;}
  .ft-mail{margin-top: 6px;}
   /* ─── Responsive ─── */
  @media (max-width: 900px) {
    .footer-main {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem 2rem;
      padding: 3rem 6% 2.5rem;
    }
    .footer-cta .cta-text {
      font-size: 1.3rem;
      text-align: center;
    }
    .cta-form input { width: 200px; }
      .footer-bottom {padding-bottom: 60px;}
  }

  @media (max-width: 560px) {
    .footer-main {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2.5rem 7% 2rem;
    }
    .footer-cta {
      flex-direction: column;
      text-align: center;
    }
    .cta-form { width: 100%; }
    .cta-form input { flex: 1; width: auto; }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }

  /* ─── Entrance animations ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .footer-cta,
  .footer-brand,
  .footer-col,
  .footer-bottom {
    animation: fadeUp 0.7s ease both;
  }
  .footer-cta { animation-delay: 0.05s; }
  .footer-brand { animation-delay: 0.15s; }
  .footer-col:nth-child(2) { animation-delay: 0.25s; }
  .footer-col:nth-child(3) { animation-delay: 0.3s; }
  .footer-col:nth-child(4) { animation-delay: 0.35s; }
  .footer-bottom { animation-delay: 0.4s; }