/* ══════════════════════════════
   STRUCTURE.CSS
   Page skeleton — desktop only.
   All mobile overrides live in mobile.css.
   ══════════════════════════════ */

/* ── RESET & FOUNDATION ── */
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  position: relative;
}

/* ── PAGE WRAPPER ── */
#page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── HERO SPACER ── */
#hero-spacer {
  height: 180px;
  flex-shrink: 0;
}

/* ── BODY ROW ── */
#body-row {
  display: flex;
  flex-direction: row;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

/* ── SITE FOOTER ── */
#site-footer {
  flex-shrink: 0;
  background: transparent;
  position: relative;
  z-index: 5;
}

#site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,75,0.4), transparent);
}

#footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.75rem;
  position: relative;
  z-index: 1;
}

.footer-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(247, 240, 226, 0.6);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── MOBILE NAV — hidden on desktop ── */
#mobile-nav {
  display: none;
}
