/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── VARIABLES ─────────────────────────────────── */
:root {
  --coral:       #da7857;
  --coral-dark:  #c0603e;
  --coral-light: #f5e8e2;
  --black:       #0a0a0a;
  --gray-900:    #111111;
  --gray-700:    #2a2a2a;
  --gray-500:    #666666;
  --gray-300:    #cccccc;
  --gray-200:    #e8e8e8;
  --gray-100:    #f5f5f5;
  --white:       #ffffff;
  --success:     #16a34a;
  --success-light: #f0fdf4;
  --danger:      #dc2626;
}

/* ── BASE ──────────────────────────────────────── */
body {
  font-family: 'Urbanist', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ───────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; color: var(--black);
  text-decoration: none;
}

.nav-logo-dot {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-dot svg { width: 14px; height: 14px; fill: white; }

.nav-back {
  font-size: 13px; font-weight: 600; color: var(--gray-500);
  text-decoration: none; transition: color 0.2s;
}
.nav-back:hover { color: var(--black); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }

.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 9px 22px; border-radius: 8px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--coral) !important; }

/* ── PAGE HERO (inner pages) ───────────────────── */
.page-hero { background: var(--black); padding: 64px 5% 56px; }
.page-hero .eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 900;
  letter-spacing: -2px; color: var(--white); line-height: 1.1; margin-bottom: 12px;
}
.page-hero .meta { font-size: 14px; color: rgba(255,255,255,0.35); }
.page-hero p    { font-size: 16px; color: rgba(255,255,255,0.4); max-width: 440px; line-height: 1.7; }

/* ── FOOTER (inner pages) ──────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 5% 32px;
  text-align: center;
}

.footer-logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 800; color: var(--white);
  text-decoration: none; margin-bottom: 20px;
}

.footer-logo-dot {
  width: 24px; height: 24px; border-radius: 7px;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
}

.footer-logo-dot svg { width: 12px; height: 12px; fill: white; }

.footer-nav { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 14px; }
.footer-nav a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }

.footer-legal {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 20px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

footer p { font-size: 12px; color: rgba(255,255,255,0.2); line-height: 1.7; }

/* ── MOBILE ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
}
