/* =========================================================
   01. Tokens
========================================================= */

:root {
  --rhp-color-primary: #D8492F;
  --rhp-color-secondary: #F4A261;
  --rhp-color-accent: #F7F7F7;
  --rhp-color-bg: #ffffff;
  --rhp-color-dark-bg: #1f2937;
  --rhp-color-dark-text: #ffffff;
  --rhp-color-text: #2E2E2E;
  --rhp-color-muted: #6b7280;
  --rhp-color-border: #e5e7eb;

  --rhp-font-heading: "Montserrat", Arial, sans-serif;
  --rhp-font-body: "Montserrat", Arial, sans-serif;
  --rhp-font-size-base: 1rem;
  --rhp-line-height: 1.6;

  --rhp-container-width: 1200px;
  --rhp-container-wide: 1440px;
  --rhp-container-reading: 720px;

  --rhp-space-xs: 0.5rem;
  --rhp-space-sm: 0.75rem;
  --rhp-space-md: 1rem;
  --rhp-space-lg: 1.5rem;
  --rhp-space-xl: 2rem;
  --rhp-space-2xl: 4rem;

  --rhp-header-h: 0px;

  --rhp-section-padding: 5rem;
  --rhp-section-compact-padding: 3rem;

  --rhp-radius-sm: 14px;
  --rhp-radius-md: 18px;
  --rhp-radius-lg: 26px;

  --rhp-shadow-sm: 0 6px 12px rgba(0, 0, 0, 0.06);
  --rhp-shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);

  --rhp-transition: 0.25s ease;

  --rhp-z-header: 100;
  --rhp-z-modal: 200;
}

/* =========================================================
   02. Base
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: var(--rhp-font-size-base);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--rhp-font-body);
  line-height: var(--rhp-line-height);
  color: var(--rhp-color-text);
  background: var(--rhp-color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--rhp-transition);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================================================
   03. Layout Objects
========================================================= */

main[id^="rhp-"] {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.rhp-page {
  padding-top: var(--rhp-header-h);
}

.rhp-page[data-rhp-noheader] {
  padding-top: 0;
}

.rhp-container,
.rhp-container-wide,
.rhp-container-reading,
.rhp-container-hero {
  width: min(100% - 2rem, var(--rhp-container-width));
  margin-inline: auto;
}

.rhp-container-wide {
  width: min(100% - 2rem, var(--rhp-container-wide));
}

.rhp-container-reading {
  width: min(100% - 2rem, var(--rhp-container-reading));
}

.rhp-container-hero {
  width: min(100% - 2rem, var(--rhp-container-wide));
}

.rhp-section {
  padding: var(--rhp-section-padding) 0;
}

.rhp-section-compact {
  padding: var(--rhp-section-compact-padding) 0;
}

.rhp-section-dark {
  background: var(--rhp-color-dark-bg);
  color: var(--rhp-color-dark-text);
}

.rhp-grid,
.rhp-grid-2,
.rhp-grid-3,
.rhp-grid-auto {
  display: grid;
  gap: var(--rhp-space-lg);
}

.rhp-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rhp-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rhp-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.rhp-stack {
  display: flex;
  flex-direction: column;
  gap: var(--rhp-space-lg);
}

.rhp-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rhp-space-md);
  align-items: center;
}

.rhp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rhp-space-xl);
  align-items: center;
}

/* =========================================================
   04. Typography
========================================================= */

.rhp-display-title,
.rhp-section-title,
.rhp-card-title,
.rhp-eyebrow,
.rhp-body-text,
.rhp-body-large,
.rhp-meta {
  margin: 0;
}

.rhp-display-title,
.rhp-section-title,
.rhp-card-title {
  font-family: var(--rhp-font-heading);
  line-height: 1.1;
  font-weight: 800;
}

.rhp-display-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

.rhp-section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.rhp-card-title {
  font-size: 1.25rem;
}

.rhp-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rhp-color-primary);
  font-weight: 700;
}

