/* ══════════════════════════════════════════════════════
   RESOURCES PAGE — resources.html
   Three sections:
     rp-hero  — page header ("Your Toolkit")
     rs1      — three resource cards
     rp-int   — interstitial quote block
     rs2      — "How to get the most value" steps + CTA
   ══════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   PAGE HERO — "Your Toolkit"
   Centred 878px content block, padding-top to clear navbar.
   ════════════════════════════════════════════════════════ */
.rp-hero {
  position: relative;
  width: 100%;
  background: #150d00;
  padding: 160px 0 200px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

/* Star/grain texture */
.rp-hero__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: color-dodge;
  opacity: 0.6;
  overflow: hidden;
}
.rp-hero__texture img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Decorative amber orbs */
.rp-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.rp-hero__orb--tr {
  right: -160px;
  top: 40px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    ellipse at 35% 45%,
    rgba(232, 193, 122, 0.45) 0%,
    rgba(213, 153, 62, 0.22) 35%,
    rgba(213, 153, 62, 0.07) 60%,
    transparent 80%
  );
}
.rp-hero__orb--left {
  display: none;
}

/* Inner content block — 878px centred */
.rp-hero__inner {
  position: relative;
  z-index: 1;
  width: 878px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rp-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.264px;
  line-height: 16.32px;
  color: var(--color-gold);
  margin: 0;
}

.rp-hero__headline {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 86px;
  letter-spacing: -4px;
  background: linear-gradient(to bottom, #ffffff 19.478%, #c0c0c0 93.976%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.rp-hero__hl-gold {
  -webkit-text-fill-color: var(--color-gold);
  color: var(--color-gold);
}

.rp-hero__intro {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.65;
  color: #ffffff;
  margin: 8px 0 0;
  width: 822px;
}

.rp-hero__desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
  width: 644px;
}


/* ════════════════════════════════════════════════════════
   SECTION 01 — Resource Cards
   848px centred list of 3 stacked cards.
   ════════════════════════════════════════════════════════ */
.rs1 {
  position: relative;
  width: 100%;
  background: #150d00;
  padding: 60px 0 100px;
}

/* 848px centred wrapper */
.rs1__inner {
  width: 848px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Single card ── */
.rs1__card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 37px 36px 36px;
  background: rgba(255, 245, 230, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  width: 100%;
}

/* ── Left column: icon box (40px) + number ── */
.rs1__col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 80px;
  flex-shrink: 0;
}

/* Amber icon box — 40×40px */
.rs1__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(213, 153, 62, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
}

.rs1__icon {
  width: 20px;
  height: 20px;
  display: block;
}

/* Italic resource number — Playfair Display, 32px, gold */
.rs1__num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: var(--color-gold);
  margin: 0;
}

/* ── Right column: all content ── */
.rs1__col-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Resource header: title + subtitle */
.rs1__resource-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rs1__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 27.6px;
  color: #f5ede0;
  margin: 0;
  white-space: nowrap;
}

.rs1__subtitle {
  font-family: var(--font-body);
  font-size: 9.92px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.488px;
  line-height: 14.88px;
  color: rgba(245, 237, 224, 0.54);
  margin: 0;
  white-space: nowrap;
}

/* Content block: body + list + italic */
.rs1__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rs1__body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 25.84px;
  letter-spacing: -0.5px;
  color: rgba(245, 237, 224, 0.80);
  margin: 0;
}

.rs1__body--muted-italic {
  font-style: italic;
  color: rgba(245, 237, 224, 0.54);
}

/* Bullet list — amber dots */
.rs1__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rs1__list-item {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.528px;
  letter-spacing: -0.5px;
  color: #f5ede0;
}

.rs1__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* Italic gold note */
.rs1__italic {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13.6px;
  font-weight: 400;
  line-height: 21.76px;
  color: var(--color-gold);
  margin: 0;
}

/* Sub-box: "How to Use It" / "Important" */
.rs1__box {
  background: rgba(255, 245, 230, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 21px 21px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rs1__box-title {
  font-family: var(--font-body);
  font-size: 10.4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.56px;
  line-height: 15.6px;
  color: #f5ede0;
  margin: 0;
}

.rs1__box-title--gold {
  color: var(--color-gold);
}

/* Numbered list in How to Use It box */
.rs1__box-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: box-counter;
}

.rs1__box-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 21.08px;
  letter-spacing: -0.5px;
  color: rgba(245, 237, 224, 0.80);
  counter-increment: box-counter;
}

.rs1__box-item::before {
  content: counter(box-counter) ".";
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 12px;
  line-height: 19.2px;
  color: var(--color-gold);
  flex-shrink: 0;
  min-width: 14px;
}

/* List in Important box — still bullet dots */
.rs1__list--in-box .rs1__list-item {
  color: rgba(245, 237, 224, 0.80);
}

