/*
 * site.css — shared marketing shell for perfectbarber.ca acquisition pages.
 * Mirrors the design tokens in public/index.html verbatim.
 * All marketing pages (/pricing /story /faq /tour) import this.
 */

@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0A0A0C;
  --panel: #141416;
  --panel2: #1B1B1E;
  --edge: #24242A;
  --txt: #F5F2E8;
  --dim: #7A7872;
  --gold: #FFD166;
  --gold-rgb: 255,209,102;
  --ink: #141005;
  --disp: 'Michroma', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --max: 48rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--txt);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient glow */
body::after {
  content: "";
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 50vh;
  pointer-events: none;
  background: radial-gradient(130% 90% at 50% 130%, rgba(var(--gold-rgb), .10), transparent 70%);
  z-index: 0;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
.site-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0;
  flex-wrap: wrap;
  gap: .75rem;
}

.wordmark {
  font-family: var(--disp);
  font-size: 1.05rem;
  letter-spacing: .1em;
  color: var(--txt);
  text-decoration: none;
}
.wordmark em { font-style: normal; color: var(--gold); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dim);
  letter-spacing: .04em;
  transition: color .15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); text-decoration: none; }

/* ── Page wrapper ── */
.page {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

/* ── Section-level labels ── */
.eyebrow {
  font-family: var(--disp);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* ── Headings ── */
h1, h2, h3, h4 {
  font-family: var(--disp);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .015em;
}
h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.2rem, 4vw, 1.6rem); margin-bottom: .75rem; }
h3 { font-size: 1.05rem; margin-bottom: .5rem; }
em { font-style: normal; color: var(--gold); }

p { margin-bottom: 1rem; color: var(--dim); }
p strong { color: var(--txt); }

/* ── Panels ── */
.panel {
  background: var(--panel);
  border: 1.5px solid var(--edge);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(90% 60% at 80% -10%, rgba(var(--gold-rgb), .06), transparent 70%);
  pointer-events: none;
}

/* ── CTAs ── */
.cta-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 14px;
  padding: .95rem 1.6rem;
  letter-spacing: .02em;
  box-shadow: 0 0 28px rgba(var(--gold-rgb), .35), 0 12px 32px -12px rgba(var(--gold-rgb), .55);
  transition: box-shadow .15s;
  min-height: 44px;
}
.cta-primary:hover {
  box-shadow: 0 0 36px rgba(var(--gold-rgb), .5), 0 14px 36px -10px rgba(var(--gold-rgb), .65);
  text-decoration: none;
}

.cta-ghost {
  display: inline-block;
  border: 1.5px solid rgba(var(--gold-rgb), .55);
  color: var(--gold);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border-radius: 14px;
  padding: .85rem 1.4rem;
  transition: border-color .15s, background .15s;
  min-height: 44px;
}
.cta-ghost:hover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), .07);
  text-decoration: none;
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--edge);
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  list-style: none;
}
.footer-nav a {
  font-size: .82rem;
  color: var(--dim);
  transition: color .15s;
}
.footer-nav a:hover { color: var(--gold); text-decoration: none; }

.footer-legal {
  font-size: .76rem;
  color: var(--dim);
  margin-left: auto;
}
