

:root {
  --rh-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --rh-font-body:    'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --rh-gold:         #B89968;
  --rh-gold-dark:    #8E6F40;
  --rh-gold-soft:    rgba(184, 153, 104, 0.32);

  --rh-paper:        var(--paper, #FBF7EE);
  --rh-paper-cream:  #f3ead9;
  --rh-paper-white:  #ffffff;
  --rh-ink:          #211c17;
  --rh-ink-soft:     #3d352f;
  --rh-ink-muted:    #6b5f55;

  --rh-brown:        var(--brand-primary);
  --rh-cream:        var(--brand-accent);

  --rh-on-brown:        #ffffff;
  --rh-on-brown-soft:   #ece1d2;
  --rh-gold-on-brown:   #e3c489;

  --rh-on-gold:      #1b1714;

  --rh-shadow-soft:  0 1px 2px rgba(27, 23, 20, 0.05), 0 12px 32px rgba(27, 23, 20, 0.09);
  --rh-shadow-lift:  0 3px 8px rgba(27, 23, 20, 0.07), 0 28px 64px rgba(27, 23, 20, 0.14);

  --rh-radius-card:  10px;
  --rh-radius-soft:  6px;
}

body {
  font-family: var(--rh-font-body);
  font-size: 1.075rem;
  line-height: 1.72;
  background: var(--rh-paper);
  color: var(--rh-ink);
  font-feature-settings: "kern", "liga";
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 12% -10%, color-mix(in srgb, var(--rh-gold) 9%, transparent), transparent 60%),
    radial-gradient(900px 500px at 105% 110%, color-mix(in srgb, var(--rh-brown) 5%, transparent), transparent 55%);
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4 {
  font-family: var(--rh-font-display);
  color: var(--rh-ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.012em;
}
h1 { font-size: clamp(2.6rem, 5.4vw + 0.4rem, 4.8rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.95rem, 3.4vw + 0.4rem, 3.05rem); }
h3 { font-size: clamp(1.35rem, 1.3vw + 1rem, 1.7rem); font-weight: 700; }
h4 { font-size: 1.18rem; font-weight: 600; }

p { color: var(--rh-ink-soft); margin: 0 0 1.1rem; }

.rh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--rh-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rh-gold-dark);
  margin: 0 0 1.1rem;
}
.rh-eyebrow__rule {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--rh-gold);
  flex-shrink: 0;
}
.rh-eyebrow--center { justify-content: center; }
.rh-eyebrow--on-dark { color: var(--rh-gold-on-brown); }
.rh-eyebrow--on-dark .rh-eyebrow__rule { background: var(--rh-gold-on-brown); }

.rh-rule {
  display: block;
  width: 56px; height: 1px;
  background: var(--rh-gold);
  margin: 1.3rem 0 1.5rem;
  border: 0;
}
.rh-rule--center { margin-left: auto; margin-right: auto; }
.rh-rule--gold   { background: var(--rh-gold); }

.rh-dropcap::first-letter {
  font-family: var(--rh-font-display);
  font-weight: 800;
  float: left;
  font-size: 4.6rem;
  line-height: 0.88;
  padding: 0.4rem 0.75rem 0 0;
  color: var(--rh-brown);
  margin-top: 0.15rem;
}

.rh-pullquote {
  font-family: var(--rh-font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw + 0.2rem, 1.9rem);
  line-height: 1.38;
  color: var(--rh-ink);
  border-left: 2px solid var(--rh-gold);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2rem 0;
}

.btn-primary,
.btn-outline,
.btn-accent,
.rh-btn {
  border-radius: 999px !important;
  font-family: var(--rh-font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}
.rh-btn--lg { padding: 1.05rem 2.15rem; font-size: 1.02rem; }

.btn-primary {
  background: var(--rh-brown);
  color: var(--rh-on-brown);
  border-color: var(--rh-brown);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--rh-brown) 26%, transparent);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: color-mix(in srgb, var(--rh-brown) 86%, #000);
  color: var(--rh-on-brown);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--rh-brown) 36%, transparent);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--rh-brown);
  border-color: var(--rh-brown);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--rh-brown);
  color: var(--rh-on-brown);
  text-decoration: none;
}