.rhp-body-text {
  font-size: 1rem;
  color: inherit;
}

.rhp-body-large {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: inherit;
}

.rhp-meta {
  font-size: 0.875rem;
  color: var(--rhp-color-muted);
}

/* =========================================================
   05. Buttons & Actions
========================================================= */

.rhp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--rhp-transition);
  cursor: pointer;
}

.rhp-btn-primary {
  background: var(--rhp-color-primary);
  color: #fff;
  box-shadow: var(--rhp-shadow-md);
}

.rhp-btn-primary:hover {
  filter: brightness(.98);
}

.rhp-btn-secondary {
  background: #fff;
  color: var(--rhp-color-primary);
  border: 2px solid var(--rhp-color-primary);
}

.rhp-btn-ghost {
  border: 1px solid var(--rhp-color-border);
  color: var(--rhp-color-text);
  background: transparent;
}

.rhp-btn-accent {
  background: var(--rhp-color-secondary);
  color: var(--rhp-color-text);
}

.rhp-btn-link {
  padding: 0;
  min-height: 0;
  border-radius: 0;
}

.rhp-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rhp-space-md);
  align-items: center;
}

.rhp-btn,
.rhp-btn:link,
.rhp-btn:visited,
.rhp-btn:hover,
.rhp-btn:focus,
.rhp-btn:active {
  text-decoration: none;
}

.rhp-btn-primary,
.rhp-btn-primary:link,
.rhp-btn-primary:visited,
.rhp-btn-primary:hover,
.rhp-btn-primary:focus,
.rhp-btn-primary:active {
  color: #fff;
}

.rhp-btn-secondary,
.rhp-btn-secondary:link,
.rhp-btn-secondary:visited,
.rhp-btn-secondary:hover,
.rhp-btn-secondary:focus,
.rhp-btn-secondary:active {
  color: var(--rhp-color-primary);
}

/* =========================================================
   06. Site Chrome
========================================================= */

.rhp-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: var(--rhp-z-header);
  background: rgba(255, 255, 255, 0.96);
  color: var(--rhp-color-text);
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(10px);
}

.rhp-header.scrolled {
  box-shadow: var(--rhp-shadow-sm);
}

.rhp-header-inner {
  width: min(100% - 2rem, var(--rhp-container-width));
  margin-inline: auto;
  padding: 0.625rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rhp-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.rhp-logo-img {
  height: 48px;
  width: auto;
  display: block;
  max-width: 170px;
}

.rhp-nav {
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}

.rhp-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.rhp-nav-menu > li > a {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 0.125rem;
}

.rhp-has-dd {
  position: relative;
}

.rhp-has-dd::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;
}

.rhp-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.rhp-dd-toggle svg {
  width: 11px;
  height: 11px;
  transform: translateY(1px);
}

.rhp-dd {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
}

.rhp-has-dd:hover .rhp-dd,
.rhp-has-dd:focus-within .rhp-dd {
  display: block;
}

.rhp-dd a {
  display: block;
  padding: 0.5rem 0.625rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.rhp-dd a:hover,
.rhp-dd a:focus {
  background: var(--rhp-color-accent);
}

.rhp-header-util {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}

.rhp-header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.625rem;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fff;
}

.rhp-header-search input {
  border: none;
  outline: none;
  width: 210px;
  font-size: 0.92rem;
  background: transparent;
  color: var(--rhp-color-text);
}

.rhp-header-search input:focus {
  width: 260px;
}

.rhp-header-sponsor {
  min-height: auto;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
}

.rhp-nav-toggle {
  display: none;
  margin-left: auto;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
  line-height: 1;
}

.rhp-nav-toggle svg {
  display: block;
}

.rhp-mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.rhp-mobile-nav.rhp-mobile-nav-open {
  display: block;
}

.rhp-mobile-nav-inner {
  width: min(100% - 2rem, var(--rhp-container-width));
  margin: 0 auto;
  padding: 0.75rem 0 1rem;
}

