/* =====================================================
   RMH SHOP — SANCTUARY WELL
   Dark luxury · Cormorant Garamond + Jost · Gold/Teal system
   ===================================================== */

.rmh-shop {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   #F5EDD6;
  --gold-dim:    rgba(201,168,76,0.14);
  --gold-rule:   rgba(201,168,76,0.22);
  --teal:        #2D7D6F;
  --teal-light:  #4FB3A2;
  --teal-dim:    rgba(45,125,111,0.16);
  --teal-rule:   rgba(15,187,207,0.22);
  --ink:         #0A0A0B;
  --ink-soft:    #111115;
  --ink-mid:     #1A1A1F;
  --ink-panel:   #15151A;
  --parchment:   #F7F3EC;
  --smoke:       #E8E3DA;
  --mist:        #C4BDB0;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --display:     'Playfair Display', Georgia, serif;
  --sans:        'Jost', -apple-system, sans-serif;
  --caps:        'Cinzel', 'Playfair Display', serif;

  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--smoke);
  background: var(--ink);
  overflow-x: hidden;
}

.rmh-shop * { box-sizing: border-box; }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.rmh-hero {
  position: relative;
  text-align: center;
  padding: 9rem 2rem 6rem;
  border-bottom: 1px solid var(--gold-rule);
  overflow: hidden;
}

.rmh-hero__noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,168,76,0.05), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(45,125,111,0.05), transparent 45%);
  pointer-events: none;
}

.rmh-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.rmh-eyebrow {
  font-family: var(--caps);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin: 0 0 1.2rem;
}

.rmh-eyebrow--gold { color: var(--gold); }
.rmh-eyebrow--teal { color: var(--teal-light); }

.rmh-hero__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--parchment);
  margin: 0 0 1.4rem;
  letter-spacing: 0.01em;
}

.rmh-hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.rmh-hero__sub {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--mist);
  max-width: 600px;
  margin: 0 auto 2.2rem;
  font-style: italic;
}

.rmh-hero__scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.rmh-btn {
  display: inline-block;
  font-family: var(--caps);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
}

.rmh-btn--gold {
  background: var(--gold);
  color: var(--ink) !important;
  border-color: var(--gold);
}
.rmh-btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.rmh-btn--teal {
  background: transparent;
  color: var(--teal-light) !important;
  border-color: var(--teal);
}
.rmh-btn--teal:hover {
  background: var(--teal-dim);
  border-color: var(--teal-light);
  transform: translateY(-1px);
}

.rmh-btn--outline {
  background: transparent;
  color: var(--gold) !important;
  border-color: rgba(201,168,76,0.45);
}
.rmh-btn--outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.rmh-btn--full { display: block; width: 100%; }
.rmh-btn--lg { padding: 1.1rem 2.6rem; font-size: 0.68rem; }

/* ─────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────── */
.rmh-trust {
  border-bottom: 1px solid var(--gold-rule);
  background: var(--ink-soft);
  padding: 1.4rem 2rem;
}

.rmh-trust__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 1rem;
  font-family: var(--caps);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.rmh-trust__dot { color: var(--gold); opacity: 0.5; }

/* ─────────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────────── */
.rmh-section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.rmh-section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--gold);
  margin: 0 0 1rem;
}

.rmh-section-title--light { color: var(--parchment); }

.rmh-section-sub {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--mist);
  margin: 0;
}

/* ─────────────────────────────────────────────
   PRODUCTS GRID
───────────────────────────────────────────── */
.rmh-products {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.rmh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* ─── CARD ─── */
.rmh-card {
  background: var(--ink-soft);
  border: 1px solid var(--gold-rule);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.rmh-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.rmh-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 18px 50px rgba(201,168,76,0.08);
}

.rmh-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.rmh-card__accent--gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.rmh-card__accent--teal { background: linear-gradient(90deg, transparent, var(--teal-light), transparent); }

.rmh-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-family: var(--caps);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.4rem 0.9rem;
}

.rmh-card__top {
  padding: 1.8rem 1.8rem 0;
}

.rmh-card__tag {
  font-family: var(--caps);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.rmh-card__title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--parchment);
  margin: 0 0 0.8rem;
}

