/* ================= CLASSY LUXURY FOOTER ===cbd5e1=======1e293b======= */
.luxury-footer-canvas {
background: #1e293b;
color: #cbd5e1;
padding: 80px 6% 40px;
position: relative;
overflow: hidden;
border-top: 3px solid #d4af37;
}

.luxury-footer-canvas::before {
content: '';
position: absolute;
top: -10%; left: 5%;
width: 550px; height: 550px;
background: radial-gradient(circle, rgba(253, 248, 231, 0.05) 0%, rgba(0,0,0,0) 70%);
pointer-events: none;
}

.footer-structural-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
gap: 40px;
margin-bottom: 50px;
position: relative;
z-index: 2;
}

.footer-column-box {
text-align: left;
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer-logo-box-ambient {
background: #ffffff;
padding: 16px 28px;
border-radius: 6px;
display: inline-block;
box-shadow: 0 15px 35px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255,255,255,0.15);
margin-bottom: 15px;
transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.footer-logo-box-ambient:hover {
transform: translateY(-4px);
box-shadow: 0 20px 45px rgba(212, 175, 55, 0.18), 0 0 0 1px rgba(212,175,55,0.3);
}

.footer-logo-box-ambient img {
height: 85px;
width: 100%;
max-width: 280px;
object-fit: contain;
display: block;
}

.footer-brand-contact-info {
display: flex;
flex-direction: column;
gap: 8px;
margin-top: 5px;
}

.footer-brand-contact-info a {
color: #cbd5e1;
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
display: flex;
align-items: center;
gap: 8px;
}

.footer-brand-contact-info a:hover {
color: #d4af37;
}

.footer-column-box h3 {
font-family: 'Cinzel', serif;
font-size: 18px;
color: #fcfaf2; 
margin-bottom: 20px;
letter-spacing: 1px;
position: relative;
width: fit-content;
font-weight: 600;
}

.footer-column-box h3::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 30px; height: 2px;
background: #d4af37;
}

.footer-column-box ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
width: 100%;
}

.footer-column-box ul a {
color: #cbd5e1;
text-decoration: none;
font-size: 14.5px;
font-weight: 400;
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
display: inline-block;
position: relative;
cursor: pointer;
}

.footer-column-box ul a::after {
content: '';
position: absolute;
bottom: -2px; left: 0;
width: 100%;
height: 1.5px;
background: #d4af37;
transform: scaleX(0);
transform-origin: right;
transition: transform 0.3s ease;
}

.footer-column-box ul a:hover {
color: d4af37;
transform: translateX(6px);
}

.footer-column-box ul a:hover::after {
transform: scaleX(1);
transform-origin: left;
}

.footer-newsletter-block p {
color: #cbd5e1;
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
}

.footer-input-envelope {
display: flex;
width: 100%;
position: relative;
}

.footer-subscribe-input {
width: 100%;
padding: 16px 20px;
background: #0f172a;
border: 1px solid #334155;
border-radius: 6px;
color: #ffffff;
font-size: 14px;
outline: none;
transition: all 0.3s;
padding-right: 60px;
text-align: left;
}

.footer-subscribe-input:focus {
border-color: #d4af37;
box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
background: #111827;
}

.footer-subscribe-btn {
position: absolute;
right: 0; top: 0;
height: 100%;
width: 55px;
background: #d4af37;
color: #111827;
border: none;
border-radius: 0 6px 6px 0;
cursor: pointer;
font-size: 16px;
transition: background 0.3s, color 0.3s;
}

.footer-social-matrix {
display: flex;
gap: 14px;
margin-top: 25px;
justify-content: flex-start;
width: 100%;
}

.footer-social-matrix a {
width: 40px;
height: 40px;
background: #0f172a;
border: 1px solid #334155;
display: flex;
justify-content: center; align-items: center;
border-radius: 50%;
color: #f5f6f8;
font-size: 16px;
transition: all 0.4s;
text-decoration: none;
}

.footer-social-matrix a:hover {
color: #1e293b;
background: #d4af37;
border-color: #d4af37;
transform: translateY(-4px);
}

.footer-base-terminal {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 30px;
border-top: 1px solid #334155;
font-size: 13.5px;
color: #94a3b8;
position: relative;
z-index: 2;
}

.footer-base-terminal a {
color: #94a3b8;
text-decoration: none;
margin-right: 20px;
transition: color 0.3s;
cursor: pointer;
}

.footer-base-terminal a:hover {
color: #d4af37;
}

.footer-refresh-brand-anchor {
font-weight: 800 !important;
color: #d4af37 !important;
letter-spacing: 0.5px;
text-transform: uppercase;
font-size: 14px;
transition: color 0.3s;
cursor: pointer;
}



/* ═══════════════════════════════════════════════
   FOOTER RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════ */

/* ── 1100px: compress columns ── */
@media (max-width: 1100px) {
  .footer-structural-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

/* ── 900px: 2×2 grid ── */
@media (max-width: 900px) {
  .luxury-footer-canvas {
    padding: 60px 6% 36px;
  }

  .footer-structural-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-logo-box-ambient img {
    max-width: 220px;
    height: 70px;
  }
}

/* ── 768px: tablet portrait ── */
@media (max-width: 768px) {
  .luxury-footer-canvas {
    padding: 52px 5% 30px;
  }

  .footer-structural-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .footer-column-box h3 {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-logo-box-ambient {
    padding: 12px 20px;
  }

  .footer-logo-box-ambient img {
    height: 65px;
    max-width: 180px;
  }

  .footer-subscribe-input {
    padding: 13px 55px 13px 16px;
    font-size: 13px;
  }

  .footer-base-terminal {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 24px;
  }

  .footer-base-terminal div {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-base-terminal a {
    margin-right: 0;
  }
}

/* ── 600px: single-column stack ── */
@media (max-width: 600px) {
  .luxury-footer-canvas {
    padding: 48px 5% 28px;
  }

  .footer-structural-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 32px;
    text-align: center;
  }

  .footer-column-box {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-logo-box-ambient {
    display: inline-block;
    padding: 14px 24px;
  }

  .footer-logo-box-ambient img {
    height: 72px;
    max-width: 200px;
  }

  .footer-brand-contact-info {
    align-items: center;
  }

  .footer-brand-contact-info a {
    justify-content: center;
  }

  .footer-column-box h3 {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer-column-box h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column-box ul {
    align-items: center;
  }

  .footer-column-box ul a {
    transform: none !important;
  }

  .footer-newsletter-block p {
    text-align: center;
    max-width: 340px;
    margin: 0 auto 16px;
  }

  .footer-input-envelope {
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-social-matrix {
    justify-content: center;
    margin-top: 18px;
  }

  .footer-base-terminal {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 22px;
  }

  .footer-base-terminal div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .footer-base-terminal a {
    margin-right: 0;
  }
}

/* ── 400px: very small phones ── */
@media (max-width: 400px) {
  .luxury-footer-canvas {
    padding: 40px 4% 24px;
  }

  .footer-structural-grid {
    gap: 28px;
  }

  .footer-logo-box-ambient img {
    height: 60px;
    max-width: 170px;
  }

  .footer-subscribe-input {
    padding: 11px 52px 11px 14px;
    font-size: 12.5px;
  }

  .footer-social-matrix a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .footer-base-terminal {
    font-size: 12px;
  }
}