:root {
  --rgc-primary: #c41a20;
  --rgc-primary-hover: #a1161b;
  --rgc-dark: #111111;
  --rgc-text: #2d2d2d;
  --rgc-secondary-bg: #f7f5f1;
  --rgc-tertiary-bg: #efe9df;
  --rgc-border: #e3ded7;
  --rgc-white: #ffffff;
  --bs-body-font-family: "Inter", system-ui, sans-serif;
  --bs-body-font-size: 1.125rem;
  --bs-body-line-height: 1.7;
  --bs-body-color: var(--rgc-text);
  --bs-body-bg: var(--rgc-white);
  --bs-border-radius: 0.5rem;
  --bs-btn-border-radius: 0.5rem;
  --bs-btn-font-weight: 600;
  --bs-btn-padding-y: 0.85rem;
  --bs-btn-padding-x: 1.75rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--rgc-border);
  --bs-heading-color: var(--rgc-dark);
  --bs-link-color: var(--rgc-primary);
  --bs-link-hover-color: var(--rgc-primary-hover);
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background: var(--bs-secondary-bg);
  margin: 0;
  min-height: 100vh;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--bs-heading-color);
}

h2 {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--rg-text);
}

a {
  color: var(--bs-link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--bs-link-hover-color);
  text-decoration: underline;
}

.rgc-form-control, .rgc-form-control:focus-visible, textarea, textarea:focus-visible {
  height: 56px;
  min-height: 56px;
  border-radius: 8px;
  border: 1px solid var(--rgc-border);
  padding: 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--rgc-white);
}

textarea {
  padding-top: 1rem;
  padding-bottom: 1rem;
  min-height: 140px;
  height: auto;
}

.btn, button {
  font-family: inherit;
}

.hero-title, .hero-subtitle, .section-title, .section-subtitle {
  display: block;
}

.section-title {
  margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 1rem;
  }
}

/* ====================
   NAVBAR Overrides
   ==================== */

.navbar-nav .nav-link {
  color: #2d2d2d !important;
}

.navbar-nav .nav-link:hover {
  color: #c41a20 !important;
}

.navbar-brand {
  color: #111111 !important;
}

.navbar-brand:hover {
  color: #c41a20 !important;
}

