/* ==========================================================================
   Ron McLaughlin - Custom CSS with Burgundy Branding
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Burgundy Color Scheme
   -------------------------------------------------------------------------- */
:root {
  --rm-burgundy: #962e39;
  --rm-burgundy-hover: #7a2530;
  --rm-dark-gray: #333333;
  --rm-darker-gray: #222222;
  --rm-medium-gray: #666666;
  --rm-light-gray: #f5f5f5;
  --rm-white: #ffffff;
  --rm-black: #000000;

  /* Typography */
  --rm-font-heading: 'Open Sans', sans-serif;
  --rm-font-body: 'Open Sans', sans-serif;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--rm-font-heading);
  font-weight: 600;
  color: var(--rm-black);
}

body {
  font-family: var(--rm-font-body);
  font-size: 16px;
  line-height: 1.7em;
  font-weight: 400;
  color: var(--rm-black);
}

/* --------------------------------------------------------------------------
   Custom Header - Logo Left, Nav Inline Right
   -------------------------------------------------------------------------- */
.rm-header {
  background-color: var(--rm-white);
  padding: 0;
  border-bottom: 1px solid #d0d0d0;
}

.rm-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2px 30px;
}

/* Logo Section - Left */
.rm-header-logo {
  display: flex;
  align-items: center;
}

.rm-header-logo a {
  display: inline-block;
}

.rm-header-logo img {
  height: 60px;
  width: auto;
}

/* Navigation - Inline Right */
.rm-nav-inline {
  display: flex;
  align-items: center;
  gap: 25px;
}

.rm-nav-inline a {
  color: var(--rm-dark-gray);
  text-decoration: none;
  font-family: var(--rm-font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.rm-nav-inline a:hover,
.rm-nav-inline a.active {
  color: var(--rm-burgundy);
}

/* Legacy centered nav for backward compatibility */
.rm-nav-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 15px 30px;
  background-color: #e8e8e8;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  width: 100%;
}

.rm-nav-centered a {
  color: var(--rm-dark-gray);
  text-decoration: none;
  font-family: var(--rm-font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.rm-nav-centered a:hover,
.rm-nav-centered a.active {
  color: var(--rm-burgundy);
}

/* Legacy nav wrapper for backward compatibility */
.rm-header-nav-wrapper {
  background-color: var(--rm-dark-gray);
  padding: 12px 0;
}

.rm-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.rm-nav a {
  color: var(--rm-white);
  text-decoration: none;
  font-family: var(--rm-font-heading);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.rm-nav a:hover,
.rm-nav a.active {
  color: var(--rm-burgundy);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.rm-hero {
  padding: 50px 0;
  background-color: var(--rm-light-gray);
}

.rm-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.rm-hero-container h1 {
  font-size: 36px;
  color: var(--rm-black);
  margin-bottom: 15px;
  line-height: 1.3;
}

.rm-hero-tagline {
  font-size: 18px;
  color: var(--rm-burgundy);
  font-weight: 600;
  margin-bottom: 20px;
}

.rm-hero-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rm-medium-gray);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Manufacturer Logo Grid (4-column responsive)
   -------------------------------------------------------------------------- */
.rm-manufacturers {
  padding: 60px 0;
  background-color: var(--rm-white);
}

.rm-manufacturers h2 {
  text-align: center;
  font-size: 36px;
  color: var(--rm-black);
  margin-bottom: 20px;
}

.rm-manufacturers h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--rm-burgundy);
  margin: 20px auto 40px;
}

.rm-manufacturer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.rm-manufacturer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--rm-light-gray);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.rm-manufacturer-item:hover {
  border-color: var(--rm-burgundy);
  box-shadow: 0 4px 12px rgba(150, 46, 57, 0.15);
}

.rm-manufacturer-item img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.rm-manufacturer-item:hover img {
  filter: grayscale(0%);
}

/* Manufacturers Page */
.rm-manufacturers-page {
  padding: 40px 0 0;
}

.rm-page-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 40px 20px;
  background-color: var(--rm-light-gray);
}

.rm-page-header h1 {
  font-size: 32px;
  color: var(--rm-black);
  margin-bottom: 15px;
}

.rm-page-header p {
  font-size: 18px;
  color: var(--rm-burgundy);
  font-weight: 500;
  margin: 0;
}

