:root {
  --site-primary: #b93e5e;
  --site-primary-light: #e99496;
  --site-primary-dark: #9b0030;
  --site-secondary: #e37f00;
  --site-accent: #0076e7;
  --site-surface: #fff9ec;
  --site-text-secondary: #704d50;
  --bs-body-bg: #ffefeb;
  --bs-body-color: #251014;
  --bs-body-font-family: 'Public Sans', sans-serif;
  --bs-link-color: #b93e5e;
  --bs-link-hover-color: #9b0030;
}

body {
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Public Sans', serif;
  font-weight: 700;
}

a { color: var(--site-primary); }
a:hover { color: var(--site-primary-dark); }

.btn-primary {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--site-primary-dark);
  border-color: var(--site-primary-dark);
  color: #fff;
}
.btn-outline-primary {
  color: var(--site-primary);
  border-color: var(--site-primary);
  background-color: transparent;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}
.bg-primary { background-color: var(--site-primary) !important; }
.text-primary { color: var(--site-primary) !important; }
.border-primary { border-color: var(--site-primary) !important; }

/* Shape rules: buttons/forms/cards/images */
.btn {
  border-radius: 8px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
  border-width: 1.5px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.card {
  border-radius: 12px;
  border: 1px solid rgba(185, 62, 94, 0.15);
  box-shadow: 0 8px 24px rgba(185, 62, 94, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(185, 62, 94, 0.18);
  transform: translateY(-3px);
}

.form-control, .form-select {
  border-radius: 5px;
  border: 1.5px solid rgba(185, 62, 94, 0.25);
}
.form-control:focus, .form-select:focus {
  border-color: var(--site-primary);
  box-shadow: 0 0 0 0.2rem rgba(185, 62, 94, 0.15);
}

img { border-radius: 8px; }

/* Distinctive border accent style */
.accent-border-left {
  border-left: 4px solid var(--site-secondary);
  padding-left: 1.25rem;
}
.accent-border-top {
  border-top: 3px solid var(--site-primary);
}
.stat-band {
  border-top: 1px solid rgba(185, 62, 94, 0.2);
  border-bottom: 1px solid rgba(185, 62, 94, 0.2);
}
.niche-tile {
  border: 1px solid rgba(185, 62, 94, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(185, 62, 94, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.niche-tile:hover {
  border-color: var(--site-primary);
  transform: translateY(-3px);
}

/* Nav */
.navbar {
  border-bottom: 1px solid rgba(185, 62, 94, 0.12);
}
.navbar-brand span {
  font-family: 'Public Sans', serif;
  font-weight: 700;
}
.nav-link {
  transition: color 0.15s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--site-secondary);
  transition: width 0.2s ease;
}
.nav-link:hover::after { width: 100%; }

/* Footer */
footer a { color: var(--site-text-secondary); text-decoration: none; }
footer a:hover { color: var(--site-primary); }
footer .newsletter-form .form-control { border-radius: 5px; }

/* Micro-interactions */
.link-underline {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.link-underline:hover { border-bottom-color: currentColor; }

/* Cookie banner */
#cookieBanner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--site-surface);
  border-top: 2px solid var(--site-primary);
  box-shadow: 0 -8px 24px rgba(185, 62, 94, 0.15);
  z-index: 1050;
  display: none;
}
#cookieBanner.show { display: block; }

.section-py { padding-top: 5.5rem; padding-bottom: 5.5rem; }

/* Utility classes replacing inline styles */
.bg-surface { background-color: var(--site-surface); }
.text-muted-brand { color: var(--site-text-secondary); }
.max-w-34 { max-width: 34rem; }
.max-w-36 { max-width: 36rem; }
.max-w-38 { max-width: 38rem; }
.max-w-40 { max-width: 40rem; }
.max-w-42 { max-width: 42rem; }
.newsletter-input { max-width: 16rem; }
.footer-divider { border-color: rgba(185, 62, 94, 0.15); }
.img-shadow { box-shadow: 0 8px 24px rgba(185, 62, 94, 0.15); }
.map-frame { border: 0; box-shadow: 0 8px 24px rgba(185, 62, 94, 0.12); }

@media (max-width: 767.98px) {
  .section-py { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}
