/* ─── GLOBAL STYLES ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-bg: #FAFAF8;
  --color-text: #1A1A1A;
  --color-text-secondary: #5A5A58;
  --color-text-tertiary: #8A8A88;
  --color-accent: #7AC6DF;
  --color-accent-hover: #D4552B;
  --color-border: #E8E8E4;
  --color-surface: #F2F2EE;
  --color-white: #FFFFFF;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
  --max-width: 1120px;
  --section-padding: clamp(80px, 12vh, 140px);
}

html { scroll-behavior: smooth; font-size: 16px; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

/* ─── NAV (shared base) ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo svg {
  height: 22px;
  width: auto;
}

nav a.nav-link {
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

nav a.nav-link:hover { color: var(--color-accent); }

nav a.nav-cta {
  padding: 8px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #fff;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

nav a.nav-cta:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ─── FOOTER (shared) ─── */
footer {
  background: #000;
  padding: 48px 0 56px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-left .footer-logo {
  margin-bottom: 12px;
}

.footer-left .footer-logo svg {
  height: 18px;
  width: auto;
}

.footer-left p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-right {
  text-align: right;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-right a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--color-accent); }

.stealth-label {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE (shared) ─── */
@media (max-width: 768px) {
  .nav-cta { display: none !important; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; }
}