/* ==========================================================================
   LAWELIYA — FOOTER  (rebuilt — matches footer.php exactly)
   ========================================================================== */

/* ── TICKER ── */

.footer-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  background: #0a0906;
  border-top: 1px solid rgba(200,164,110,.15);
  border-bottom: 1px solid rgba(200,164,110,.08);
  height: 44px;
  overflow: hidden;
  position: relative;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: 0 1.25rem 0 1.5rem;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c8a46e;
  white-space: nowrap;
  border-right: 1px solid rgba(200,164,110,.15);
  height: 100%;
  background: #0a0906;
  z-index: 2;
  flex-shrink: 0;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a46e;
  animation: tickerPulse 1.6s ease-in-out infinite;
}

@keyframes tickerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  /* fade edges */
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 70s linear infinite;
  will-change: transform;
}

.ticker-inner:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 2.5rem;
  font-size: .8rem;
  color: rgba(240,234,216,.65);
  letter-spacing: .02em;
  border-right: 1px solid rgba(200,164,110,.1);
}

.ticker-item:last-child { border-right: none; }

/* ── MAIN FOOTER ── */

.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, #0d0c0a 0%, #090806 50%, #060504 100%);
  overflow: hidden;
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
}

/* Gold radial glow */
.site-footer::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 30%, rgba(200,164,110,.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  padding: 80px 0 64px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(200,164,110,.14);
}

/* faint gold top line */
.footer-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,110,.5), transparent);
}

.footer-container {
  width: min(1440px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 56px;
}

/* ── BRAND COLUMN ── */

.footer-brand { }

.footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-logo-wordmark {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: .22em;
  color: #c8a46e;
  line-height: 1;
}

.footer-logo-sub {
  display: block;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(200,164,110,.55);
  margin-top: .3rem;
}

/* WordPress custom logo override */
.footer-logo img {
  max-height: 56px;
  width: auto;
  filter: brightness(1.1) saturate(.9);
}

.footer-description {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(240,234,216,.55);
  margin-bottom: 1.75rem;
  max-width: 320px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: .75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,164,110,.2);
  color: rgba(240,234,216,.55);
  text-decoration: none;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
}

.footer-social-link:hover {
  border-color: #c8a46e;
  color: #c8a46e;
  background: rgba(200,164,110,.08);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(200,164,110,.12);
}

/* Trust badges */
.footer-badges {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-badge {
  text-align: center;
  padding: .6rem 1rem;
  background: rgba(200,164,110,.05);
  border: 1px solid rgba(200,164,110,.12);
  border-radius: 8px;
}

.footer-badge-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #c8a46e;
  line-height: 1;
}

.footer-badge-lbl {
  display: block;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,234,216,.4);
  margin-top: .3rem;
}

/* ── LINK COLUMNS ── */

.footer-col { }

.footer-col-title {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: #c8a46e;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.footer-links a {
  color: rgba(240,234,216,.52);
  text-decoration: none;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  padding-left: 0;
  position: relative;
}

.footer-links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: #c8a46e;
  transition: width .35s cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
}

.footer-links a:hover {
  color: #c8a46e;
  padding-left: .75rem;
}

.footer-links a:hover::before { width: .5rem; }

/* ── CONTACT LIST ── */

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.footer-contact-icon {
  color: #c8a46e;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-link {
  color: rgba(240,234,216,.55);
  text-decoration: none;
  font-size: .88rem;
  line-height: 1.7;
  transition: color .3s;
}

.footer-contact-link:hover { color: #c8a46e; }

.footer-contact-text {
  color: rgba(240,234,216,.52);
  font-size: .88rem;
  line-height: 1.7;
}

/* ── NEWSLETTER ── */

.footer-newsletter-label {
  font-size: .72rem;
  color: rgba(240,234,216,.45);
  letter-spacing: .08em;
  margin-bottom: .9rem;
}

.footer-newsletter-form { }

.footer-nl-row {
  display: flex;
  height: 52px;
  border: 1px solid rgba(200,164,110,.2);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(200,164,110,.04);
  transition: border-color .3s;
}

.footer-nl-row:focus-within {
  border-color: rgba(200,164,110,.5);
}

.footer-nl-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 1.25rem;
  color: #f0ead8;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  outline: none;
}

.footer-nl-input::placeholder {
  color: rgba(240,234,216,.3);
  font-size: .82rem;
}

.footer-nl-btn {
  width: 52px;
  flex-shrink: 0;
  border: none;
  background: linear-gradient(135deg, #c8a46e, #d4b483);
  color: #080806;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  border-radius: 0 100px 100px 0;
}

.footer-nl-btn:hover {
  background: linear-gradient(135deg, #d4b483, #e8cc9e);
}

.footer-nl-success {
  font-size: .8rem;
  color: #c8a46e;
  margin-top: .75rem;
  letter-spacing: .04em;
}

/* ── BOTTOM BAR ── */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  /* Override the grid from .footer-container */
  grid-template-columns: unset !important;
  display: flex !important;
}

.footer-copy {
  font-size: .78rem;
  color: rgba(240,234,216,.32);
  letter-spacing: .04em;
  flex-shrink: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(240,234,216,.38);
  text-decoration: none;
  transition: color .3s;
  letter-spacing: .03em;
}

.footer-bottom-links a:hover { color: #c8a46e; }

.footer-certifications {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.footer-cert {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200,164,110,.45);
  padding: .3rem .7rem;
  border: 1px solid rgba(200,164,110,.15);
  border-radius: 4px;
}

/* ── BACK TO TOP ── */

.footer-back-top {
  position: absolute;
  right: 3rem;
  bottom: 3.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200,164,110,.08);
  border: 1px solid rgba(200,164,110,.25);
  color: #c8a46e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  z-index: 5;
}

.footer-back-top:hover {
  background: #c8a46e;
  color: #080806;
  border-color: #c8a46e;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200,164,110,.25);
}

/* ── RESPONSIVE ── */

@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 3.5rem;
  }
  .footer-back-top { right: 2rem; }
}

@media (max-width: 680px) {
  .footer-top { padding: 60px 0 48px; }
  .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-description { max-width: none; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-bottom-links { justify-content: center; }
  .footer-certifications { justify-content: center; }
  .footer-back-top { right: 1.25rem; bottom: 5rem; }
  .footer-nl-row { flex-direction: column; height: auto; border-radius: 12px; }
  .footer-nl-input { height: 50px; }
  .footer-nl-btn { width: 100%; height: 48px; border-radius: 0 0 12px 12px; }
  .ticker-label { padding: 0 .85rem; font-size: .55rem; }
  .ticker-item { padding: 0 1.5rem; font-size: .75rem; }
}

@media (max-width: 400px) {
  .footer-badges { gap: .75rem; }
  .footer-badge { padding: .5rem .75rem; }
  .footer-badge-num { font-size: 1.2rem; }
}