/* Manufacturers Grid - 3 Column */
.rm-manufacturers-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 30px auto 0;
  padding-bottom: 60px;
}

.rm-manufacturers-grid-3col .rm-manufacturer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: var(--rm-white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
  min-height: 120px;
}

.rm-manufacturers-grid-3col .rm-manufacturer-item:hover {
  border-color: var(--rm-burgundy);
  box-shadow: 0 4px 12px rgba(150, 46, 57, 0.15);
}

.rm-manufacturers-grid-3col .rm-manufacturer-item img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  filter: none;
}

a.rm-manufacturer-item {
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .rm-manufacturers-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .rm-manufacturers-grid-3col {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Contact Section (Two-Column Layout)
   -------------------------------------------------------------------------- */
.rm-contact-section {
  padding: 60px 0;
  background-color: var(--rm-white);
}

.rm-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.rm-contact-info h2,
.rm-contact-form h2 {
  font-size: 28px;
  color: var(--rm-black);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.rm-contact-info h2::after,
.rm-contact-form h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--rm-burgundy);
}

.rm-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.rm-contact-item-icon {
  color: var(--rm-burgundy);
  font-size: 20px;
  margin-top: 3px;
}

.rm-contact-item h4 {
  font-size: 14px;
  color: var(--rm-black);
  margin-top: 0;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 600;
}

.rm-contact-item p,
.rm-contact-item a {
  font-size: 16px;
  color: var(--rm-medium-gray);
  line-height: 1.6;
}

.rm-contact-item a {
  color: var(--rm-burgundy);
  text-decoration: none;
}

.rm-contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form Styles */
.rm-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rm-contact-form input,
.rm-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--rm-font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.rm-contact-form input:focus,
.rm-contact-form textarea:focus {
  outline: none;
  border-color: var(--rm-burgundy);
}

.rm-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* --------------------------------------------------------------------------
   Contact Page - New Layout
   -------------------------------------------------------------------------- */
.rm-contact-page {
  padding: 40px 0 60px;
}

.rm-contact-page h2 {
  font-size: 24px;
  color: var(--rm-black);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--rm-burgundy);
  display: inline-block;
}