/* Resource CTA button — amber */
.rs1__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #d5993e;
  border: 1px solid #c98724;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0px 2px 8.5px 0px rgba(213, 153, 62, 0.25),
    inset 0px 0px 11.1px 0px rgba(69, 43, 5, 0.80);
  transition: background 0.2s, box-shadow 0.2s;
  align-self: flex-start;
}
.rs1__btn:hover {
  background: #e8aa50;
  box-shadow:
    0px 4px 16px 0px rgba(213, 153, 62, 0.40),
    inset 0px 0px 11.1px 0px rgba(69, 43, 5, 0.80);
}

.rs1__btn-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════
   INTERSTITIAL — "Your work won't end up in a dusty PDF"
   812px centred text block between Section 01 and 02.
   ════════════════════════════════════════════════════════ */
.rp-int {
  position: relative;
  width: 100%;
  background: #150d00;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Flanking orbs */
.rp-int__orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.rp-int__orb--left {
  left: -160px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(
    ellipse at 65% 35%,
    rgba(213, 153, 62, 0.22) 0%,
    rgba(213, 153, 62, 0.08) 45%,
    transparent 70%
  );
}

/* 812px centred content */
.rp-int__inner {
  position: relative;
  z-index: 1;
  width: 812px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.rp-int__headline {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 68px;
  letter-spacing: -1.68px;
  background: linear-gradient(to bottom, #ffffff 19.478%, #c0c0c0 93.976%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.rp-int__hl-gold {
  -webkit-text-fill-color: var(--color-gold);
  color: var(--color-gold);
}

.rp-int__body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
  width: 748px;
}

.rp-int__bold {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
  width: 748px;
}


/* ════════════════════════════════════════════════════════
   SECTION 02 — How to Get the Most Value
   1128px centred, 2×2 step grid + quote + CTA button.
   ════════════════════════════════════════════════════════ */
.rs2 {
  position: relative;
  width: 100%;
  background: #150d00;
  padding: 100px 0 120px;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative amber orb — right side (matches Figma Container at x=1207, y=3031, w=362) */
.rs2__orb {
  position: absolute;
  right: -140px;
  top: 30%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at 35% 45%,
    rgba(232, 193, 122, 0.35) 0%,
    rgba(213, 153, 62, 0.16) 35%,
    rgba(213, 153, 62, 0.05) 60%,
    transparent 78%
  );
}

/* Star/grain texture */
.rs2__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: color-dodge;
  opacity: 0.6;
  overflow: hidden;
}
.rs2__texture img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* 1128px centred wrapper */
.rs2__inner {
  position: relative;
  z-index: 1;
  width: 1128px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* Header: eyebrow + headline */
.rs2__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 878px;
  text-align: left;
}

.rs2__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.264px;
  line-height: 16.32px;
  color: var(--color-gold);
  margin: 0;
}

.rs2__headline {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 86px;
  letter-spacing: -4px;
  background: linear-gradient(to bottom, #ffffff 19.478%, #c0c0c0 93.976%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.rs2__hl-gold {
  -webkit-text-fill-color: var(--color-gold);
  color: var(--color-gold);
}

/* 2×2 step grid — 831px centred within inner */
.rs2__steps {
  display: grid;
  grid-template-columns: repeat(2, 410px);
  gap: 13px;
  width: 831px;
}

/* Individual step card */
.rs2__step {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 106px;
  padding: 0 23px;
  background: rgba(255, 245, 230, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(22.4px);
  -webkit-backdrop-filter: blur(22.4px);
}

.rs2__step-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 46.895px;
  line-height: 69.752px;
  color: rgba(213, 153, 62, 0.54);
  white-space: nowrap;
  flex-shrink: 0;
}

.rs2__step-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.5px;
  color: rgba(245, 237, 224, 0.80);
  margin: 0;
}

/* Description paragraph */
.rs2__desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.70);
  text-align: center;
  margin: 0;
  width: 728px;
}

/* Decorative quote divider: line — italic text — line */
.rs2__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.rs2__divider-line {
  flex: 1;
  height: 1px;
}
.rs2__divider-line--left {
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(213, 153, 62, 0.20));
}
.rs2__divider-line--right {
  background: linear-gradient(to right, rgba(213, 153, 62, 0.20), rgba(0, 0, 0, 0));
}

.rs2__divider-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 33.6px;
  color: var(--color-gold);
  margin: 0;
  padding: 10px 21px;
  white-space: nowrap;
  text-align: center;
}

/* CTA button */
.rs2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: #d5993e;
  border: 1px solid #c98724;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0px 2px 8.5px 0px rgba(213, 153, 62, 0.25),
    inset 0px 0px 11.1px 0px rgba(69, 43, 5, 0.80);
  transition: background 0.2s, box-shadow 0.2s;
}
.rs2__btn:hover {
  background: #e8aa50;
  box-shadow:
    0px 4px 16px 0px rgba(213, 153, 62, 0.40),
    inset 0px 0px 11.1px 0px rgba(69, 43, 5, 0.80);
}