.btn-accent {
  background: var(--rh-gold);
  color: var(--rh-on-gold);
  border-color: var(--rh-gold);
  font-weight: 700;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--rh-gold) 32%, transparent);
}
.btn-accent:hover,
.btn-accent:focus-visible {
  background: var(--rh-gold-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--rh-gold) 40%, transparent);
  text-decoration: none;
}

.rh-section {
  padding: clamp(3.5rem, 9vw, 8rem) 0;
  position: relative;
}
.rh-section--paper { background: var(--rh-paper); }
.rh-section--white { background: var(--rh-paper-white); }
.rh-section--cream { background: var(--rh-paper-cream); }

.rh-section + .rh-section { border-top: 1px solid var(--rh-gold-soft); }

.rh-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.rh-section-head--center {
  display: block;
  max-width: 720px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}
.rh-section-head__title { margin: 0 0 0.5rem; max-width: 22ch; }
.rh-section-head--center .rh-section-head__title { max-width: none; }
.rh-section-head__lede {
  font-size: 1.12rem;
  color: var(--rh-ink-soft);
  max-width: 56ch;
}
.rh-section-head--center .rh-section-head__lede { margin-left: auto; margin-right: auto; }

#shelves .rh-section-head__title { max-width: 29ch; }
#shelves .rh-section-head__lede  { max-width: 73ch; }

.rh-section-head__tag {
  font-family: var(--rh-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rh-ink-muted);
  white-space: nowrap;
  margin: 0;
}

.rh-section-foot {
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--rh-gold-soft);
  font-size: 1rem;
  color: var(--rh-ink-soft);
  max-width: 70ch;
}
.rh-section-foot strong { color: var(--rh-ink); font-weight: 700; }

.rh-hero { background: var(--rh-paper); padding: 0 0 clamp(3.5rem, 7vw, 6rem); }

.rh-hero__media { position: relative; margin: 0; }
.rh-hero__photo {
  width: 100%;
  height: clamp(300px, 44vw, 560px);
  object-fit: cover;
  filter: saturate(0.97) contrast(1.02);
}
.rh-hero__plate {
  position: absolute;
  left: clamp(0.85rem, 3vw, 2rem);
  bottom: clamp(0.85rem, 3vw, 2rem);
  max-width: 26rem;
  background: rgba(251, 247, 238, 0.95);
  backdrop-filter: blur(6px);
  padding: 0.75rem 1.05rem;
  border-left: 3px solid var(--rh-gold);
  border-radius: var(--rh-radius-soft);
  font-family: var(--rh-font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--rh-ink-soft);
  box-shadow: var(--rh-shadow-soft);
}
.rh-hero__plate-mark { color: var(--rh-gold-dark); margin-right: 0.4rem; font-size: 1.05rem; }

.rh-hero__band {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 920px) {
  .rh-hero__band { grid-template-columns: 1.4fr 0.85fr; align-items: end; }
}

.rh-hero__copy { max-width: 38rem; }
.rh-hero__title {

  font-size: clamp(2.9rem, 6.2vw + 0.4rem, 5.5rem);
  line-height: 1.02;
  margin: 0 0 1.4rem;
  color: var(--rh-ink);
  letter-spacing: -0.025em;
  font-weight: 800;
}
.rh-hero__title em { font-style: italic; color: var(--rh-gold-dark); font-weight: 700; }
.rh-hero__sub {
  font-size: 1.2rem;
  line-height: 1.62;
  color: var(--rh-ink-soft);
  max-width: 46ch;
  margin: 0 0 2rem;
}
.rh-hero__sub strong { color: var(--rh-ink); font-weight: 700; }
.rh-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.rh-hero__trust { margin: 0; }
.rh-hero__trust .rh-rule { margin: 0 0 1.3rem; }
.rh-hero__trust-line {
  font-family: var(--rh-font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--rh-ink-soft);
  padding: 0.7rem 0;
  border-top: 1px solid var(--rh-gold-soft);
  margin: 0;
}
.rh-hero__trust-line:last-child { border-bottom: 1px solid var(--rh-gold-soft); }
.rh-hero__trust-line strong {
  font-family: var(--rh-font-display);
  color: var(--rh-brown);
  font-weight: 800;
  margin-right: 0.35rem;
}

