/* ============================================================
   Lido Hoppers · lh-chrome.css
   Global site header + footer, rebuilt from the design handoff
   (shared.jsx Nav light variant + Footer). Loaded site-wide.
   ============================================================ */

/* ---------- HEADER ---------- */
.lh-header {
  background: var(--deck-white);
  border-bottom: 1px solid var(--sand-300);
  position: sticky; top: 0; z-index: 50;
}
.lh-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 64px; max-width: 1280px; margin: 0 auto;
}
.lh-header__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.lh-header__brand img { height: 52px; width: auto; display: block; }
.lh-header__wordmark { font-size: 22px; color: var(--ocean-blue); line-height: 1; }

.lh-header__nav { display: flex; align-items: center; gap: 30px; }
.lh-header__nav a {
  font-family: var(--font-headline); font-weight: 500; font-size: 15px;
  color: var(--deep-hull-navy); text-decoration: none;
}
.lh-header__nav a:hover { color: var(--ocean-blue); }
.lh-header__nav a.lh-btn { color: var(--deck-white); }
.lh-header__nav a.lh-btn:hover { color: var(--deck-white); }

.lh-header__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--deep-hull-navy); padding: 4px 8px;
}

@media (max-width: 900px) {
  .lh-header__inner { padding: 12px 20px; position: relative; }
  .lh-header__brand img { height: 44px; }
  .lh-header__toggle { display: block; }
  .lh-header__nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--deck-white); border-bottom: 1px solid var(--sand-300);
    box-shadow: var(--shadow-md); padding: 8px 20px 16px;
  }
  .lh-header__nav.is-open { display: flex; }
  .lh-header__nav a { padding: 12px 0; border-bottom: 1px solid var(--surface-divider); }
  .lh-header__nav a.lh-btn { margin-top: 12px; text-align: center; border-bottom: 0; }
}

/* ---------- FOOTER ---------- */
.lh-footer {
  background: var(--deep-hull-navy); color: rgba(253,253,251,0.75);
  padding: 56px 64px 32px;
}
.lh-footer__top { max-width: 1280px; margin: 0 auto 28px; }
.lh-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.lh-footer__brand img { height: 52px; width: auto; }
.lh-footer__brand .lh-header__wordmark { color: var(--sky-wash); }
.lh-footer__tagline { font-size: 14px; max-width: 280px; margin: 0; }
.lh-footer__col-title {
  color: var(--sky-wash); font-family: var(--font-headline); font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.lh-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lh-footer__col a { color: inherit; text-decoration: none; font-size: 14px; }
.lh-footer__col a:hover { color: var(--sky-wash); }
.lh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px;
}
.lh-footer__bottom a { color: var(--sky-wash); text-decoration: none; }
.lh-footer__bottom a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .lh-footer { padding: 48px 24px 28px; }
}
@media (max-width: 560px) {
  .lh-footer__bottom { flex-direction: column; }
}
