/* ==========================================================================
   Andrine Mendez — Global layout: reset, body, site header, site footer.
   Mirrors SiteHeader.dc.html / SiteFooter.dc.html from the Claude Design export.
   ========================================================================== */
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--grey-50);
  font-family: var(--font-body);
  color: var(--text-body);
}
a { color: var(--link); }
a:hover { color: var(--link-hover); }
img { max-width: 100%; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Shared mono uppercase section label (used above grids/lists across pages) */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 0 0 20px;
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 246, 243, 0.92);
  backdrop-filter: saturate(1.2);
  border-bottom: 1.5px solid var(--grey-200);
}
.site-header__row {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { height: 28px; width: auto; display: block; }
.site-header__nav { display: flex; align-items: center; gap: 28px; }
.site-header__nav a:not(.btn) {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--ink-900);
}
.site-header__nav a.is-active {
  border-bottom: 2.5px solid var(--brand);
  padding-bottom: 3px;
}
.site-header__nav a.btn { text-decoration: none; }

/* Site footer */
.site-footer {
  background: var(--ink-900);
  color: var(--grey-400);
}
.site-footer__row {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer__row img { height: 36px; width: auto; display: block; }
.site-footer__nav {
  display: flex;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.site-footer__nav a { color: var(--grey-400); text-decoration: none; }
.site-footer__social {
  display: flex;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-footer__social a { color: var(--grey-300); text-decoration: none; }
.site-footer__legal {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey-600);
}
