:root {
  --rh-primary: #ef4d48;
  --rh-primary-dark: #d90700;
  --rh-heading: #2b161b;
  --rh-text: #453e3e;
  --rh-bg-soft: #f7f3f5;
  --rh-bg-header: #e8f3f9;
  --rh-white: #ffffff;
  --rh-border: #dddddd;
  --rh-max-width: 1263px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--rh-text);
  background: var(--rh-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--rh-heading);
  line-height: 1.3em;
  margin: 0 0 0.6em;
}

a { color: var(--rh-primary); text-decoration: none; }
a:hover { color: var(--rh-primary-dark); }

img { max-width: 100%; display: block; }

.rh-container {
  max-width: var(--rh-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.rh-header {
  background: var(--rh-bg-header);
  border-bottom: 1px solid #eaeaea;
}
.rh-header-inner {
  max-width: var(--rh-max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rh-logo img { width: 140px; }
.rh-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.rh-nav a {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  text-transform: none;
}
.rh-nav a:hover,
.rh-nav a.is-active { color: var(--rh-primary); }
.rh-cta-btn {
  background: var(--rh-primary);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.rh-cta-btn:hover { background: var(--rh-primary-dark); }
.rh-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--rh-primary);
  cursor: pointer;
}

/* ---------- Nav dropdowns (About Us / Services) ---------- */
.rh-nav-dropdown {
  position: relative;
}
.rh-nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  padding: 0;
}
.rh-nav-dropdown-toggle:hover,
.rh-nav-dropdown.is-open .rh-nav-dropdown-toggle {
  color: var(--rh-primary);
}
.rh-caret {
  font-size: 10px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.rh-nav-dropdown.is-open .rh-caret { transform: rotate(180deg); }
.rh-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  background: var(--rh-white);
  border: 1px solid var(--rh-border);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 30;
}
.rh-nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
}
.rh-nav-dropdown-menu a:hover {
  color: var(--rh-primary);
  background: var(--rh-bg-soft);
}

@media (min-width: 861px) {
  .rh-nav-dropdown:hover .rh-nav-dropdown-menu,
  .rh-nav-dropdown.is-open .rh-nav-dropdown-menu {
    display: block;
  }
}

@media (max-width: 860px) {
  .rh-nav { display: none; flex-direction: column; align-items: flex-start; gap: 14px;
    position: absolute; top: 100%; left: 0; right: 0; background: #f9f9f9;
    padding: 20px; border-top: 1px solid var(--rh-border); max-height: 80vh; overflow-y: auto; }
  .rh-nav.is-open { display: flex; }
  .rh-header-inner { position: relative; flex-wrap: wrap; }
  .rh-menu-toggle { display: block; }

  .rh-nav-dropdown { width: 100%; }
  .rh-nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 4px 0; }
  .rh-nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--rh-border);
    border-radius: 0;
    margin-top: 8px;
    padding: 0 0 0 14px;
    min-width: 0;
  }
  .rh-nav-dropdown.is-open .rh-nav-dropdown-menu { display: block; }
  .rh-nav-dropdown-menu a { padding: 8px 0; }
}

/* ---------- Blog listing ---------- */
.rh-blog-hero {
  background: #eeeeee;
  padding: 3em 0;
  text-align: left;
}
.rh-blog-hero h1 { font-size: 2.4rem; margin-bottom: 0.3em; }
.rh-blog-hero p { max-width: 700px; color: var(--rh-text); }

.rh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 3em 0;
}
@media (max-width: 900px) { .rh-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .rh-blog-grid { grid-template-columns: 1fr; } }