.rhp-mobile-nav-inner a {
  display: block;
  padding: 0.625rem 0;
  font-weight: 700;
}

.rhp-header-search-mobile {
  margin: 0.5rem 0;
}

.rhp-header-search-mobile input {
  width: 100%;
}

.rhp-header-sponsor-mobile {
  display: inline-flex;
  margin-top: 0.5rem;
}

.rhp-header * {
  box-sizing: border-box;
}

.rhp-header a {
  color: inherit;
  text-decoration: none;
}

.rhp-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rhp-header {
  background: #fff;
}

.rhp-header-inner {
  max-width: 1200px;
  width: min(1200px, 92vw);
  padding: 10px 16px;
  gap: 16px;
}

.rhp-nav {
  margin-left: 12px;
}

.rhp-nav-menu {
  gap: 18px;
}

.rhp-nav-menu > li > a {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 2px;
}

.rhp-dd {
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.rhp-dd a {
  padding: 8px 10px;
}

.rhp-header-util {
  gap: 10px;
}

.rhp-header-search {
  padding: 6px 10px;
}

.rhp-header-search input {
  width: 210px;
  font-size: 0.92rem;
}

.rhp-header-sponsor {
  padding: 8px 10px;
  font-size: 0.85rem;
  border: 1px solid transparent;
}

.rhp-nav-toggle {
  padding: 8px;
}

.rhp-footer {
  padding: 3rem 0 3.75rem;
  border-top: 1px solid #eee;
  background: #fff;
  color: var(--rhp-color-text);
}

.rhp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.75rem;
}

.rhp-footer-col {
  min-width: 0;
}

.rhp-footer-title,
.rhp-footer-heading {
  margin: 0 0 0.625rem;
  font-family: var(--rhp-font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.rhp-footer-title {
  font-size: 1.75rem;
}

.rhp-footer-heading {
  font-size: 1.1rem;
}

.rhp-footer-tagline,
.rhp-footer-copy {
  font-size: 0.9rem;
  color: #666;
}

.rhp-footer-tagline {
  margin: 0 0 0.625rem;
}

.rhp-footer-copy {
  margin: 0;
}

.rhp-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.rhp-footer-menu a {
  color: var(--rhp-color-primary);
  text-decoration: none;
}

.rhp-footer-menu a:hover,
.rhp-footer-menu a:focus {
  text-decoration: underline;
}

/* GeneratePress overrides */

.separate-containers .inside-article,
.one-container .site-content,
.separate-containers .site-main,
.one-container .site-main,
#primary,
#main {
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
}

.right-sidebar #primary,
.left-sidebar #primary,
.both-sidebars #primary,
.right-sidebar #secondary,
.left-sidebar #secondary,
.both-sidebars #secondary {
  float: none;
  width: 100%;
}

body,
#page,
.site,
.inside-site,
.site-content,
.content-area,
.site-main,
.entry-content,
.separate-containers .inside-article {
  background: #fff;
}

/* Content link override inside rebuilt RHP pages */
.rhp-page a:not(.rhp-btn),
.rhp-page a:not(.rhp-btn):visited,
.entry-content .rhp-page a:not(.rhp-btn),
.inside-article .rhp-page a:not(.rhp-btn) {
  color: var(--rhp-color-primary);
  text-decoration: none;
}

.rhp-page a:not(.rhp-btn):hover,
.rhp-page a:not(.rhp-btn):focus,
.entry-content .rhp-page a:not(.rhp-btn):hover,
.entry-content .rhp-page a:not(.rhp-btn):focus,
.inside-article .rhp-page a:not(.rhp-btn):hover,
.inside-article .rhp-page a:not(.rhp-btn):focus {
  color: var(--rhp-color-primary);
  text-decoration: underline;
}

/* =========================================================
   07. Card System
========================================================= */

.rhp-card,
.rhp-entry-card,
.rhp-featured-card,
.rhp-media-card,
.rhp-framed-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--rhp-radius-md);
  box-shadow: var(--rhp-shadow-sm);
}

