/* ── MARKETING DESIGN TOKENS ── */
/* Extracted verbatim from frontend/index.html inline <style> */
/* Source of truth: the :root block, marketing body, nav shell, and footer shell rules. */
/* Hero/section rules stay with the homepage body (future phase). */

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

:root {
  --sage: #8a9e8a;
  --sage-light: #b8ccb8;
  --sage-dark: #5a7a5a;
  --ink: #1a1f1a;
  --ink-soft: #2e352e;
  --mist: #f2f4f0;
  --mist-dark: #e4e8e0;
  --teal: #4a7c7c;
  --teal-light: #6fa0a0;
  --gold: #b8985a;
  --white: #fafbf8;
  --text-body: #3a443a;
  --text-soft: #6a786a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,251,248,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138,158,138,0.15);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--ink);
}
.nav-logo img { width: 28px; height: 28px; }
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; letter-spacing: 0.02em;
}

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  text-decoration: none; color: var(--text-soft);
  font-size: 0.9rem; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--ink); color: var(--white);
  padding: 0.55rem 1.25rem; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--ink-soft); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.82rem; color: var(--text-soft);
  border-top: 1px solid var(--mist-dark);
}
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: var(--ink); }
.social-icons { display: flex; justify-content: center; gap: 16px; margin-bottom: 12px; }
.social-icons a { color: var(--text-soft); transition: opacity 0.2s; }
.social-icons a:hover { opacity: 0.7; }
.social-icons svg { width: 20px; height: 20px; fill: currentColor; }

/* ── RESPONSIVE NAV ── */
@media (max-width: 680px) {
  .nav-links .btn-ghost-nav { display: none; }
  nav { padding: 0.7rem 1rem; }
  .nav-logo span { font-size: 1.05rem; }
  .nav-links { gap: 0.7rem; }
  .nav-links a { white-space: nowrap; }
  .nav-links .nav-bundle { display: inline-flex; }
  .nav-links .btn-primary { padding: 0.45rem 0.85rem; font-size: 0.8rem; flex-shrink: 0; }
}