.rh-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  margin: 0;
  text-align: center;
}
@media (max-width: 860px) { .rh-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1.8rem; } }
@media (max-width: 460px) { .rh-stats__grid { grid-template-columns: 1fr; } }

.rh-stat { padding: 0 0.5rem; position: relative; }
.rh-stat + .rh-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 12%;
  width: 1px; height: 76%;
  background: var(--rh-gold-soft);
}
@media (max-width: 860px) { .rh-stat + .rh-stat::before { display: none; } }
.rh-stat__num {
  font-family: var(--rh-font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4vw + 0.5rem, 3.6rem);
  line-height: 1;
  color: var(--rh-brown);
  letter-spacing: -0.02em;
}
.rh-stat__num span { color: var(--rh-gold-dark); font-size: 0.6em; margin-left: 0.05em; }
.rh-stat__label {
  margin: 0.9rem auto 0;
  max-width: 26ch;
  font-family: var(--rh-font-body);
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--rh-ink-soft);
}

.rh-genres {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1.3rem, 2.2vw, 2rem);
}
@media (max-width: 1100px) { .rh-genres { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 920px)  { .rh-genres { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .rh-genres { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .rh-genres { grid-template-columns: 1fr; } }

.rh-genre {
  background: var(--rh-paper-white);
  border-radius: var(--rh-radius-card);
  box-shadow: var(--rh-shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.rh-genre:hover { transform: translateY(-4px); box-shadow: var(--rh-shadow-lift); }
.rh-genre__cover { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.rh-genre__cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1);
}
.rh-genre:hover .rh-genre__cover img { transform: scale(1.04); }
.rh-genre__name {
  font-family: var(--rh-font-display);
  font-size: 1.18rem; font-weight: 700;
  margin: 1.1rem 1.1rem 0.35rem; color: var(--rh-ink); line-height: 1.18;
}
.rh-genre__meta {
  margin: 0 1.1rem 0.7rem;
  font-family: var(--rh-font-body); font-size: 0.8rem; letter-spacing: 0.02em;
  color: var(--rh-gold-dark); font-weight: 600;
}
.rh-genre__note {
  margin: 0 1.1rem 1.3rem;
  font-size: 0.9rem; line-height: 1.5; color: var(--rh-ink-soft); flex: 1;
}

.rh-block {
  background: var(--rh-brown);
  color: var(--rh-on-brown);
  padding: clamp(3.5rem, 9vw, 8rem) 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--rh-gold) 38%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--rh-gold) 38%, transparent);
}
.rh-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 920px) {
  .rh-block__grid { grid-template-columns: 0.9fr 1.1fr; }
}
.rh-block__media { margin: 0; position: relative; }
.rh-block__media img {
  width: 100%;
  height: clamp(340px, 42vw, 520px);
  object-fit: cover;
  border-radius: var(--rh-radius-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  filter: saturate(0.94) contrast(1.04) brightness(0.98);
}
.rh-block__media figcaption {
  margin-top: 0.85rem;
  font-family: var(--rh-font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--rh-on-brown-soft);
  text-align: center;
}
.rh-block__media figcaption strong { font-style: normal; color: var(--rh-on-brown); font-weight: 600; margin-right: 0.25rem; }

.rh-block__title {
  color: var(--rh-on-brown);
  font-size: clamp(2rem, 3.6vw + 0.4rem, 3.1rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  max-width: 18ch;
}
.rh-block__title em { font-style: italic; color: var(--rh-gold-on-brown); }
.rh-block__lede {
  color: var(--rh-on-brown-soft);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 2rem;
}
.rh-block__lede strong { color: var(--rh-on-brown); font-weight: 700; }

.rh-block__list { list-style: none; padding: 0; margin: 0; }
.rh-block__list li {
  padding: 1.1rem 0;
  border-top: 1px solid color-mix(in srgb, var(--rh-gold) 30%, transparent);
  color: var(--rh-on-brown-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 60ch;
}
.rh-block__list li:last-child { border-bottom: 1px solid color-mix(in srgb, var(--rh-gold) 30%, transparent); }
.rh-block__role {
  display: block;
  font-family: var(--rh-font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-gold-on-brown);
  margin-bottom: 0.3rem;
}

.rh-about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.rh-about__byline { position: sticky; top: 110px; }
.rh-about__title {
  margin: 0.4rem 0 0.9rem;
  font-size: clamp(2rem, 3.4vw + 0.4rem, 2.8rem);
  max-width: 18ch;
}
.rh-about__credit { margin: 1.2rem 0 0; font-size: 0.95rem; font-style: italic; color: var(--rh-ink-muted); }
.rh-about__credit strong { display: block; font-style: normal; color: var(--rh-ink); font-weight: 700; margin-bottom: 0.2rem; }
.rh-about__body p { font-size: 1.12rem; line-height: 1.72; max-width: 64ch; }
.rh-about__body p + p { margin-top: 1rem; }
.rh-about__body em { font-style: italic; color: var(--rh-ink); }

@media (max-width: 900px) {
  .rh-about { grid-template-columns: 1fr; }
  .rh-about__byline { position: static; }
}

.rh-pricing { background: var(--rh-paper-cream); }

.rh-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--rh-paper-white);
  border-radius: var(--rh-radius-card);
  box-shadow: var(--rh-shadow-lift);
  border-top: 4px solid var(--rh-gold);
  overflow: hidden;
}
@media (min-width: 860px) {
  .rh-banner { grid-template-columns: 0.8fr 1.2fr; }
}

.rh-banner__price {
  background: var(--rh-brown);
  color: var(--rh-on-brown);
  padding: clamp(2.5rem, 4vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.rh-banner__tag {
  display: inline-block;
  align-self: center;
  background: var(--rh-gold);
  color: var(--rh-on-gold);
  font-family: var(--rh-font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 0.4rem 0.95rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.rh-banner__amountline {
  margin: 0; line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 0.15rem;
}
.rh-banner__currency {
  font-family: var(--rh-font-display); font-size: 1.6rem; color: var(--rh-on-brown);
  font-weight: 600; align-self: flex-start; margin-top: 0.6rem;
}
.rh-banner__amount {
  font-family: var(--rh-font-display);
  font-size: clamp(3.6rem, 6vw + 0.4rem, 5rem);
  font-weight: 800; color: var(--rh-on-brown); letter-spacing: -0.02em; line-height: 1;
}
.rh-banner__period { font-family: var(--rh-font-body); font-size: 1rem; color: var(--rh-on-brown-soft); margin-left: 0.3rem; font-weight: 500; }
.rh-banner__name {
  font-family: var(--rh-font-display); font-size: 1.3rem;
  margin: 1rem 0 0; font-style: italic; color: var(--rh-on-brown-soft); font-weight: 600;
}

.rh-banner__detail { padding: clamp(2.2rem, 4vw, 3.2rem); }
.rh-banner__desc {
  font-size: 1.04rem; line-height: 1.62; color: var(--rh-ink-soft);
  max-width: 60ch; margin: 0 0 1.6rem;
}
.rh-banner__desc strong { color: var(--rh-ink); font-weight: 700; }
.rh-banner__includes {
  list-style: none; padding: 1.5rem 0 0; margin: 1.5rem 0 0;
  border-top: 1px solid var(--rh-gold-soft);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.6rem;
}
@media (max-width: 560px) { .rh-banner__includes { grid-template-columns: 1fr; } }
.rh-banner__includes li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.96rem; color: var(--rh-ink-soft); line-height: 1.5;
}
.rh-banner__includes li::before {
  content: ''; margin-top: 0.5rem; width: 6px; height: 6px;
  border-radius: 999px; background: var(--rh-gold); flex-shrink: 0;
}
.rh-banner__cta { margin-top: 2rem; }
.rh-banner__fineprint { margin-top: 1.4rem; font-size: 0.92rem; color: var(--rh-ink-muted); }
.rh-banner__fineprint .rh-statement { display: block; margin-top: 0.6rem; font-style: italic; }
.rh-banner__fineprint .rh-statement strong { font-style: normal; color: var(--rh-ink); font-weight: 700; }

.site-header,
.site-header .site-header__inner { background-color: rgba(251, 247, 238, 0.92); }
.site-header__brand { font-family: var(--rh-font-display); font-weight: 700; letter-spacing: -0.005em; }
.site-header__mark { background: var(--rh-brown); color: var(--rh-paper); border-radius: var(--rh-radius-card); }
.site-header a:not(.btn-primary):not(.btn-accent):not(.btn-outline) { font-family: var(--rh-font-body); }

.site-footer { font-family: var(--rh-font-body); }
.site-footer h4 { font-family: var(--rh-font-display); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  *:hover { transform: none !important; }
}

.rh-topbar {
  background: #4A322A;
  color: #EFE4D6;
  font-family: var(--rh-font-body);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--rh-gold-soft);
}
.rh-topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap; min-height: 34px; padding-block: 0.34rem;
}
.rh-topbar__hours { opacity: 0.9; }
.rh-topbar__links a { color: var(--rh-gold); text-decoration: none; white-space: nowrap; font-weight: 600; }
.rh-topbar__links a:hover { text-decoration: underline; }
@media (max-width: 560px) { .rh-topbar__inner { justify-content: center; } .rh-topbar__hours { display: none; } }

.legal-prose { color: var(--rh-ink); line-height: 1.7; font-size: 1.02rem; font-family: var(--rh-font-body); }
.legal-prose h1, .legal-prose h2, .legal-prose h3 { font-family: var(--rh-font-display); color: var(--rh-ink); line-height: 1.2; }
.legal-prose a { color: var(--rh-brown); border-bottom: 1px solid var(--rh-gold); text-decoration: none; }
.legal-prose a:hover { color: var(--rh-gold-dark); }

.signup-section { background: var(--rh-paper); color: var(--rh-ink); }
.signup-title, .signup-aside__title, .signup-summary__title { font-family: var(--rh-font-display); color: var(--rh-ink); }
.signup-form-card, .signup-aside, .signup-summary {
  background: var(--rh-paper-white); border: 1px solid var(--rh-gold-soft); border-radius: 10px;
}

.signup-grid { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); }
#member-info.signup-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); }
@media (max-width: 860px) {
  .signup-grid,
  #member-info.signup-grid { grid-template-columns: 1fr; }
}

.rh-faq { }
.rh-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2.5rem; margin-top: 2rem; }
.rh-faq__item { border-bottom: 1px solid var(--rh-gold-soft); }
.rh-faq__q {
  font-family: var(--rh-font-display); font-weight: 700; font-size: 1.12rem; color: var(--rh-ink);
  cursor: pointer; padding: 0.95rem 2rem 0.95rem 0; position: relative; list-style: none;
}
.rh-faq__q::-webkit-details-marker { display: none; }
.rh-faq__q::after { content: "+"; position: absolute; right: 0.2rem; top: 0.8rem; font-size: 1.4rem; color: var(--rh-gold); }
.rh-faq__item[open] .rh-faq__q::after { content: "\2013"; }
.rh-faq__a { padding: 0 0 1.1rem; }
.rh-faq__a p { color: var(--rh-ink-soft); line-height: 1.6; margin: 0; font-size: 0.98rem; }
@media (max-width: 760px) { .rh-faq__grid { grid-template-columns: 1fr; } }
