/* LÃ©a header â€” full-width top bar.
   @lea.charleston (left) | contact@LeaCharleston.com (right), near screen edges.
   Logo moved into the centered main content (see home.css). */

.lea-header {
  width: 100%;
  padding: 30px clamp(22px, 4vw, 80px) 0;
  background: var(--bg, #FFFFFF);
  flex-shrink: 0;
}

.lea-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.lea-header__social,
.lea-header__email {
  font-family: var(--font-heading, "Copperplate", serif);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink, #4F2C1D);
  text-decoration: none;
  letter-spacing: 0.05em;
  line-height: 20px;
}

.lea-header__email {
  text-align: right;
}

/* Mobile â€” keep both links at the top, one on each side */
@media (max-width: 767px) {
  .lea-header {
    padding: 16px 14px;
  }
  .lea-header__social,
  .lea-header__email {
    font-size: 10px;
    letter-spacing: 0.02em;
  }
}

/* Small phones â€” shrink contact text so both links stay on one line (the
   email is long and Copperplate Bold is a wide face) */
@media (max-width: 600px) {
  .lea-header__social,
  .lea-header__email {
    font-size: 12px;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .lea-header {
    padding: 14px 10px;
  }
  .lea-header__social,
  .lea-header__email {
    font-size: 8px;
  }
}
