/* ==========================================================
   BIG DAWG BAIL BONDS — DESIGN SYSTEM
   Direction 5 (Confident Modern) applied to brand colors
   Yellow #FEFF99 + Black #0A0A0A + Red accent
   Bricolage Grotesque + Instrument Serif Italic
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..900&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* Brand colors */
  --yellow: #FEFF99;
  --yellow-warm: #FFFBC8;
  --yellow-deep: #FBE94A;
  --black: #0A0A0A;
  --black-soft: #1A1A18;
  --black-faint: #2A2A28;
  --cream: #FFFEF5;
  --white: #FFFFFF;
  --red: #C8102E;
  --red-bright: #E33D2A;

  /* System */
  --shadow-soft: 0 1px 2px rgba(10,10,10,0.04), 0 12px 32px rgba(10,10,10,0.06);
  --shadow-deep: 0 24px 64px rgba(10,10,10,0.18);
  --shadow-hard: 8px 8px 0 var(--black);
  --max: 1320px;
  --radius: 4px;
  --radius-pill: 100px;
}

/* ===================== RESET & BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 14;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; position: relative; }
@media (max-width: 700px) { .container { padding: 0 22px; } }

/* ===================== TOP STATUS STRIP ===================== */
.status {
  background: var(--black);
  color: var(--cream);
  padding: 10px 0;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-variation-settings: "opsz" 14;
}
.status .container { display: flex; justify-content: space-between; align-items: center; }
.status .live { display: flex; align-items: center; gap: 10px; }
.status .live::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--yellow-deep);
  border-radius: 50%;
  animation: ping 2s infinite;
}
@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 220, 47, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(245, 220, 47, 0); }
}
.status .live em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--yellow-deep);
  font-weight: 400;
  margin: 0 4px;
}
.status .lang { display: flex; gap: 2px; }
.status .lang a {
  color: var(--cream);
  text-decoration: none;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  opacity: 0.55;
  transition: all 150ms;
  font-weight: 500;
}
.status .lang a:hover { opacity: 0.85; }
.status .lang a.active {
  opacity: 1;
  background: var(--yellow-deep);
  color: var(--black);
}

/* ===================== NAV ===================== */
.nav {
  background: var(--black);
  border-bottom: 1px solid rgba(254,255,153,0.08);
  padding: 16px 0;
  position: sticky;
  top: 41px;
  z-index: 100;
}
.nav .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.brand-mark {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.brand-mark img {
  width: 52px; height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 24;
}
.brand-name small {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  color: var(--yellow-deep);
  margin-top: 2px;
  letter-spacing: 0;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-size: 14px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.005em;
  opacity: 0.75;
  transition: all 150ms;
}
.nav-links a:hover { opacity: 1; color: var(--yellow-deep); }
.nav-links a.active { opacity: 1; color: var(--yellow-deep); }
.nav-cta {
  background: var(--yellow-deep) !important;
  color: var(--black) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: all 200ms !important;
}
.nav-cta:hover { background: var(--yellow) !important; transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 8px 16px !important; font-size: 13px !important; }
}

/* ===================== TYPOGRAPHY ===================== */
.signature {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(34px, 4.5vw, 56px);
  color: var(--yellow-deep);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-eyebrow {
  font-size: 13px;
  color: var(--red);
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--red);
}

.section-title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  color: var(--black);
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 24px;
  max-width: 900px;
  font-variation-settings: "opsz" 96;
}
.section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--red);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 19px;
  color: var(--black);
  opacity: 0.7;
  max-width: 620px;
  margin-bottom: 60px;
  line-height: 1.5;
}