.rhp-card,
.rhp-featured-card,
.rhp-framed-card {
  padding: 1.5rem;
}

.rhp-card-light {
  background: #fff;
}

.rhp-card-dark {
  background: var(--rhp-color-dark-bg);
  color: #fff;
}

.rhp-card-accent {
  background: var(--rhp-color-accent);
}

.rhp-framed-card {
  border: 1px solid var(--rhp-color-border);
}

.rhp-entry-card {
  overflow: hidden;
}

.rhp-entry-card-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rhp-entry-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
}

.rhp-problem-card {
  height: 100%;
}

.rhp-problem-card .rhp-entry-card-body {
  justify-content: space-between;
}

.rhp-problem-card-meta {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rhp-problem-card-summary {
  color: var(--rhp-color-muted);
}

/* =========================================================
   08. Shared Content Patterns
========================================================= */

.rhp-section-head {
  display: flex;
  flex-direction: column;
  gap: var(--rhp-space-md);
  margin-bottom: var(--rhp-space-xl);
  max-width: 860px;
}

.rhp-cta-panel {
  background: var(--rhp-color-accent);
  border-radius: var(--rhp-radius-lg);
  padding: 2rem;
  box-shadow: var(--rhp-shadow-sm);
}

.rhp-feature-block,
.rhp-process-step,
.rhp-stat-block,
.rhp-faq-item,
.rhp-testimonial,
.rhp-pricing-row,
.rhp-list-row,
.rhp-callout {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rhp-wrap-reading {
  width: min(100% - 2rem, var(--rhp-container-reading));
  margin-inline: auto;
}

.rhp-prose > * + * {
  margin-top: 1.2em;
}

.rhp-pagination {
  margin-top: var(--rhp-space-xl);
}

.rhp-problem-highlight {
  background: linear-gradient(180deg, #fff, var(--rhp-color-accent));
  border: 1px solid var(--rhp-color-border);
  border-radius: var(--rhp-radius-md);
  padding: 1.25rem;
  box-shadow: var(--rhp-shadow-sm);
}

.rhp-problem-highlight > * + * {
  margin-top: 0.75rem;
}

.rhp-solution-group {
  display: grid;
  gap: 1rem;
}

.rhp-solution-card {
  background: #fff;
  border: 1px solid var(--rhp-color-border);
  border-radius: var(--rhp-radius-md);
  padding: 1.25rem;
  box-shadow: var(--rhp-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rhp-solution-card h3,
.rhp-solution-card h4 {
  margin: 0;
  font-family: var(--rhp-font-heading);
  line-height: 1.15;
}

.rhp-solution-card p {
  margin: 0;
}

.rhp-solution-meta {
  font-size: 0.875rem;
  color: var(--rhp-color-muted);
  font-weight: 600;
}

.rhp-solution-list {
  margin: 0;
  padding-left: 1.125rem;
}

.rhp-solution-list li + li {
  margin-top: 0.35rem;
}

.rhp-trust-note {
  background: #fff7f1;
  border-left: 4px solid var(--rhp-color-secondary);
  border-radius: 0.75rem;
  padding: 1rem 1rem 1rem 1.125rem;
}

.rhp-trust-note > * + * {
  margin-top: 0.5rem;
}

.rhp-prose h2,
.rhp-prose h3,
.rhp-prose h4 {
  font-family: var(--rhp-font-heading);
  line-height: 1.15;
  margin: 0;
}

.rhp-prose h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.rhp-prose h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.rhp-prose ul,
.rhp-prose ol {
  padding-left: 1.2rem;
}

.rhp-prose li + li {
  margin-top: 0.45rem;
}

.rhp-prose strong {
  color: var(--rhp-color-text);
}

.rhp-form-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rhp-form-shell-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 760px;
}

.rhp-form-embed-shell {
  min-height: 950px;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: var(--rhp-radius-lg);
  background: #fff;
  box-shadow: var(--rhp-shadow-sm);
  overflow: hidden;
}

.rhp-airtable-embed {
  display: block;
  width: 100%;
  min-height: 950px;
  border: 0;
  background: transparent;
}

.rhp-guideline-grid {
  margin-top: 1.5rem;
}

.rhp-guideline-card {
  height: 100%;
}

.rhp-offer-grid {
  align-items: stretch;
}

.rhp-offer-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.rhp-price-tag {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rhp-color-primary);
}

/* =========================================================
   09. Hero System
========================================================= */

.rhp-hero {
  position: relative;
  overflow: hidden;
}

.rhp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--rhp-space-xl);
  align-items: center;
}

.rhp-hero-copy,
.rhp-hero-media,
.rhp-hero-bg {
  position: relative;
}

.rhp-hero-lg {
  padding: 2rem 0;
}

.rhp-hero-sm {
  padding: 1rem 0;
}

/* =========================================================
   10. Legacy / Transitional
========================================================= */



/* =========================================================
   11. Page-Specific Enhancements
========================================================= */

/* About */
#rhp-about .rhp-container-reading {
  width: min(100% - 2rem, 960px);
}