/* Team Grid - 3 Columns */
.rm-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.rm-team-card {
  background-color: var(--rm-light-gray);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.rm-team-card h3 {
  font-size: 20px;
  color: var(--rm-black);
  margin-bottom: 5px;
}

.rm-team-title {
  font-size: 14px;
  color: var(--rm-burgundy);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.rm-team-contact p {
  margin: 8px 0;
  font-size: 15px;
}

.rm-team-contact a {
  color: var(--rm-medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.rm-team-contact a:hover {
  color: var(--rm-burgundy);
}

.rm-label {
  font-size: 11px;
  color: var(--rm-medium-gray);
  text-transform: uppercase;
  margin-left: 5px;
}

/* Location Grid - 2 Columns */
.rm-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 700px;
}

.rm-location-card {
  background-color: var(--rm-white);
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-left: 4px solid var(--rm-burgundy);
}

.rm-location-card h3 {
  font-size: 16px;
  color: var(--rm-black);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.rm-location-card p {
  font-size: 15px;
  color: var(--rm-medium-gray);
  line-height: 1.6;
  margin: 0;
}

/* Contact Page - Two Column Layout */
.rm-contact-two-col {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

.rm-contact-left h2,
.rm-contact-right h2 {
  font-size: 24px;
  color: var(--rm-black);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--rm-burgundy);
  display: inline-block;
}

.rm-contact-details {
  background-color: var(--rm-light-gray);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.rm-contact-details p {
  font-size: 16px;
  margin: 12px 0;
  color: var(--rm-dark-gray);
}

.rm-contact-details p:first-child {
  margin-top: 0;
}

.rm-contact-details p:last-child {
  margin-bottom: 0;
}

.rm-contact-details a {
  color: var(--rm-burgundy);
  text-decoration: none;
}

.rm-contact-details a:hover {
  text-decoration: underline;
}

.rm-contact-form-container {
  background-color: var(--rm-light-gray);
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.rm-contact-form-container iframe {
  display: block;
  border: none;
}

@media (max-width: 768px) {
  .rm-contact-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .rm-team-grid {
    grid-template-columns: 1fr;
  }

  .rm-location-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Custom Footer (Horizontal Link List)
   -------------------------------------------------------------------------- */
.rm-footer {
  background-color: var(--rm-darker-gray);
  padding: 10px 0;
  color: var(--rm-white);
}

.rm-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.rm-footer-copyright {
  text-align: center;
}

.rm-footer-copyright p {
  margin: 0;
  font-size: 14px;
}

.rm-footer-company {
  text-align: center;
  margin-bottom: 25px;
}

.rm-footer-company h4 {
  font-size: 20px;
  color: var(--rm-burgundy);
  margin-bottom: 10px;
  font-weight: 600;
}

.rm-footer-company p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 8px;
}

.rm-footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.rm-footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.rm-footer-nav a:hover {
  color: var(--rm-burgundy);
}

.rm-footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.rm-footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Buttons - Burgundy Variants
   -------------------------------------------------------------------------- */
.rm-btn {
  display: inline-block;
  background-color: transparent;
  color: var(--rm-burgundy) !important;
  padding: 12px 35px;
  font-family: var(--rm-font-heading);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--rm-burgundy);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rm-btn:hover {
  background-color: var(--rm-burgundy);
  border-color: var(--rm-burgundy);
  color: var(--rm-white) !important;
}

.rm-btn-filled {
  background-color: var(--rm-burgundy);
  color: var(--rm-white) !important;
  border: 2px solid var(--rm-burgundy);
}

.rm-btn-filled:hover {
  background-color: var(--rm-burgundy-hover);
  border-color: var(--rm-burgundy-hover);
}

/* --------------------------------------------------------------------------
   Page Title
   -------------------------------------------------------------------------- */
.rm-page-title {
  text-align: center;
  padding: 60px 0;
  background-color: var(--rm-light-gray);
}

.rm-page-title h1 {
  font-size: 42px;
  color: var(--rm-black);
  margin-bottom: 10px;
}

.rm-page-title h1::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--rm-burgundy);
  margin: 20px auto;
}

/* --------------------------------------------------------------------------
   Content Sections
   -------------------------------------------------------------------------- */
.rm-section {
  padding: 60px 0;
}

.rm-section-alt {
  background-color: var(--rm-light-gray);
}

.rm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --------------------------------------------------------------------------
   Products/Services Grid
   -------------------------------------------------------------------------- */
.rm-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.rm-product-item {
  background-color: var(--rm-white);
  padding: 30px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.rm-product-item:hover {
  border-color: var(--rm-burgundy);
  box-shadow: 0 4px 12px rgba(150, 46, 57, 0.15);
}

.rm-product-item h3 {
  font-size: 22px;
  color: var(--rm-black);
  margin-bottom: 15px;
  font-weight: 600;
}

.rm-product-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--rm-medium-gray);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.rm-about {
  padding: 60px 0;
  background-color: var(--rm-white);
}

.rm-about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.rm-about h2 {
  font-size: 36px;
  color: var(--rm-black);
  margin-bottom: 20px;
}

.rm-about h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--rm-burgundy);
  margin: 20px 0;
}

.rm-about p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rm-medium-gray);
  margin-bottom: 15px;
}

.rm-about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Two Column Layout
   -------------------------------------------------------------------------- */
.rm-two-col {
  padding: 60px 0;
  background-color: var(--rm-white);
}

.rm-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.rm-two-col-left h2,
.rm-two-col-right h2 {
  font-size: 28px;
  color: var(--rm-black);
  margin-bottom: 20px;
}

.rm-two-col-left h2::after,
.rm-two-col-right h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--rm-burgundy);
  margin: 15px 0;
}

.rm-two-col-right h3 {
  font-size: 22px;
  color: var(--rm-black);
  margin-top: 30px;
  margin-bottom: 15px;
}

.rm-two-col-right p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rm-medium-gray);
}

/* Value Props List */
.rm-value-props {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.rm-value-props li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rm-medium-gray);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.rm-value-props li::before {
  content: "•";
  color: var(--rm-burgundy);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Three Pillars */
.rm-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rm-pillar h3 {
  font-size: 18px;
  color: var(--rm-burgundy);
  margin-bottom: 5px;
  margin-top: 0;
}

.rm-pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--rm-medium-gray);
  margin: 0;
}

