/* ════════════════════════════════════════
   DWELLTRY, Shared site footer
   Consolidated from round2 (base layout), round3 (white-bg + 4-col grid), round4 (stacked brand column).
   Load this on every page after style.css so the footer renders
   identically to the homepage.
════════════════════════════════════════ */

.footer-v2 {
  background: #FFFFFF;
  color: #000;
  border-top: 1px solid rgba(0,0,0,0.10);
  padding: 2.5rem clamp(2rem, 4vw, 4rem) 0;
}

.footer-v2-main {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  max-width: 1480px;
  margin: 0 auto;
}

/* Brand column, big logo stacked above wordmark + tag */
.footer-v2-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
.footer-v2-mark {
  width: clamp(120px, 12vw, 170px);
  height: auto;
  filter: none;
}
.footer-v2-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.footer-v2-brand-text .footer-v2-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #000;
}
.footer-v2-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  opacity: 0.55;
}

/* Nav links, vertically centered against the tall brand column */
.footer-v2-links {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.6rem;
  margin: 0;
}
.footer-v2-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #000;
  opacity: 0.7;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
.footer-v2-links a:hover { color: var(--gold); opacity: 1; }

/* Contact */
.footer-v2-contact {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-v2-heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer-v2-contact a.footer-v2-contact span {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: #000;
  opacity: 0.7;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s, opacity 0.2s;
}
.footer-v2-contact a:hover { color: var(--gold); opacity: 1; }

/* Social, bordered squares */
.footer-v2-social {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-v2-social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.18);
  color: #000;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.25s, color 0.25s, border-color 0.25s;
}
.footer-v2-social a:hover {
  opacity: 1;
  color: var(--gold);
  border-color: var(--gold);
}
.footer-v2-social svg {
  width: 13px;
  height: 13px;
  display: block;
}

/* Skinny bottom strip */
.footer-v2-bottom {
  margin: 1rem auto 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000;
  opacity: 0.55;
  max-width: 1480px;
}
.footer-v2-bottom-right {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold);
  opacity: 0.85;
}

@media (max-width: 980px) {
  .footer-v2-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 560px) {
  .footer-v2-main { grid-template-columns: 1fr; }
  .footer-v2-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ════════════════════════════════════════
   FORCE BLACK TEXT in v2 footer
   Some page CSS sets body { color: #FFF } which inherits to footer
   text via implicit inheritance. Explicitly nail down black here.
══════════════════════════════════════ */
.footer-v2,
.footer-v2 *,
.footer-v2 a,
.footer-v2 span,
.footer-v2 svg { color: #000; }
.footer-v2 .footer-v2-heading,
.footer-v2 .footer-v2-bottom-right { color: var(--gold) !important; }
.footer-v2 a:hover,
.footer-v2 a:hover svg { color: var(--gold); }
.footer-v2-social svg { color: currentColor; }