#rhp-privacy .rhp-container-reading {
  width: min(100% - 2rem, 880px);
}

.rhp-about-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 20px 72px;
  line-height: 1.6;
}

.rhp-about-header {
  margin-bottom: 0.75rem;
}

.rhp-about-title,
.rhp-about-heading {
  margin: 0;
  font-family: var(--rhp-font-heading);
  letter-spacing: -0.02em;
}

.rhp-about-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--rhp-color-primary);
  margin-bottom: 0.75rem;
}

.rhp-about-heading {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--rhp-color-primary);
  margin-bottom: 0.75rem;
}

.rhp-about-block p {
  margin: 0.75rem 0;
}

.rhp-about-list {
  padding-left: 1.2rem;
  margin: 0.75rem 0;
}

.rhp-about-list li {
  margin: 0.375rem 0;
}

.rhp-about-list-quotes {
  list-style: disc;
}

.rhp-about-sep {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--rhp-color-accent),
    var(--rhp-color-secondary),
    var(--rhp-color-accent)
  );
  margin: 1.75rem 0;
  opacity: 0.6;
}

.rhp-about-closing {
  background: var(--rhp-color-accent);
  border-left: 6px solid var(--rhp-color-secondary);
  padding: 1rem 1.125rem;
  margin-top: 1.75rem;
  font-weight: 600;
}

.rhp-about-closing p {
  margin: 0;
}

/* Home */
.rhp-home-hero {
  background: linear-gradient(180deg, #fff 0%, var(--rhp-color-accent) 100%);
}

.rhp-home-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  align-items: center;
}

