/* ── BASE STYLES — matches brooklynaicoach.com index.html ── */
:root {
  --bg: #FAF7F2;
  --bg-warm: #F0EBE1;
  --text: #1C1917;
  --text-soft: #44403C;
  --text-light: #78716C;
  --accent: #D55A28;
  --accent-hover: #C04E1F;
  --secondary: #2D5A3D;
  --dark-bg: #1C1917;
  --dark-text: #FAF7F2;
  --border: #D6CFC4;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-align: left;
}

.container { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  padding: 18px 0;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  padding: 8px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-cta {
  font-size: 0.95rem; font-weight: 700; color: #fff;
  background: var(--accent); text-decoration: none;
  padding: 12px 28px; border-radius: 10px;
  min-height: 48px; display: flex; align-items: center;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* ── FOOTER ── */
footer {
  padding: 32px 0;
  background: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-hoods {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.3);
  font-weight: 400;
}

/* ── FOCUS STYLES ── */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 600px) {
  html { font-size: 19px; }
  .nav-logo { font-size: 0.85rem; white-space: nowrap; }
}
