/* Eight Bells Footer V2 */

.eb-footer-v2 {
  --eb-bg: #f8f6f3;
  --eb-text: #2f2d2b;
  --eb-muted: #5f5a55;
  --eb-line: #d8d0c6;

  background: var(--eb-bg);
  color: var(--eb-text);
  border-top: none;
  padding: 5rem 1.5rem 3rem;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
}

.eb-footer-v2 *,
.eb-footer-v2 *::before,
.eb-footer-v2 *::after {
  box-sizing: border-box;
}

.eb-footer-v2 a {
  color: inherit;
  text-decoration: none;
}

.eb-footer-v2 p {
  margin: 0;
}

.eb-footer-v2 .eb-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
    
        border-top: 1px solid var(--eb-line);
    padding-top: 4rem;
}

.eb-footer-v2 .eb-footer-logo {
  display: inline-block;
  font-family: 'Tenderness', 'Raleway', Arial, Helvetica, sans-serif;
  color: var(--eb-text);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  line-height: 1;
}

.eb-footer-v2 .eb-footer-tagline {
  margin-top: 1.35rem;
  color: var(--eb-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.eb-footer-v2 .eb-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.75rem;
}

.eb-footer-v2 .eb-footer-nav a,
.eb-footer-v2 .eb-footer-social a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.eb-footer-v2 .eb-footer-social {
  margin-top: 2.35rem;
}

.eb-footer-v2 .eb-footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  max-width: 720px;
  margin: 4.25rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--eb-line);
  color: var(--eb-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .eb-footer-v2 {
    padding: 4rem 1.25rem 2.5rem;
  }

  .eb-footer-v2 .eb-footer-nav {
    gap: 1.1rem 1.4rem;
  }

  .eb-footer-v2 .eb-footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 3.5rem;
  }
}