/* Body text inside content sections */
.prose p { margin-bottom: 1.2em; line-height: 1.65; font-size: 17px; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 2em 0 0.6em;
}
.prose h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}
.prose h3 {
  font-size: 24px;
  color: var(--black);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 1.6em 0 0.5em;
  line-height: 1.15;
}
.prose strong { font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.4em; }
.prose li { margin-bottom: 0.4em; line-height: 1.55; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:hover { color: var(--black); }
.prose blockquote {
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin: 1.5em 0;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--black);
  line-height: 1.4;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 200ms ease;
  cursor: pointer;
  border: none;
  font-variation-settings: "opsz" 18;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
  background: var(--yellow-deep);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(245, 220, 47, 0.4);
  animation: cta-pulse 2.6s infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 220, 47, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(245, 220, 47, 0); }
}
.btn-primary:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  animation: none;
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250, 247, 232, 0.3);
}
.btn-secondary:hover {
  border-color: var(--yellow-deep);
  color: var(--yellow-deep);
}
.btn-secondary-light {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-secondary-light:hover {
  background: var(--black);
  color: var(--cream);
}
.btn-outline-yellow {
  background: var(--yellow-deep);
  color: var(--black);
  border: none;
}
.btn-outline-yellow:hover { background: var(--yellow); transform: translateY(-2px); }

/* ===================== COUNTY BANNER (above hero) ===================== */
.county-banner {
  background: var(--yellow-deep);
  border-bottom: 3px solid var(--black);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
}
.county-banner::before,
.county-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background: repeating-linear-gradient(
    45deg,
    var(--black),
    var(--black) 5px,
    var(--yellow-deep) 5px,
    var(--yellow-deep) 10px
  );
}
.county-banner::before { left: 0; }
.county-banner::after { right: 0; }
.county-banner-inner {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 52px);
  letter-spacing: -0.01em;
  color: var(--black);
  text-align: center;
  line-height: 1.05;
}
@media (max-width: 600px) {
  .county-banner { padding: 12px 0; }
}

/* ===================== HERO (dark variant) ===================== */
.hero-dark {
  background: var(--black);
  color: var(--cream);
  padding: 50px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-dark::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245, 220, 47, 0.12), transparent 60%);
  pointer-events: none;
}
.hero-dark::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(254, 255, 153, 0.06), transparent 60%);
  pointer-events: none;
}
.hero-dark .container { position: relative; z-index: 2; }
.hero-dark .section-eyebrow { color: rgba(254, 255, 153, 0.7); }
.hero-dark .section-eyebrow::before { background: rgba(254, 255, 153, 0.3); }
.hero-dark .section-title { color: var(--cream); }
.hero-dark .section-title em { color: var(--yellow-deep); }
.hero-dark .section-sub { color: rgba(250, 247, 232, 0.78); opacity: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(254, 255, 153, 0.7);
  font-weight: 500;
  flex-wrap: wrap;
}
.hero-eyebrow .line { width: 32px; height: 1px; background: rgba(254, 255, 153, 0.3); }
.hero-eyebrow em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--yellow-deep);
  font-weight: 400;
  margin: 0 2px;
}

.hero-h1 {
  font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--cream);
  font-weight: 800;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 96;
}
.hero-h1 .yellow { color: var(--yellow-deep); }
.hero-h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--yellow-deep);
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(250, 247, 232, 0.78);
  max-width: 540px;
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-sub strong { color: var(--cream); font-weight: 600; }

.hero-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: rgba(250, 247, 232, 0.55);
  letter-spacing: 0.01em;
  flex-wrap: wrap;
}
.hero-meta .pill {
  padding: 4px 12px;
  border: 1px solid rgba(250, 247, 232, 0.18);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

/* ===================== HERO (light variant for inner pages) ===================== */
.hero-light {
  background: var(--yellow);
  padding: 90px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-light::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.04), transparent 60%);
  pointer-events: none;
}
.hero-light .container { position: relative; z-index: 2; }
.hero-light .hero-h1 {
  color: var(--black);
  font-size: clamp(48px, 8vw, 120px);
  margin-bottom: 28px;
}
.hero-light .hero-h1 .yellow { color: var(--red); }
.hero-light .hero-h1 em { color: var(--red); }
.hero-light .hero-sub { color: var(--black); opacity: 0.8; }
.hero-light .hero-sub strong { color: var(--black); opacity: 1; }
.hero-light .hero-eyebrow { color: var(--black); opacity: 0.7; }
.hero-light .hero-eyebrow em { color: var(--red); }
.hero-light .hero-eyebrow .line { background: rgba(10, 10, 10, 0.3); }

/* ===================== HERO BULLDOG ===================== */
.bulldog-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bulldog-block::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  background: var(--yellow-deep);
  border-radius: 50%;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.25;
}
.bulldog-block img {
  width: 100%; max-width: 460px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 60px rgba(245, 220, 47, 0.3));
}
.bulldog-info {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--black);
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-deep);
  white-space: nowrap;
}
.bulldog-info .number {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}
.bulldog-info .number a { color: var(--black); text-decoration: none; }
.bulldog-info .label {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0;
}