.rmh-card__tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
  margin: -0.3rem 0 0.9rem;
}

.rmh-card__desc {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--mist);
  margin: 0 0 1.4rem;
}

.rmh-card__features {
  list-style: none;
  padding: 0 1.8rem;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rmh-card__features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--mist);
}

.rmh-card__features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0.3rem;
  color: var(--gold);
  font-size: 0.4rem;
}

.rmh-card__bottom {
  margin-top: auto;
  padding: 0 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rmh-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.rmh-price__amount {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--gold-light);
}

.rmh-price__note {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--mist);
  opacity: 0.85;
}

/* For cards that use body/price-row layout (Clarity Spread, Boundary Blueprint) */
.rmh-card__body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rmh-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 0.4rem 0 1.4rem;
}

.rmh-price {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--gold-light);
}

.rmh-price-note {
  font-family: var(--sans);
  font-size: 0.74rem;
  color: var(--mist);
  opacity: 0.85;
}

.rmh-card__fine {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--mist);
  opacity: 0.6;
  text-align: center;
  margin: 0.9rem 0 0;
}

/* ─────────────────────────────────────────────
   PRODUCT PREVIEW MOCKUPS
───────────────────────────────────────────── */
.rmh-preview {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink-mid) 60%, var(--ink-panel) 100%);
}

.rmh-preview__gold-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

.rmh-preview__side-bar {
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--gold);
}

.rmh-preview__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 2rem;
}

.rmh-preview__brand {
  font-family: var(--caps);
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mist);
  margin: 0 0 1rem;
  opacity: 0.7;
}

.rmh-preview__brand--gold { color: var(--gold); opacity: 0.85; }

.rmh-preview__title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--parchment);
  letter-spacing: 0.04em;
  margin: 0 0 0.8rem;
}

.rmh-preview__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.rmh-preview__title--ebook {
  font-size: 1.15rem;
}

.rmh-preview__sub {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--mist);
  margin: 0;
}

.rmh-preview__divider {
  width: 48px;
  height: 1px;
  background: var(--teal-light);
  margin: 1.1rem auto;
  opacity: 0.7;
}

.rmh-preview__divider--gold { background: var(--gold); }

.rmh-preview__method {
  font-family: var(--caps);
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.rmh-preview__footer {
  position: absolute;
  bottom: 0.9rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--mist);
  opacity: 0.4;
  z-index: 2;
}

.rmh-preview__footer--ebook { color: var(--gold-light); opacity: 0.5; }

/* decorative circle accents */
.rmh-preview__circle {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 50%;
}

.rmh-preview__ebook-circle {
  position: absolute;
  bottom: -80px;
  right: -50px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(232,201,122,0.15);
  border-radius: 50%;
}

.rmh-preview__ebook-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(201,168,76,0.06), transparent);
}

.rmh-preview__ebook-label {
  font-family: var(--caps);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* planner-specific accents */
.rmh-preview__planner-right {
  position: absolute;
  top: 0; right: 0;
  width: 35%;
  height: 100%;
  background: rgba(45,125,111,0.08);
  border-left: 1px solid rgba(45,125,111,0.2);
}

.rmh-preview__planner-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,11,0.6);
}

.rmh-preview__planner-num {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold-light);
  line-height: 1;
}

.rmh-preview__planner-day {
  font-family: var(--caps);
  font-size: 0.45rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.rmh-preview__content--planner { padding-right: 2.5rem; }

/* ─────────────────────────────────────────────
   BUNDLE SECTION
───────────────────────────────────────────── */
.rmh-bundle {
  background: var(--ink-soft);
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
  padding: 6rem 2rem;
}

.rmh-bundle__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.rmh-bundle__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 400;
  color: var(--parchment);
  margin: 0 0 1.2rem;
  line-height: 1.25;
}

.rmh-bundle__desc {
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--mist);
  margin: 0 0 1.6rem;
}

.rmh-bundle__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.rmh-bundle__list li {
  font-size: 1rem;
  color: var(--smoke);
}

.rmh-bundle__pricing {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.rmh-bundle__original {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--mist);
  text-decoration: line-through;
  opacity: 0.6;
}

.rmh-bundle__price {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--gold-light);
}

