/* ============================================
   BayAreaChauffeurService.com — Site Stylesheet
   Aesthetic: Editorial luxury, corporate black,
   warm gold accent, classical serif + modern sans
============================================ */

:root {
  /* Color tokens — Onyx + Gold */
  --color-ink: #0a0d11;            /* near-black for body text & dark sections */
  --color-onyx: #131820;           /* primary dark surface */
  --color-graphite: #1c2330;       /* secondary dark surface */
  --color-mist: #f6f4ef;           /* warm off-white page background */
  --color-paper: #ffffff;
  --color-stone: #e7e2d6;          /* warm divider/border */
  --color-line: #2a3142;           /* dark mode divider */
  --color-muted: #5b6472;          /* secondary text */
  --color-muted-light: rgba(246,244,239,0.66);

  /* Brand accent — burnished gold */
  --color-gold: #b08a3e;
  --color-gold-bright: #d4a857;
  --color-gold-soft: #ede2c8;

  /* Type scale (clamped, fluid) */
  --text-xs: clamp(0.75rem, 0.72rem + 0.1vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.15vw, 0.9375rem);
  --text-base: 1rem;
  --text-lg: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.3rem + 0.8vw, 1.875rem);
  --text-2xl: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
  --text-3xl: clamp(2.5rem, 1.8rem + 2.8vw, 4rem);
  --text-hero: clamp(3rem, 2rem + 4.5vw, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  /* Type families */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Shadows (subtle, warm) */
  --shadow-sm: 0 1px 2px rgba(10,13,17,0.06), 0 1px 1px rgba(10,13,17,0.04);
  --shadow-md: 0 8px 24px rgba(10,13,17,0.10), 0 2px 6px rgba(10,13,17,0.06);
  --shadow-lg: 0 24px 60px rgba(10,13,17,0.18);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur: 320ms;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-mist);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }

/* Selection */
::selection { background: var(--color-gold); color: white; }

/* ===== Typography ===== */
.serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-ink);
}
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

p { font-size: var(--text-base); line-height: 1.7; color: #2c3340; }
.lede { font-size: var(--text-lg); line-height: 1.55; color: #2c3340; max-width: 65ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
}
.eyebrow--light { color: var(--color-gold-bright); }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
.container--narrow { max-width: var(--container-narrow); }

section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--dark {
  background: var(--color-onyx);
  color: rgba(246,244,239,0.85);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-mist); }
.section--dark p { color: rgba(246,244,239,0.78); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 244, 239, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--color-stone);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) clamp(1.25rem, 4vw, 2rem);
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
  color: var(--color-ink);
  transition: opacity var(--dur-fast) var(--ease);
}
.brand:hover { opacity: 0.78; }
.brand-emblem {
  display: block;
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-wordmark strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-ink);
}
.brand-wordmark small {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .brand-emblem { height: 36px; }
  .brand-wordmark strong { font-size: 1.05rem; }
  .brand-wordmark small { font-size: 0.55rem; letter-spacing: 0.14em; }
}
@media (max-width: 420px) {
  .brand-wordmark small { display: none; }
}

/* Clickable image wrappers (hero + service cards) */
.hero__bg-link,
.service-card__media {
  display: block;
  position: relative;
  cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease);
}
.hero__bg-link { position: absolute; inset: 0; }
.hero__bg-link img { width: 100%; height: 100%; object-fit: cover; }
.service-card__media:hover { opacity: 0.92; }
.service-card__media img { display: block; width: 100%; }

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--color-ink);
  position: relative; transition: color var(--dur-fast) var(--ease);
}
.nav a:hover { color: var(--color-gold); }
.nav a.active { color: var(--color-gold); }
.nav-cta {
  background: var(--color-ink); color: white !important;
  padding: 0.6rem 1.1rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  transition: background var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.nav-cta:hover { background: var(--color-gold); color: white !important; transform: translateY(-1px); }

.menu-toggle { display: none; padding: 0.4rem; }
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 920px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-mist); border-bottom: 1px solid var(--color-stone);
    padding: var(--space-4); }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--color-stone); }
  .nav a:last-child { border-bottom: 0; }
  .nav-cta { margin-top: var(--space-2); text-align: center; }
  .menu-toggle { display: block; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: transform var(--dur-fast) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-ink); color: white;
}
.btn--primary:hover { background: var(--color-gold); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--color-gold); color: white; }
.btn--gold:hover { background: var(--color-gold-bright); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent; color: var(--color-ink);
  box-shadow: inset 0 0 0 1.5px var(--color-ink);
}
.btn--ghost:hover { background: var(--color-ink); color: white; }
.btn--ghost-light {
  background: transparent; color: var(--color-mist);
  box-shadow: inset 0 0 0 1.5px rgba(246,244,239,0.4);
}
.btn--ghost-light:hover { background: var(--color-mist); color: var(--color-ink); }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ===== Hero ===== */
.hero {
  position: relative; isolation: isolate;
  min-height: 78vh;
  display: flex; align-items: center;
  color: white;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,13,17,0.55) 0%, rgba(10,13,17,0.7) 60%, rgba(10,13,17,0.85) 100%);
}
.hero__inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vw, 6rem);
}
.hero h1 {
  color: white;
  font-size: var(--text-hero);
  line-height: 1.05;
  max-width: 18ch;
  margin-bottom: var(--space-5);
}
.hero .lede { color: rgba(246,244,239,0.88); max-width: 60ch; margin-bottom: var(--space-8); }
.hero__rule {
  width: 64px; height: 2px; background: var(--color-gold);
  margin-bottom: var(--space-6);
}
.hero__phone {
  margin-top: var(--space-6);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: rgba(246,244,239,0.7);
}
.hero__phone a { color: var(--color-gold-bright); border-bottom: 1px solid rgba(212,168,87,0.35); padding-bottom: 1px; }