.rhp-home-hero-title {
  margin: 0 0 0.625rem;
  font-family: var(--rhp-font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 3.375rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.rhp-home-hero-copy {
  margin: 0 0 1.375rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.rhp-home-site-pill,
.rhp-home-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8e8e8;
  font-size: 0.85rem;
}

.rhp-home-site-pill {
  margin-bottom: 1rem;
}

.rhp-home-search {
  display: flex;
  gap: 0.625rem;
  background: #fff;
  padding: 0.625rem;
  border: 1px solid #ececec;
  border-radius: var(--rhp-radius-lg);
  box-shadow: var(--rhp-shadow-sm);
}

.rhp-home-search input[type="search"] {
  flex: 1;
  border: 0;
  padding: 0.875rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  outline: none;
  min-width: 0;
}

.rhp-home-hero-actions {
  margin-top: 0.75rem;
}

.rhp-home-trustbar {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 1.125rem;
}

.rhp-home-hero-aside {
  padding: 1.25rem;
}

.rhp-home-band {
  background: linear-gradient(180deg, var(--rhp-color-accent), #fff);
  padding: 1.75rem;
  border: 1px solid #eee;
  border-radius: var(--rhp-radius-md);
}

.rhp-home-aside-title,
.rhp-home-section-heading,
.rhp-home-band-title,
.rhp-home-new-title,
.rhp-home-step-title {
  margin: 0 0 0.5rem;
  font-family: var(--rhp-font-heading);
}

.rhp-home-aside-title {
  font-size: 1.5rem;
}

.rhp-home-section-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.rhp-home-section-heading-tight {
  margin-bottom: 0.5rem;
}

.rhp-home-band-title,
.rhp-home-new-title {
  font-size: 1.35rem;
}

.rhp-home-step-title {
  font-size: 1.05rem;
}

.rhp-home-micro {
  font-size: 0.92rem;
  color: #555;
}

.rhp-home-bullets,
.rhp-home-mini-list,
.rhp-home-mini-bullets,
.rhp-home-ordered {
  margin: 0.5rem 0 0;
  padding-left: 1.125rem;
}

.rhp-home-bullets li,
.rhp-home-mini-list li,
.rhp-home-mini-bullets li,
.rhp-home-ordered li {
  margin: 0.4rem 0;
}

.rhp-home-aside-actions {
  margin-top: 0.875rem;
}

.rhp-home-step {
  padding: 1.375rem;
  border-radius: var(--rhp-radius-md);
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  gap: 1rem;
}

.rhp-home-step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--rhp-color-primary);
  color: #fff;
  font-weight: 800;
}

.rhp-home-step-copy,
.rhp-home-band-copy {
  margin: 0;
  color: #555;
}

.rhp-home-top {
  background: var(--rhp-color-accent);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.rhp-home-top-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}

.rhp-home-top-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 1.25rem;
}

.rhp-home-problem-list {
  display: grid;
  gap: 0.75rem;
}

.rhp-home-problem-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: var(--rhp-radius-sm);
  border: 1px solid #eee;
  background: #fff;
}

.rhp-home-problem-item:hover {
  box-shadow: var(--rhp-shadow-sm);
}

.rhp-home-problem-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rhp-home-badge {
  font-size: 0.78rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--rhp-color-accent);
  border: 1px solid #eaeaea;
}

.rhp-home-urgency {
  font-weight: 800;
}

.rhp-home-new-card {
  padding: 1rem;
}

.rhp-home-mini-list {
  padding-left: 1rem;
}

.rhp-home-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.rhp-home-tile {
  padding: 1.25rem;
  border-radius: var(--rhp-radius-md);
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rhp-home-tile h4 {
  margin: 0;
  font-family: var(--rhp-font-heading);
}

.rhp-home-tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rhp-home-tag-list a {
  display: inline-block;
  background: var(--rhp-color-accent);
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.9rem;
}

.rhp-home-band-feature {
  padding: 1.75rem;
}

.rhp-home-band-row {
  display: flex;
  gap: 1.125rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.rhp-home-suggest {
  background: var(--rhp-color-accent);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.rhp-home-suggest-card {
  padding: 1.5rem;
}

.rhp-home-suggest-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.25rem;
  align-items: center;
}

.rhp-home-dashed-box {
  background: #fff;
  border: 1px dashed #ddd;
  border-radius: var(--rhp-radius-md);
  padding: 1rem;
  font-size: 0.92rem;
  color: #555;
}

.rhp-home-newsletter {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.rhp-home-newsletter-form {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.875rem;
}

.rhp-home-newsletter-form input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  padding: 0.875rem;
  min-width: 0;
}

.rhp-home-side-card,
.rhp-home-ethos-card {
  padding: 1rem;
}

#rhp-home .rhp-container {
  width: min(1200px, 92vw);
}

#rhp-home .rhp-section {
  padding: 64px 0;
}

#rhp-home .rhp-section-compact {
  padding: 40px 0;
}