/* ===================== MARQUEE ===================== */
.marquee {
  background: var(--yellow-deep);
  color: var(--black);
  padding: 18px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  display: flex; align-items: center; gap: 60px;
}
.marquee-item::after { content: '★'; color: var(--black); font-size: 14px; }
.marquee-item em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}

/* ===================== CTAs ROW ===================== */
.cta-group {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 20px;
}

/* ===================== STATS BLOCK ===================== */
.stats { background: var(--yellow); padding: 100px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; } }
@media (max-width: 500px) { .stats-grid { grid-template-columns: 1fr; gap: 36px; } }
.stat-block {
  border-top: 2px solid var(--black);
  padding-top: 22px;
  transition: transform 250ms ease;
}
.stat-block:hover { transform: translateY(-4px); }
.stat-block .num {
  font-size: clamp(56px, 7vw, 88px);
  color: var(--black);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 800;
  font-variation-settings: "opsz" 96;
}
.stat-block .num em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--red);
  font-weight: 400;
  font-size: 0.7em;
  letter-spacing: -0.02em;
}
.stat-block .lbl {
  font-size: 14px;
  color: var(--black);
  margin-top: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  opacity: 0.7;
}

/* ===================== STEPS ===================== */
.steps { background: var(--yellow-warm); padding: 120px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  background: var(--cream);
  padding: 48px 38px;
  transition: background 300ms ease;
  position: relative;
}
.step:hover { background: var(--yellow); }
.step .num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--red);
  margin-bottom: 24px;
  font-weight: 400;
}
.step h3 {
  font-size: 32px;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.05;
  font-variation-settings: "opsz" 36;
}
.step p {
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
  opacity: 0.7;
}

/* ===================== COUNTIES (dark) ===================== */
.counties { background: var(--black); color: var(--cream); padding: 120px 0; }
.counties .section-eyebrow { color: var(--yellow-deep); }
.counties .section-eyebrow::before { background: var(--yellow-deep); }
.counties .section-title { color: var(--cream); }
.counties .section-title em { color: var(--yellow-deep); }
.counties .section-sub { color: rgba(250, 247, 232, 0.65); opacity: 1; }

.counties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 800px) { .counties-grid { grid-template-columns: 1fr; } }
.county {
  background: rgba(254, 255, 153, 0.04);
  border: 1px solid rgba(254, 255, 153, 0.12);
  border-radius: 8px;
  padding: 36px 30px;
  text-decoration: none;
  color: var(--cream);
  display: block;
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
}
.county::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--yellow-deep);
  transition: width 400ms ease;
}
.county:hover {
  background: rgba(254, 255, 153, 0.08);
  border-color: var(--yellow-deep);
  transform: translateY(-4px);
}
.county:hover::after { width: 100%; }
.county .label {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--yellow-deep);
  margin-bottom: 16px;
  font-weight: 400;
}
.county h3 {
  font-size: 36px;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  font-weight: 700;
  font-variation-settings: "opsz" 36;
}
.county .cities {
  font-size: 14px;
  color: rgba(250, 247, 232, 0.5);
  margin-bottom: 22px;
  font-weight: 500;
}
.county p {
  font-size: 15px;
  color: rgba(250, 247, 232, 0.75);
  line-height: 1.6;
  margin-bottom: 26px;
}
.county .arrow {
  font-size: 14px;
  color: var(--yellow-deep);
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: gap 250ms;
}
.county:hover .arrow { gap: 12px; }