/* Hero variants — interior pages get smaller hero */
.hero--inner { min-height: 56vh; }
.hero--inner h1 { font-size: var(--text-3xl); max-width: 22ch; }
.hero--inner .hero__inner { padding-top: clamp(4rem, 8vw, 6rem); padding-bottom: clamp(3rem, 6vw, 5rem); }

/* ===== Cards & grids ===== */
.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: white;
  border: 1px solid var(--color-stone);
  border-radius: var(--radius);
  padding: var(--space-6);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(176,138,62,0.4); }
.card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); font-family: var(--font-sans); font-weight: 600; }
.card p { font-size: 0.95rem; color: var(--color-muted); }

.card--feature {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-6) var(--space-6) var(--space-8);
}
.card--feature .icon {
  width: 44px; height: 44px;
  background: var(--color-gold-soft);
  color: var(--color-gold);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  margin-bottom: var(--space-2);
}
.card--feature .icon svg { width: 22px; height: 22px; }

/* Service cards on homepage */
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--color-stone);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__img { aspect-ratio: 16/10; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: var(--space-6); }
.service-card__body h3 { font-size: var(--text-xl); font-family: var(--font-serif); font-weight: 500; margin-bottom: var(--space-3); }
.service-card__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600; color: var(--color-gold);
  margin-top: var(--space-4);
}
.service-card__cta::after { content: '→'; transition: transform var(--dur) var(--ease); }
.service-card:hover .service-card__cta::after { transform: translateX(4px); }

/* ===== Stat blocks ===== */
.stat {
  padding: var(--space-6); border-left: 2px solid var(--color-gold);
}
.stat__value { font-family: var(--font-serif); font-size: var(--text-2xl); font-weight: 500; color: var(--color-ink); line-height: 1; }
.stat__label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-muted); margin-top: 0.6rem; }