.rh-blog-card {
  background: var(--rh-white);
  border: 1px solid var(--rh-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rh-blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.rh-blog-card-thumb {
  aspect-ratio: 16/9;
  background: var(--rh-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rh-text);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
}
.rh-blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rh-blog-card-body { padding: 20px 22px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.rh-blog-card-date { font-size: 12px; color: var(--rh-primary); font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.rh-blog-card-title { font-size: 1.15rem; margin-bottom: 10px; }
.rh-blog-card-excerpt { font-size: 14px; color: var(--rh-text); flex-grow: 1; margin-bottom: 16px; }
.rh-blog-card-link { font-weight: 700; font-size: 14px; }
.rh-blog-card-link::after { content: " \2192"; }

/* ---------- Article page ---------- */
.rh-article-hero {
  background: #eeeeee;
  padding: 3em 0 2.5em;
}
.rh-article-hero .rh-breadcrumb { font-size: 13px; margin-bottom: 14px; }
.rh-article-hero .rh-breadcrumb a { color: var(--rh-text); }
.rh-article-hero h1 { font-size: 2.1rem; max-width: 820px; }
.rh-article-meta { font-size: 13px; color: var(--rh-primary); font-weight: 700; margin-top: 10px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Featured image banner */
.rh-featured-image {
  width: 100%;
  max-height: 460px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rh-primary), var(--rh-primary-dark));
}
.rh-featured-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.rh-featured-image.is-placeholder {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 20px;
}

/* Two-column article layout: content + sticky sidebar */
.rh-article-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3em 20px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 340px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .rh-article-layout { grid-template-columns: 1fr; max-width: 780px; }
}

.rh-article-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rh-sidebar-card {
  background: var(--rh-bg-header);
  border-radius: 14px;
  padding: 24px;
}
.rh-sidebar-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.rh-sidebar-card p { font-size: 14px; margin-bottom: 10px; }
.rh-sidebar-card .rh-cta-btn {
  display: block;
  text-align: center;
  margin-top: 12px;
}
.rh-sidebar-card ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.rh-sidebar-card li { margin-bottom: 8px; }

.rh-article-body { padding: 0; }
.rh-article-body h2 { font-size: 1.6rem; margin-top: 1.4em; }
.rh-article-body h3 { font-size: 1.2rem; margin-top: 1.2em; color: var(--rh-primary-dark); }
.rh-article-body p { margin: 0 0 1em; }
.rh-article-body ul { margin: 0 0 1.2em; padding-left: 1.3em; }
.rh-article-body li { margin-bottom: 0.4em; }
.rh-article-body blockquote {
  border-left: 4px solid var(--rh-primary);
  background: var(--rh-bg-soft);
  margin: 1.6em 0;
  padding: 1em 1.4em;
  font-style: italic;
  color: var(--rh-heading);
  border-radius: 0 8px 8px 0;
}

/* Single inline article image, floated to the right so the headings and
   copy that follow wrap around its left side as the article flows */
.rh-article-inline-image {
  float: right;
  width: 420px;
  max-width: 50%;
  min-height: 260px;
  margin: 4px 0 24px 28px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--rh-bg-soft);
}
.rh-article-inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .rh-article-inline-image {
    width: 340px;
  }
}
@media (max-width: 600px) {
  .rh-article-inline-image {
    float: none;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin: 0 0 24px;
  }
}

.rh-callout {
  background: var(--rh-bg-header);
  border-radius: 12px;
  padding: 1.4em 1.6em;
  margin: 2em 0;
}
.rh-callout h4 { margin-bottom: 0.5em; font-size: 1.05rem; }

/* FAQ */
.rh-faq { margin-top: 2em; }
.rh-faq-item {
  border-bottom: 1px solid var(--rh-border);
  padding: 16px 0;
}
.rh-faq-item h4 {
  font-size: 1rem;
  color: var(--rh-heading);
  margin-bottom: 8px;
}
.rh-faq-item p { margin: 0; font-size: 15px; }

/* CTA box */
.rh-cta-box {
  background: var(--rh-primary);
  color: #fff;
  border-radius: 14px;
  padding: 2em;
  text-align: center;
  margin: 2.5em 0 1em;
}
.rh-cta-box h3 { color: #fff; margin-bottom: 0.4em; }
.rh-cta-box p { color: #fdeceb; margin-bottom: 1.2em; }
.rh-cta-box a {
  display: inline-block;
  background: #fff;
  color: var(--rh-primary) !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
}
.rh-cta-box a:hover { background: var(--rh-heading); color: #fff !important; }

.rh-disclaimer {
  font-size: 13px;
  color: #888;
  border-top: 1px solid var(--rh-border);
  margin-top: 2.5em;
  padding-top: 1.2em;
}

/* ---------- Footer ---------- */
.rh-footer {
  background: #f6f9f9;
  padding: 3em 0 1.5em;
  font-size: 14px;
}
.rh-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 700px) { .rh-footer-grid { grid-template-columns: 1fr; } }
.rh-footer h2 { font-size: 1.2rem; margin-bottom: 0.8em; }
.rh-footer p { margin: 0 0 0.6em; }
.rh-footer a { color: var(--rh-heading); }
.rh-footer ul { list-style: none; padding: 0; margin: 0; }
.rh-footer li { margin-bottom: 0.5em; }
.rh-footer-copy { text-align: center; font-size: 12px; color: #555; margin-top: 2.5em; }