/* ══════════════════════════════════════════════════
   WAYMARKER — Shared Stylesheet
   Brand: DM Sans only (800/700/500/400), Ink/Amber/Stone
   ══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

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

:root {
  --ink:    #0C0C0C;
  --amber:  #E8920A;
  --stone:  #F5F2ED;
  --mid:    #7A7A7A;
  --white:  #FFFFFF;
  --rule:   #E0DDD8;
  --font:   'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
.wm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 52px;
  height: 68px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(12,12,12,0.93);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
}

.nav-wordmark {
  font-size: 1rem; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  position: absolute; left: 50%; transform: translateX(-50%);
}

.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.48); text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: rgba(255,255,255,0.9); }
.nav-links a.active { color: #fff; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 700;
  background: var(--amber); color: var(--ink);
  padding: 9px 22px; border-radius: 5px;
  text-decoration: none; white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.88; }

@media (max-width: 860px) {
  .wm-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta  { display: none; }
}

/* ── MOBILE NAV ──────────────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  line-height: 0;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger .icon-close { display: none; }

.nav-hamburger.open .icon-open  { display: none; }
.nav-hamburger.open .icon-close { display: block; }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 88px 24px 40px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: -0.025em;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile a:hover,
.nav-mobile a:active { color: #fff; }

.nav-mobile .btn {
  font-size: 1rem;
  margin-top: 12px;
}

@media (max-width: 860px) {
  .nav-hamburger { display: flex; align-items: center; }
}

/* ── FOOTER ──────────────────────────────────────── */
.wm-footer {
  background: var(--ink);
  padding: 64px 52px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-logo-wrap {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 14px;
}

.footer-wordmark {
  font-size: 0.9375rem; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.8125rem; color: rgba(255,255,255,0.28);
  line-height: 1.7; max-width: 220px;
}

.footer-col-label {
  font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 18px;
}

.footer-col-links {
  display: flex; flex-direction: column; gap: 12px;
}

.footer-col-links a {
  font-size: 0.875rem; font-weight: 400;
  color: rgba(255,255,255,0.42); text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}

.footer-legal {
  font-size: 0.75rem; color: rgba(255,255,255,0.18);
}

.footer-social {
  display: flex; gap: 24px;
}

.footer-social a {
  font-size: 0.75rem; font-weight: 600;
  color: rgba(255,255,255,0.18); text-decoration: none;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}

.footer-social a:hover { color: rgba(255,255,255,0.55); }

@media (max-width: 860px) {
  .wm-footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 0.9375rem; font-weight: 700;
  padding: 16px 32px; border-radius: 6px;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  line-height: 1;
}

.btn:hover { transform: translateY(-1px); }

.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { opacity: 0.9; }

.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #2a2927; }

.btn-outline-dark {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(12,12,12,0.22);
}
.btn-outline-dark:hover { border-color: var(--ink); }

.btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.6); }

/* ── EYEBROW ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
}

.eyebrow::before, .eyebrow::after {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--amber); opacity: 0.5;
}

/* ── PAGE SHELL ──────────────────────────────────── */
/* Inner pages (non-home) start below the fixed nav */
.page-shell {
  background: var(--stone);
  min-height: 100vh;
  padding-top: 68px;
}

/* ── INNER PAGE HERO ─────────────────────────────── */
.inner-hero {
  background: var(--ink);
  padding: 80px 52px 88px;
  text-align: center;
}

.inner-hero .eyebrow { justify-content: center; }

.inner-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.inner-hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.inner-hero .lead {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 520px; margin: 0 auto;
}

@media (max-width: 860px) {
  .inner-hero { padding: 64px 24px 72px; }
}

/* ── SECTION WRAPPER ─────────────────────────────── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 52px;
}

@media (max-width: 860px) {
  .section-wrap { padding: 56px 24px; }
}

/* ── CARD ────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(12,12,12,0.08);
  transform: translateY(-2px);
}

/* ── LOGO MARK SVG (inline helper) ──────────────── */
/* Use via: <svg class="wm-mark" ...> in each page  */