.rhp-home-hero {
  padding-top: 72px;
  background: linear-gradient(180deg, #fff 0, var(--rhp-color-accent) 100%);
}

.rhp-home-hero-grid {
  gap: 28px;
}

.rhp-home-hero-title {
  font-size: clamp(28px, 5vw, 54px);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}

.rhp-home-hero-copy {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
  margin: 0 0 22px;
}

.rhp-home-search {
  gap: 10px;
  padding: 10px;
  border: 1px solid #ececec;
  border-radius: var(--rhp-radius-md);
  box-shadow: var(--rhp-shadow-md);
}

.rhp-home-search input[type="search"] {
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
}

.rhp-home-trustbar {
  gap: 14px;
  margin-top: 18px;
}

.rhp-home-step {
  padding: 22px;
  gap: 16px;
}

.rhp-home-step-num {
  width: 36px;
  height: 36px;
}

.rhp-home-problem-item {
  padding: 16px;
}

.rhp-home-tile {
  padding: 20px;
  gap: 8px;
}

.rhp-home-band {
  padding: 28px;
}

.rhp-home-newsletter-form input {
  padding: 14px;
  border-radius: 12px;
}

.rhp-home-new-card,
.rhp-home-suggest-card,
.rhp-home-side-card,
.rhp-home-ethos-card,
.rhp-home-hero-aside {
  border: 1px solid #eee;
}

/* Home newsletter MailerLite embed */
.rhp-home-newsletter-embed {
  width: 100%;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234.ml-form-embedContainer {
  width: 100% !important;
  margin: 0 !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-align-center,
#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-align-default {
  display: block !important;
  text-align: left !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-embedWrapper.embedForm {
  max-width: none !important;
  width: 100% !important;
  display: block !important;
  background: transparent !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-embedBody,
#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-successBody {
  padding: 0 !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-embedContent h4,
#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-successContent h4 {
  font-family: var(--rhp-font-heading) !important;
  font-size: clamp(1.75rem, 3vw, 2.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: var(--rhp-color-text) !important;
  margin: 0 0 0.75rem 0 !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-embedContent p,
#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-successContent p,
#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-embedPermissionsContent p {
  font-family: var(--rhp-font-body) !important;
  color: #555 !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-horizontalRow input {
  min-height: 48px !important;
  border-radius: 12px !important;
  padding: 0.875rem 1rem !important;
  font-family: var(--rhp-font-body) !important;
  font-size: 1rem !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-horizontalRow button,
#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-mobileButton-horizontal button {
  min-height: 48px !important;
  border-radius: 999px !important;
  background: var(--rhp-color-primary) !important;
  border-color: var(--rhp-color-primary) !important;
  font-family: var(--rhp-font-body) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 0.875rem 1.25rem !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-horizontalRow button:hover,
#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-mobileButton-horizontal button:hover {
  background: #c53f28 !important;
  border-color: #c53f28 !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-embedPermissionsContent a {
  color: var(--rhp-color-primary) !important;
}

#rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-recaptcha {
  clear: both;
}

@media (max-width: 768px) {
  #rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-horizontalRow .ml-input-horizontal,
  #rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-horizontalRow .ml-button-horizontal {
    width: 100% !important;
    float: none !important;
  }

  #rhp-home .rhp-home-newsletter-embed #mlb2-40111234 .ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
    padding-right: 0 !important;
    padding-bottom: 0.75rem !important;
  }
}

/* Privacy */
.rhp-legal-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 18px;
  line-height: 1.55;
}

