/* ============================================================
 * ROMANALABS — shared CSS
 * Loaded by both index.html and contact/index.html.
 * Contains: brand tokens (full set) + footer styles.
 * Page-specific styles stay in each page's inline <style> block.
 * ============================================================ */

/* ===== Brand tokens (Midnight Emerald & Alabaster) ===== */
:root {
  --accent: #D4AF37;
  --accent-hover: #C49B2E;
  --accent-glow: rgba(212, 175, 55, 0.35);
  --accent-subtle: rgba(212, 175, 55, 0.07);

  --emerald: #1B4332;
  --emerald-hover: #155229;

  --bg-primary: #F9F9F7;
  --bg-paper: #FBFBF8;
  --bg-card: #0A0D0B;
  --bg-elevated: #111511;

  --border: rgba(18, 18, 18, 0.08);
  --border-hover: rgba(212, 175, 55, 0.5);

  --text-primary: #121212;
  --text-secondary: #4A4A4A;
  --text-muted: #888888;
  --text-on-card: #F0F0F0;
  --text-on-card-muted: #AAAAAA;
}

/* ============================================================
 * Footer — identical on every page
 * ============================================================ */
.site-footer { background: #0A0D0B; }

.footer-content {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.footer-pad {
  padding: clamp(48px, 6vw, 64px) 0;
}

.footer-top {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-logo-link {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.footer-logo-mark {
  width: 36px; height: 36px; display: block;
  object-fit: contain; flex-shrink: 0;
  filter: invert(1) brightness(2.2);
}
.footer-brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.footer-tagline {
  font-size: 13px; line-height: 1.65;
  color: #AAAAAA;
  max-width: 360px; margin: 0;
}

.footer-socials {
  display: flex; align-items: center; gap: 16px;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: #AAAAAA;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-social:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.footer-contact {
  font-size: 13px; color: #AAAAAA;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.25s ease;
}
.footer-contact:hover { color: #fff; }

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  padding-top: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  font-size: 12px; color: #666666; margin: 0;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 12px; color: #666666;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-legal a:hover { color: #AAAAAA; }

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: row;
  }
}