/* Serve List */
.rm-serve-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rm-serve-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rm-medium-gray);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.rm-serve-list li::before {
  content: "•";
  color: var(--rm-burgundy);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive - Stack on mobile */
@media (max-width: 768px) {
  .rm-two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.rm-cta {
  background-color: var(--rm-burgundy);
  padding: 60px 0;
  text-align: center;
}

.rm-cta h2 {
  font-size: 36px;
  color: var(--rm-white);
  margin-bottom: 20px;
}

.rm-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rm-cta-btn {
  display: inline-block;
  background-color: var(--rm-white);
  color: var(--rm-burgundy) !important;
  border: 2px solid var(--rm-white);
  padding: 12px 40px;
  font-family: var(--rm-font-heading);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.rm-cta-btn:hover {
  background-color: transparent;
  border-color: var(--rm-white);
  color: var(--rm-white) !important;
}

/* --------------------------------------------------------------------------
   Testimonial Section
   -------------------------------------------------------------------------- */
.rm-testimonial {
  padding: 60px 0;
  background-color: var(--rm-light-gray);
  text-align: center;
}

.rm-testimonial h2 {
  font-size: 36px;
  color: var(--rm-black);
  margin-bottom: 10px;
}

.rm-testimonial h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--rm-burgundy);
  margin: 20px auto 40px;
}

.rm-testimonial-quote {
  font-style: italic;
  font-size: 20px;
  color: var(--rm-medium-gray);
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.rm-testimonial-author {
  font-family: var(--rm-font-heading);
  font-size: 16px;
  color: var(--rm-black);
  font-weight: 600;
}

.rm-testimonial-company {
  font-size: 14px;
  color: var(--rm-medium-gray);
  margin-top: 5px;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .rm-hero-container,
  .rm-about-container,
  .rm-contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rm-manufacturer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rm-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rm-header-logo img {
    height: 70px;
  }

  .rm-nav-centered {
    flex-wrap: wrap;
    gap: 15px 20px;
    padding: 12px 20px;
  }

  .rm-nav-centered a {
    font-size: 13px;
  }

  .rm-logo {
    justify-self: center;
    grid-column: 1;
  }

  .rm-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
  }

  .rm-manufacturer-grid {
    grid-template-columns: 1fr;
  }

  .rm-products-grid {
    grid-template-columns: 1fr;
  }

  .rm-hero-content h1,
  .rm-about h2,
  .rm-manufacturers h2,
  .rm-cta h2,
  .rm-testimonial h2 {
    font-size: 32px;
  }

  .rm-page-title h1 {
    font-size: 36px;
  }

  .rm-footer-nav {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .rm-hero-content h1 {
    font-size: 28px;
  }

  .rm-page-title h1 {
    font-size: 28px;
  }

  .rm-container {
    padding: 0 20px;
  }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.rm-text-center {
  text-align: center;
}

.rm-text-burgundy {
  color: var(--rm-burgundy);
}

.rm-bg-gray {
  background-color: var(--rm-light-gray);
}

.rm-bg-dark {
  background-color: var(--rm-darker-gray);
}

.rm-bg-burgundy {
  background-color: var(--rm-burgundy);
}

.rm-mb-0 { margin-bottom: 0; }
.rm-mb-1 { margin-bottom: 10px; }
.rm-mb-2 { margin-bottom: 20px; }
.rm-mb-3 { margin-bottom: 30px; }
.rm-mb-4 { margin-bottom: 40px; }

.rm-mt-0 { margin-top: 0; }
.rm-mt-1 { margin-top: 10px; }
.rm-mt-2 { margin-top: 20px; }
.rm-mt-3 { margin-top: 30px; }
.rm-mt-4 { margin-top: 40px; }

/* --------------------------------------------------------------------------
   Accessibility - Skip Navigation Link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--rm-burgundy);
  color: var(--rm-white);
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--rm-white);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Accessibility - Focus States
   -------------------------------------------------------------------------- */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--rm-burgundy);
  outline-offset: 2px;
}

/* Navigation focus - ensure visible on both light and dark backgrounds */
.rm-nav-inline a:focus {
  outline: 2px solid var(--rm-burgundy);
  outline-offset: 2px;
  border-radius: 2px;
}

.rm-footer-nav a:focus {
  outline: 2px solid var(--rm-white);
  outline-offset: 2px;
}

/* Button focus states */
.rm-btn:focus,
.rm-btn-filled:focus,
.rm-cta-btn:focus {
  outline: 2px solid var(--rm-burgundy);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Accessibility - Screen Reader Only Text
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
