*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #0d1b2a;
  --cream: #f5f0e8;
  --gold: #b8965a;
  --mist: #e8e2d6;
}
body {
  background: var(--cream);
  font-family: "Outfit", sans-serif;
}

.site-footer {
  background: var(--navy);
  color: var(--cream);
}

.footer-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 5rem clamp(2rem, 8vw, 7rem);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.footer-logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
  display: block;
}
.footer-logo-sub {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  display: block;
  margin-top: 0.3rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}
.footer-nav a {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 232, 0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition:
    color 0.25s,
    gap 0.25s;
}

.footer-nav a:hover {
  color: var(--cream);
  gap: 0.5rem;
  text-decoration: underline;
}
.footer-nav a:hover::before {
  width: 16px;
}

.footer-divider {
  width: 1px;
  align-self: stretch;
  margin: 0 clamp(3rem, 6vw, 6rem);
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(184, 150, 90, 0.35) 20%,
    rgba(184, 150, 90, 0.35) 80%,
    transparent
  );
}

.footer-connect {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.2rem;
}

.footer-connect-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  font-family: var(--font-body);
  color: var(--gold);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.25);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 150, 90, 0.08);
}
.social-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 240, 232, 0.35);
  max-width: 270px;
  border-left: 1px solid rgba(184, 150, 90, 0.28);
  padding-left: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 150, 90, 0.14);
  padding: 1.4rem clamp(2rem, 8vw, 7rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-copy {
  font-size: 0.68rem;
  font-weight: 300;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.25);
}
.footer-bottom-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.footer-bottom-links a {
  font-size: 0.65rem;
  font-weight: 300;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: rgba(184, 150, 90, 0.65);
}

@media (max-width: 760px) {
  .footer-body {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3.5rem clamp(1.5rem, 6vw, 3rem);
  }
  .footer-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    background: linear-gradient(
      to right,
      transparent,
      rgba(184, 150, 90, 0.28) 30%,
      rgba(184, 150, 90, 0.28) 70%,
      transparent
    );
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem clamp(1.5rem, 6vw, 3rem);
  }
}