.rmh-bundle__save {
  font-family: var(--caps);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid var(--teal-rule);
  padding: 0.35rem 0.8rem;
}

/* bundle visual — stacked cards */
.rmh-bundle__visual {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rmh-bundle__stack {
  position: absolute;
  width: 220px;
  height: 280px;
  border: 1px solid var(--gold-rule);
  background: var(--ink-mid);
  border-radius: 2px;
}

.rmh-bundle__stack--3 {
  transform: rotate(-8deg) translateX(-30px);
  opacity: 0.5;
}

.rmh-bundle__stack--2 {
  transform: rotate(-3deg) translateX(-12px);
  opacity: 0.75;
}

.rmh-bundle__stack--1 {
  position: relative;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-color: var(--gold);
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
  gap: 0.6rem;
}

.rmh-bundle__stack--1 span {
  font-family: var(--caps);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.rmh-bundle__stack--1 strong {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--parchment);
}

.rmh-bundle__stack--1 em {
  font-family: var(--sans);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--mist);
}

/* ─────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────── */
.rmh-about {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.rmh-about__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.rmh-about__photo-wrap {
  display: flex;
  justify-content: center;
}

.rmh-about__photo-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--ink-mid), var(--ink-soft));
  text-align: center;
}

.rmh-about__photo-placeholder span {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--gold-light);
  line-height: 1.5;
}

.rmh-about__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 400;
  color: var(--parchment);
  margin: 0 0 0.6rem;
}

.rmh-about__role {
  font-family: var(--caps);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin: 0 0 1.4rem;
}

.rmh-about__text p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--mist);
  margin: 0 0 1.3rem;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.rmh-testimonials {
  background: var(--ink-soft);
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
  padding: 6rem 2rem;
}

.rmh-testi-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.rmh-testi {
  background: var(--ink-mid);
  border: 1px solid var(--gold-rule);
  padding: 2rem 1.8rem;
  margin: 0;
}

.rmh-testi p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mist);
  font-style: italic;
  margin: 0 0 1.2rem;
}

.rmh-testi cite {
  font-family: var(--caps);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.rmh-testi-note {
  text-align: center;
  max-width: 800px;
  margin: 3rem auto 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--mist);
  opacity: 0.6;
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.rmh-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.rmh-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rmh-faq__item {
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 1.4rem 0;
}

.rmh-faq__item:last-child { border-bottom: none; }

.rmh-faq__item summary {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--gold-light);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-left: 1.4rem;
}

.rmh-faq__item summary::-webkit-details-marker { display: none; }

.rmh-faq__item summary::before {
  content: '+';
  position: absolute;
  left: 0;
  top: -0.1rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.rmh-faq__item[open] summary::before {
  content: '\2212'; /* minus sign */
}

.rmh-faq__item p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--mist);
  margin: 0.9rem 0 0;
  padding-left: 1.4rem;
}

.rmh-faq__item a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.rmh-faq__item a:hover { color: var(--gold); border-color: var(--gold); }

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.rmh-cta {
  position: relative;
  text-align: center;
  padding: 7rem 2rem;
  border-top: 1px solid var(--gold-rule);
  background: var(--ink-mid);
  overflow: hidden;
}

.rmh-cta__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.rmh-cta__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--parchment);
  margin: 0 0 1.2rem;
}

.rmh-cta__title em {
  font-style: italic;
  color: var(--gold-light);
}

.rmh-cta__sub {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--mist);
  margin: 0 0 2rem;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .rmh-bundle__inner,
  .rmh-about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .rmh-bundle__visual { height: 240px; }
  .rmh-bundle__pricing { justify-content: center; }
  .rmh-about__photo-wrap { order: -1; }
}

@media (max-width: 640px) {
  .rmh-hero { padding: 6rem 1.5rem 4rem; }
  .rmh-products, .rmh-about, .rmh-faq { padding: 4rem 1.5rem; }
  .rmh-bundle, .rmh-testimonials { padding: 4rem 1.5rem; }
  .rmh-cta { padding: 5rem 1.5rem; }
  .rmh-grid { grid-template-columns: 1fr; }
  .rmh-bundle__stack { width: 180px; height: 230px; }
  .rmh-preview { height: 210px; }
}