/* ===================== CLOSING CTA ===================== */
.closing {
  background: var(--yellow);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.06), transparent 60%);
  pointer-events: none;
}
.closing .container { position: relative; z-index: 2; }
.closing h2 {
  font-size: clamp(64px, 12vw, 200px);
  line-height: 0.85;
  color: var(--black);
  letter-spacing: -0.07em;
  font-weight: 800;
  margin-bottom: 60px;
  font-variation-settings: "opsz" 144;
}
.closing h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--red);
  font-weight: 400;
  letter-spacing: -0.03em;
}
.closing .closing-signature {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(34px, 4.5vw, 56px);
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.closing-phone-block {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.closing-phone {
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--black);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color 200ms;
  font-variation-settings: "opsz" 96;
}
.closing-phone:hover { color: var(--red); }
.closing-phone-info {
  border-left: 2px solid var(--black);
  padding-left: 20px;
}
.closing-phone-info .top {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--red);
  margin-bottom: 4px;
}
.closing-phone-info .bottom {
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.closing-meta {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  max-width: 720px;
}
.closing-meta-item {
  font-size: 13px;
  color: var(--black);
  opacity: 0.7;
  display: flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.closing-meta-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(254, 255, 153, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.footer-brand img {
  width: 48px; height: 48px;
  filter: brightness(0) invert(1);
}
.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.footer-brand-name small {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  color: var(--yellow-deep);
  margin-top: 2px;
}
.footer-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--yellow-deep);
  margin-bottom: 14px;
}
.footer p { color: rgba(250, 247, 232, 0.65); font-size: 14px; line-height: 1.6; }
.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow-deep);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(250, 247, 232, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 150ms;
}
.footer ul a:hover { color: var(--yellow-deep); }
.footer-credentials {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 20px;
}
.footer-credentials .badge {
  background: rgba(254, 255, 153, 0.08);
  border: 1px solid rgba(254, 255, 153, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--yellow-deep);
  text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid rgba(254, 255, 153, 0.1);
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 13px;
  color: rgba(250, 247, 232, 0.5);
}
.footer-bottom a { color: rgba(250, 247, 232, 0.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow-deep); }

/* ===================== STICKY MOBILE CALL BAR ===================== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  color: var(--yellow-deep);
  padding: 14px 20px max(14px, env(safe-area-inset-bottom));
  z-index: 200;
  border-top: 2px solid var(--yellow-deep);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.2);
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--yellow-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.mobile-call-bar a svg { width: 20px; height: 20px; }
@media (max-width: 700px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 70px; }
}

/* ===================== UTILITY CLASSES ===================== */
.section { padding: 100px 0; }
.section-light { background: var(--cream); padding: 100px 0; }
.section-yellow { background: var(--yellow); padding: 100px 0; }
.section-warm { background: var(--yellow-warm); padding: 100px 0; }
.section-dark { background: var(--black); color: var(--cream); padding: 100px 0; }
.section-dark .section-title { color: var(--cream); }
.section-dark .section-title em { color: var(--yellow-deep); }
.section-dark .section-sub { color: rgba(250, 247, 232, 0.7); opacity: 1; }
.section-dark .section-eyebrow { color: var(--yellow-deep); }
.section-dark .section-eyebrow::before { background: var(--yellow-deep); }
.section-dark .prose { color: rgba(250, 247, 232, 0.85); }
.section-dark .prose h2, .section-dark .prose h3 { color: var(--cream); }
.section-dark .prose strong { color: var(--cream); }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 1000px) { .grid-2 { grid-template-columns: 1fr; gap: 50px; } }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) { .grid-3 { grid-template-columns: 1fr; } }

/* Card */
.card {
  background: var(--cream);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius);
  padding: 36px;
}
.card-yellow {
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 36px;
}
.card-dark {
  background: rgba(254, 255, 153, 0.04);
  border: 1px solid rgba(254, 255, 153, 0.12);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--cream);
}

/* FAQ accordion */
.faq-item {
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(10, 10, 10, 0.12); }
.faq-item summary {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  color: var(--red);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 200ms;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.8;
}
.faq-item .answer p { margin-bottom: 1em; }
.faq-item .answer p:last-child { margin-bottom: 0; }
.faq-item .answer a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

/* Pricing table */
.pricing-card {
  background: var(--cream);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
}
.pricing-card.featured {
  background: var(--black);
  color: var(--cream);
}
.pricing-card.featured h3 { color: var(--cream); }
.pricing-card.featured .price { color: var(--yellow-deep); }
.pricing-card .label {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--red);
  margin-bottom: 14px;
}
.pricing-card.featured .label { color: var(--yellow-deep); }
.pricing-card h3 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1;
}
.pricing-card .price {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 18px 0;
  color: var(--black);
}
.pricing-card .price em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  color: var(--red);
}
.pricing-card ul { list-style: none; margin: 24px 0; }
.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  font-size: 15px;
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-card.featured li { border-bottom-color: rgba(254, 255, 153, 0.15); }
.pricing-card li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card.featured li::before { color: var(--yellow-deep); }

/* Text utilities */
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow-deep); }
.italic-accent {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

/* Print: hide demo elements */
@media print {
  .mobile-call-bar, .nav-cta { display: none; }
}