.rhp-legal-title {
  margin: 0 0 0.75rem;
  font-family: var(--rhp-font-heading);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.rhp-legal-lead {
  font-size: 1.05rem;
  color: #555;
  margin-top: 0;
}

.rhp-legal-band {
  background: linear-gradient(180deg, #fff, var(--rhp-color-accent));
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 1rem 1.125rem;
  margin: 1.125rem 0;
  font-size: 0.92rem;
  color: #555;
}

.rhp-legal-link-pills {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 0;
}

.rhp-legal-link-pills a {
  display: inline-block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.rhp-legal-heading {
  margin: 1.75rem 0 0.625rem;
  font-family: var(--rhp-font-heading);
  font-size: 1.35rem;
}

.rhp-legal-subheading {
  margin: 1.25rem 0 0.5rem;
  font-family: var(--rhp-font-heading);
  font-size: 1.05rem;
}

.rhp-legal-list {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.rhp-legal-list li {
  margin: 0.375rem 0;
}

.rhp-legal-callout {
  border-left: 4px solid var(--rhp-color-secondary);
  background: #fff7f1;
  padding: 0.75rem 0.875rem;
  border-radius: 0.625rem;
  margin: 0.875rem 0;
}

.rhp-legal-small {
  font-size: 0.9rem;
  color: #666;
}

.rhp-legal-hr {
  height: 1px;
  background: #eee;
  margin: 1.5rem 0;
}

#rhp-problem-single .rhp-section-head {
  margin-bottom: 0;
}

#rhp-problem-single .rhp-wrap-reading {
  width: 100%;
}

#rhp-problems .rhp-home-search {
  margin-top: 1rem;
}

#rhp-how-we-choose .rhp-prose > h2:first-of-type {
  margin-top: 0;
}

#rhp-how-we-choose .rhp-wrap-reading {
  width: min(100% - 2rem, 880px);
}

.rhp-utility-hero {
  align-items: start;
}

#rhp-sponsor .rhp-offer-card .rhp-solution-list {
  margin-top: auto;
}

#rhp-search .rhp-home-search {
  margin-top: 1rem;
}

#rhp-search .rhp-section-head {
  margin-bottom: 1.5rem;
}

/* Contact page live form */
.rhp-form-live-shell {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: var(--rhp-radius-lg);
  background: #fff;
  box-shadow: var(--rhp-shadow-sm);
}

.rhp-form-live-shell .ff-el-group,
.rhp-form-live-shell .ff_submit_btn_wrapper {
  margin-bottom: 1rem;
}

.rhp-form-live-shell input,
.rhp-form-live-shell textarea,
.rhp-form-live-shell select {
  border-radius: 12px;
}

.rhp-form-live-shell .ff-btn-submit {
  min-height: 48px;
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  background: var(--rhp-color-primary);
  border-color: var(--rhp-color-primary);
  font-weight: 700;
}

.rhp-form-live-shell .ff-btn-submit:hover {
  filter: brightness(.98);
}

@media (max-width: 768px) {
  .rhp-form-live-shell {
    padding: 1rem;
  }
}

/* =========================================================
   12. Utilities
========================================================= */

.rhp-text-center {
  text-align: center;
}

.rhp-text-left {
  text-align: left;
}

.rhp-text-right {
  text-align: right;
}

.rhp-measure {
  max-width: 65ch;
}

.rhp-muted {
  color: var(--rhp-color-muted);
}

.rhp-emphasis {
  font-weight: 700;
}

.rhp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   13. Responsive
========================================================= */

@media (max-width: 1024px) {
  .rhp-grid-3,
  .rhp-split,
  .rhp-hero-grid {
    grid-template-columns: 1fr;
  }

  .rhp-home-hero-grid,
  .rhp-home-top-grid,
  .rhp-home-suggest-grid,
  .rhp-home-newsletter,
  .rhp-home-tile-grid,
  .rhp-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .rhp-nav,
  .rhp-header-util {
    display: none;
  }

  .rhp-nav-toggle {
    display: inline-flex;
  }

  .rhp-logo-img {
    height: 32px;
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .rhp-section {
    padding: 4rem 0;
  }

  .rhp-section-compact {
    padding: 2.5rem 0;
  }

  .rhp-home-search,
  .rhp-home-newsletter-form {
    flex-direction: column;
  }

  .rhp-home-problem-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .rhp-home-problem-left,
  .rhp-home-band-row {
    align-items: flex-start;
  }

  .rhp-form-embed-shell {
  min-height: 800px;
  padding: 0.75rem;
}

.rhp-airtable-embed {
  min-height: 800px;
}
}

@media (max-width: 640px) {
  .rhp-about-wrap {
    padding: 2.5rem 1rem 4rem;
  }

  .rhp-legal-wrap {
    padding: 1.75rem 1rem;
  }
}