/* ===== Tables ===== */
.table-wrap { overflow-x: auto; border: 1px solid var(--color-stone); border-radius: var(--radius); background: white; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th, td {
  text-align: left; padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--color-stone);
}
th { background: #faf7f0; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); }
tr:last-child td { border-bottom: 0; }

/* ===== Lists with bullets ===== */
.list-checked { display: grid; gap: var(--space-3); }
.list-checked li {
  position: relative; padding-left: 2rem; line-height: 1.55;
}
.list-checked li::before {
  content: ''; position: absolute; left: 0; top: 0.4rem;
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: var(--color-gold-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23b08a3e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 12 13 4'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 0.8rem;
}

/* ===== Section header ===== */
.section-head { text-align: left; margin-bottom: var(--space-12); max-width: 60ch; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { margin-bottom: var(--space-3); }
.section-head h2 { margin-bottom: var(--space-4); }
.section-head p { color: var(--color-muted); }

/* ===== Two-col content ===== */
.two-col {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col--reverse { grid-template-columns: 1fr 1.1fr; }
.two-col--reverse .two-col__media { order: -1; }
@media (max-width: 920px) {
  .two-col, .two-col--reverse { grid-template-columns: 1fr; }
  .two-col--reverse .two-col__media { order: 0; }
}
.two-col__media img { border-radius: var(--radius-lg); width: 100%; }

/* ===== FAQ ===== */
.faq { display: grid; gap: var(--space-4); max-width: 800px; }
.faq details {
  border-bottom: 1px solid var(--color-stone);
  padding: var(--space-4) 0;
}
.faq summary {
  list-style: none; cursor: pointer;
  font-size: var(--text-lg); font-family: var(--font-sans); font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-serif); font-size: 1.6rem; color: var(--color-gold); transition: transform var(--dur) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: var(--space-3); color: #404a5b; line-height: 1.65; }

/* ===== Prose (blog body) ===== */
.prose {
  max-width: 65ch; margin: 0 auto;
}
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: var(--text-xl); margin-top: 2em; }
.prose h3 { font-size: var(--text-lg); font-family: var(--font-sans); font-weight: 600; margin-top: 1.6em; }
.prose p { font-size: 1.05rem; line-height: 1.75; }
.prose a { color: var(--color-gold); text-decoration: underline; text-decoration-color: rgba(176,138,62,0.35); text-underline-offset: 4px; }
.prose a:hover { text-decoration-color: var(--color-gold); }
.prose ul { list-style: disc inside; padding-left: 0.5rem; }
.prose ol { list-style: decimal inside; padding-left: 0.5rem; }
.prose li { line-height: 1.7; margin-bottom: 0.4em; }
.prose blockquote {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-2) var(--space-6);
  font-family: var(--font-serif); font-style: italic; font-size: 1.2rem;
  color: var(--color-ink);
}
.prose strong { color: var(--color-ink); font-weight: 700; }

/* Article meta block */
.article-meta {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  font-size: 0.85rem; color: var(--color-muted);
  padding: var(--space-4) 0; border-top: 1px solid var(--color-stone); border-bottom: 1px solid var(--color-stone);
  margin: var(--space-8) 0;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.article-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* ===== CTA bands ===== */
.cta-band {
  background: var(--color-onyx);
  color: var(--color-mist);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -10%; top: -50%;
  width: 50%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,138,62,0.18), transparent 70%);
}
.cta-band__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-8);
  position: relative;
}
.cta-band h2 { color: white; font-size: var(--text-2xl); max-width: 16ch; }
.cta-band p { color: rgba(246,244,239,0.78); margin-top: 0.4rem; }
.cta-band .btn-group { flex-shrink: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-ink);
  color: rgba(246,244,239,0.7);
  padding: var(--space-16) 0 var(--space-8);
  font-size: 0.9rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (max-width: 920px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer h5 {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--color-gold-bright);
  margin-bottom: var(--space-4);
}
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer a { color: rgba(246,244,239,0.7); transition: color var(--dur-fast) var(--ease); }
.site-footer a:hover { color: var(--color-gold-bright); }
.site-footer__brand {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
  color: white; margin-bottom: var(--space-3); display: block;
}
.site-footer__bottom {
  border-top: 1px solid rgba(246,244,239,0.12);
  padding-top: var(--space-6);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4);
  font-size: 0.82rem;
  color: rgba(246,244,239,0.5);
}

/* ===== Awards strip ===== */
.awards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-6); align-items: center;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-stone);
  border-bottom: 1px solid var(--color-stone);
}
.award {
  text-align: center;
  font-family: var(--font-serif);
}
.award__year { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-sans); color: var(--color-gold); font-weight: 600; margin-bottom: 0.4rem; }
.award__title { font-size: 1.05rem; line-height: 1.3; color: var(--color-ink); }

/* ===== Map / area lists ===== */
.area-list { display: grid; gap: var(--space-3); }
.area-list strong { color: var(--color-ink); display: block; margin-bottom: 0.2rem; font-family: var(--font-sans); }

/* ===== Forms ===== */
.form { display: grid; gap: var(--space-4); max-width: 540px; }
.form label { font-size: 0.82rem; font-weight: 600; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.4rem; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit; font-size: 1rem;
  background: white;
  border: 1px solid var(--color-stone);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(176,138,62,0.18);
}
.form textarea { min-height: 130px; resize: vertical; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  font-size: 0.82rem; color: var(--color-muted-light);
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  margin-bottom: var(--space-4);
}
.breadcrumb a { color: var(--color-gold-bright); }
.breadcrumb a:hover { color: white; }
.breadcrumb__sep { color: rgba(246,244,239,0.4); }

/* ===== Misc utilities ===== */
.text-center { text-align: center; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.divider { height: 1px; background: var(--color-stone); border: 0; margin: var(--space-12) 0; }
.divider--dark { background: rgba(246,244,239,0.12); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Print friendly */
@media print {
  .site-header, .site-footer, .cta-band, .nav-cta { display: none; }
  body { background: white; color: black; }
}
