/* =========================================================
   BE WEALTHY — brand site
   Re-skinned to match bewealthypodcast.com:
   warm ivory light mode, ultra-thin massive Inter type,
   gold #C5A55A, WebGL flowing-gold shaders, Stripe cards.
   ========================================================= */

:root {
  --bg:        #F9F7F3;   /* warm ivory */
  --ink:       #111111;
  --ink-soft:  #3a3833;
  --muted:     #605d56;   /* warm gray, AA on muted-bg */
  --border:    #D6D0C4;   /* warm taupe */
  --muted-bg:  #EDE9E1;
  --card:      #FFFFFF;
  --gold:      #C5A55A;
  --gold-deep: #a98935;
  --gold-text: #7a6326;   /* darker gold for small text on light, passes AA */
  --gold-soft: #E5CFA0;
  --dark:      #111111;
  --dark-2:    #14110b;   /* warm near-black for shader panels */

  --ff: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 14px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --clip-para: polygon(0 11%, 100% 0, 100% 89%, 0 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }

/* Ultra-thin massive display type — the Stripe signature */
h1, h2, h3 { font-weight: 300; line-height: .92; letter-spacing: -0.03em; color: var(--ink); }
.h-xl { font-size: clamp(3.1rem, 10vw, 9rem); font-weight: 200; line-height: .86; letter-spacing: -0.035em; }
.h-lg { font-size: clamp(2.2rem, 5.6vw, 4.8rem); font-weight: 200; line-height: .96; letter-spacing: -0.03em; }
.h-md { font-size: clamp(1.45rem, 3vw, 2.2rem); font-weight: 300; line-height: 1.02; }
.gold-i { color: var(--gold-deep); font-style: italic; font-weight: 300; }

.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 56ch; font-weight: 400; }
.section-head { max-width: 820px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .h-lg { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .92rem; letter-spacing: .005em;
  padding: 15px 28px; border-radius: 100px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn--gold { background: var(--gold); color: #1c1606; box-shadow: 0 10px 30px -12px rgba(197,165,90,.85); }
.btn--gold:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(17,17,17,.5); }
.btn--ghost { border: 1px solid var(--border); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-deep); font-weight: 600; font-size: .9rem; transition: gap .3s var(--ease); }
.link-arrow:hover { gap: 14px; }
/* global arrow size (was page-scoped; unscoped pages rendered giant SVGs) */
.link-arrow svg { width: 16px; height: 16px; flex: none; }

/* Parallelogram media (Stripe guest-card clip) + gold treatment */
.clip-para { clip-path: var(--clip-para); }
.photo-gold { position: relative; overflow: hidden; }
.photo-gold > img { filter: grayscale(100%); object-fit: cover; transition: filter .5s var(--ease); width: 100%; height: 100%; }
.photo-gold:hover > img { filter: grayscale(0%); }
.photo-gold::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: radial-gradient(var(--gold) 10%, hsla(0,0%,100%,0) 70%);
  background-position: -80px 160px; mix-blend-mode: lighten; scale: 1.45;
  opacity: .18; transition: opacity 1.05s cubic-bezier(.19,1,.22,1);
}
.photo-gold:hover::after { opacity: .55; }

/* ===========================================================
   NAV
   =========================================================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease); }
.nav.is-scrolled { background: rgba(249,247,243,.9); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 29px; width: auto; display: block; }
.footer .brand__logo { height: 34px; }
@media (max-width: 640px) { .brand__logo { height: 24px; } }
.brand__mark { font-weight: 700; letter-spacing: .12em; font-size: 1.02rem; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; }
.brand__mark .pipe { width: 1px; height: 16px; background: var(--gold); display: inline-block; }
.brand__mark .we { color: var(--gold-deep); }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: .9rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .25s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links .btn { display: none; }

.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__toggle { display: none; width: 30px; height: 20px; position: relative; }
.nav__toggle span { position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 9px; }
.nav__toggle span:nth-child(3) { top: 18px; }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; isolation: isolate; background: var(--bg); }
.hero__canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.hero__inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(24px, 4vw, 56px); padding-top: 120px; padding-bottom: 60px; }
.hero__copy { max-width: 760px; }
.hero__title { margin: 24px 0 26px; }
.hero__title .gold-i { display: block; font-size: clamp(1.5rem, 3.2vw, 2.6rem); line-height: 1.05; letter-spacing: -0.02em; margin-top: .35em; }
.hero__lede { margin-bottom: 36px; max-width: 42ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__next { margin-top: 18px; font-size: .88rem; font-weight: 600; color: var(--gold-text); display: inline-flex; align-items: center; gap: 9px; }
.hero__next::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; animation: heroNextPulse 2.2s ease-in-out infinite; }
@keyframes heroNextPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.hero__stats { display: flex; gap: clamp(28px, 5vw, 60px); margin-top: 56px; flex-wrap: wrap; }
.hero__stat .num { font-size: clamp(2rem, 3.2vw, 2.9rem); font-weight: 200; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.hero__stat .num span { color: var(--gold-deep); }
.hero__stat .lab { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

.hero__portrait { position: relative; width: 100%; max-width: 440px; margin-left: auto; aspect-ratio: 4/5; }
.hero__portrait .photo-gold { width: 100%; height: 100%; clip-path: var(--clip-para); }
.hero__portrait::before { content: ""; position: absolute; inset: -14px -14px auto auto; width: 70%; height: 70%; border: 1px solid var(--gold); clip-path: var(--clip-para); z-index: -1; }

.hero__badge { position: absolute; left: 0; bottom: -18px; z-index: 4; background: rgba(255,255,255,.86); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 100px; padding: 9px 16px 9px 13px; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 18px 40px -20px rgba(17,17,17,.35); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(197,165,90,.5); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(197,165,90,.45);} 50%{ box-shadow: 0 0 0 7px rgba(197,165,90,0);} }
.hero__badge .t { font-size: .78rem; font-weight: 600; }
.hero__badge .t span { color: var(--muted); font-weight: 400; }

.hero__scroll { position: absolute; z-index: 2; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.hero__scroll i { width: 1px; height: 36px; background: linear-gradient(var(--gold), transparent); display: block; animation: scrolly 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrolly { 0%{ transform: scaleY(0);} 40%{ transform: scaleY(1);} 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* ===========================================================
   PRESS / CREDIBILITY — dark strip (white partner logos)
   =========================================================== */
.press { background: var(--dark); overflow: hidden; }
.press__inner { padding-block: 46px; }
.press__label { text-align: center; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 30px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; width: max-content; gap: clamp(44px, 6vw, 84px); align-items: center; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee img { height: 28px; width: auto; object-fit: contain; flex: none; opacity: .58; filter: brightness(1.8) grayscale(1); transition: opacity .3s var(--ease), filter .3s var(--ease); }
.marquee img:hover { opacity: 1; filter: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.press__row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px); }
.press__row img { height: 34px; width: auto; object-fit: contain; opacity: .7; filter: brightness(1.7) grayscale(1); }

/* ===========================================================
   PODCAST FEATURE (Huberman-style grid, light)
   =========================================================== */
.pod { background: var(--bg); }
.pod__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.pod__top .section-head { margin-bottom: 0; }
.listen { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.listen__lab { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.listen__btns { display: flex; gap: 10px; }
.listen__btns a { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 100px; padding: 9px 16px; font-size: .82rem; font-weight: 500; color: var(--ink); background: var(--card); transition: border-color .3s var(--ease), color .3s var(--ease); }
.listen__btns a:hover { border-color: var(--gold); color: var(--gold-deep); }
.listen__btns svg { width: 15px; height: 15px; }

.pod__feature { display: grid; grid-template-columns: 1.2fr 1fr; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--card); margin-bottom: 26px; }
.pod__feature-media { position: relative; min-height: 320px; }
.pod__feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3); }
.pod__feature-media .play { position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; display: flex; align-items: center; justify-content: center; background: var(--gold); border-radius: 50%; color: #fff; box-shadow: 0 14px 40px -10px rgba(0,0,0,.5); transition: transform .3s var(--ease); }
.pod__feature-media .play:hover { transform: scale(1.08); }
.pod__feature-media .play svg { width: 26px; height: 26px; margin-left: 3px; }
.pod__feature-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.pod__feature-body .tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 16px; font-weight: 600; }
.pod__feature-body h3 { margin-bottom: 16px; }
.pod__feature-body p { color: var(--muted); margin-bottom: 26px; }
.pod__feature-meta { display: flex; gap: 16px; font-size: .8rem; color: var(--muted); }

.pod__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ep { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.ep:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -22px rgba(17,17,17,.25); }
.ep__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.ep__thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35); transition: transform .5s var(--ease), filter .4s var(--ease); }
.ep:hover .ep__thumb img { transform: scale(1.05); filter: grayscale(0); }
.ep__thumb .pill { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,.92); font-size: .66rem; letter-spacing: .08em; padding: 4px 10px; border-radius: 100px; color: var(--gold-deep); font-weight: 600; text-transform: uppercase; }
.ep__thumb .play { position: absolute; right: 12px; bottom: 12px; width: 38px; height: 38px; background: var(--gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.ep:hover .play { opacity: 1; transform: translateY(0); }
.ep__thumb .play svg { width: 16px; height: 16px; margin-left: 2px; }
.ep__body { padding: 16px 18px 20px; }
.ep__body .num { font-size: .7rem; letter-spacing: .1em; color: var(--gold-deep); text-transform: uppercase; font-weight: 600; }
.ep__body h4 { font-size: 1rem; font-weight: 500; line-height: 1.32; margin-top: 8px; letter-spacing: -.01em; }
.pod__cta { text-align: center; margin-top: 44px; }

/* ===========================================================
   WORK WITH BRETT — three Stripe-style cards
   =========================================================== */
.work { background: var(--muted-bg); }
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lane { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.lane:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(17,17,17,.3); }
.lane__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.lane__media .photo-gold { width: 100%; height: 100%; clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
.lane__num { position: absolute; top: 14px; left: 16px; z-index: 3; font-size: 1rem; font-weight: 300; color: #fff; letter-spacing: .04em; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.lane__body { padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column; flex: 1; }
.lane__body h3 { margin-bottom: 12px; }
.lane__body p { color: var(--muted); font-size: .95rem; margin-bottom: 20px; flex: 1; }

/* ===========================================================
   ABOUT
   =========================================================== */
.about { background: var(--bg); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.about__media { position: relative; }
.about__media .photo-gold { width: 100%; aspect-ratio: 4/5; clip-path: var(--clip-para); border-radius: 4px; }
.about__media .frame { position: absolute; inset: auto auto -16px -16px; width: 50%; height: 42%; border: 1px solid var(--gold); clip-path: var(--clip-para); z-index: -1; }
.about__media .quote { position: absolute; right: -18px; top: 24px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; max-width: 230px; font-size: 1.02rem; line-height: 1.4; font-weight: 300; box-shadow: 0 20px 50px -22px rgba(17,17,17,.3); }
.about__media .quote span { color: var(--gold-deep); }
.about__body p { color: var(--muted); margin-bottom: 18px; }
.about__body p strong { color: var(--ink); font-weight: 600; }
.about__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 32px 0; }
.about__metric { border-top: 1px solid var(--border); padding-top: 16px; }
.about__metric .n { font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 200; color: var(--gold-deep); line-height: 1; letter-spacing: -.03em; }
.about__metric .l { font-size: .78rem; color: var(--muted); margin-top: 8px; }

/* ===========================================================
   PULL QUOTE — dark shader panel (signature)
   =========================================================== */
.pull { position: relative; overflow: hidden; isolation: isolate; background: var(--dark-2); }
.panel-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
/* center scrim — darkens the shader behind text so type stays legible over bright gold */
.pull::after, .final::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(8,6,3,.62), rgba(8,6,3,.18) 75%); }
.pull__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(96px, 16vw, 220px); }
.pull__mark { font-size: clamp(4rem, 10vw, 9rem); line-height: .6; color: var(--gold-soft); opacity: .8; display: block; height: .5em; font-weight: 300; }
.pull blockquote { font-weight: 200; font-size: clamp(1.9rem, 5vw, 4rem); line-height: 1.12; letter-spacing: -.03em; max-width: 18ch; margin: 26px auto 32px; color: #fff; }
.pull blockquote .gold-i { color: var(--gold-soft); }
.pull cite { font-style: normal; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.pull cite b { color: #fff; font-weight: 600; }

/* ===========================================================
   TESTIMONIALS (light cards)
   =========================================================== */
.quotes { background: var(--bg); }
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.qcard { border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px; background: var(--card); display: flex; flex-direction: column; }
.qcard .stars { color: var(--gold); letter-spacing: 3px; font-size: .9rem; margin-bottom: 18px; }
.qcard blockquote { font-size: 1.18rem; line-height: 1.5; font-weight: 300; margin-bottom: 24px; flex: 1; letter-spacing: -.01em; }
.qcard__person { display: flex; align-items: center; gap: 14px; }
.qcard__person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; filter: grayscale(1); object-position: top; }
.qcard__person .n { font-weight: 600; font-size: .92rem; }
.qcard__person .r { font-size: .78rem; color: var(--muted); }

/* ===========================================================
   RESOURCES
   =========================================================== */
.res { background: var(--muted-bg); }
.res__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.res__card { position: relative; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 280px; background: var(--card); }
.res__card--wide { grid-column: 1 / -1; grid-template-columns: 1.4fr 1fr; background: var(--ink); }
.res__card--wide .res__card-body { color: var(--bg); }
.res__card--wide .res__card-body h3 { color: #fff; }
.res__card--wide .res__card-body p { color: rgba(255,255,255,.6); }
.res__card--wide .res__card-body .tag { color: var(--gold-soft); }
.res__card-body { padding: clamp(26px, 3vw, 42px); display: flex; flex-direction: column; justify-content: center; }
.res__card-body .tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; font-weight: 600; }
.res__card-body h3 { margin-bottom: 14px; }
.res__card-body p { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.res__card-media { position: relative; }
.res__card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4); }

/* ===========================================================
   NEWSLETTER
   =========================================================== */
.news { background: var(--bg); }
.news__panel { border: 1px solid var(--border); border-radius: 20px; background: var(--card); padding: clamp(40px, 6vw, 76px); text-align: center; position: relative; overflow: hidden; }
.news__panel::before { content: ""; position: absolute; width: 460px; height: 460px; top: -200px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(197,165,90,.16), transparent 65%); }
.news__panel > * { position: relative; }
.news__panel h2 { margin: 18px auto 16px; max-width: 18ch; }
.news__panel .lede { margin: 0 auto 32px; }
.news__form { display: flex; gap: 12px; max-width: 520px; margin-inline: auto; flex-wrap: wrap; }
.news__form input { flex: 1; min-width: 220px; background: var(--bg); border: 1px solid var(--border); color: var(--ink); border-radius: 100px; padding: 15px 22px; font-size: .95rem; font-family: inherit; }
.news__form input:focus { outline: none; border-color: var(--gold); }
.news__fine { font-size: .76rem; color: var(--muted); margin-top: 16px; }
.form-note { font-size: .82rem; color: var(--gold-deep); margin-top: 14px; min-height: 1em; font-weight: 500; }

/* ===========================================================
   FINAL CTA — dark shader panel
   =========================================================== */
.final { position: relative; overflow: hidden; isolation: isolate; background: var(--dark-2); }
.final__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(90px, 14vw, 180px); }
.final__inner h2 { margin: 22px auto 26px; max-width: 18ch; color: #fff; font-weight: 200; }
.final__inner h2 .gold-i { color: var(--gold-soft); }
.final__inner .lede { margin: 0 auto 38px; color: rgba(255,255,255,.72); }
.final__inner .eyebrow { color: var(--gold-soft); }
.final__inner .eyebrow::before, .final__inner .eyebrow::after { background: var(--gold-soft); }
.final__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final .btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.final .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--dark); color: var(--bg); padding-block: clamp(56px, 7vw, 84px) 32px; }
.footer .brand__mark { color: #fff; font-size: 1.12rem; }
.footer .brand__mark .we { color: var(--gold-soft); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer__brand p { color: rgba(255,255,255,.55); margin-top: 18px; max-width: 30ch; font-size: .92rem; }
.footer__col h5 { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.footer__col a { display: block; color: rgba(255,255,255,.85); font-size: .9rem; padding: 6px 0; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--gold-soft); }
.footer__socials { display: flex; gap: 12px; margin-top: 22px; }
.footer__socials a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.footer__socials a:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.footer__socials svg { width: 17px; height: 17px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__bottom .links { display: flex; gap: 22px; }
.footer__bottom .links a { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer__bottom .links a:hover { color: var(--gold-soft); }
.footer__legal { margin-top: 18px; font-size: .72rem; line-height: 1.6; color: rgba(255,255,255,.38); max-width: 100ch; }

/* ===========================================================
   SUBPAGE STUBS
   =========================================================== */
.subhero { position: relative; padding-top: 74px; border-bottom: 1px solid var(--border); overflow: hidden; background: var(--bg); }
.subhero__glow { position: absolute; right: -8%; top: -25%; width: 55vw; height: 55vw; max-width: 680px; max-height: 680px; background: radial-gradient(circle, rgba(197,165,90,.22), transparent 62%); z-index: 0; }
.subhero__inner { padding-block: clamp(80px, 12vw, 150px); position: relative; z-index: 2; max-width: 1080px; }
/* Subhero headings get a wider measure + a slightly smaller clamp than the home
   hero (which caps at 9rem) so long titles breathe across ~2 lines instead of
   stacking word-per-line in a narrow column. */
.subhero h1 { margin: 22px 0 24px; font-size: clamp(2.7rem, 6.2vw, 5.4rem); letter-spacing: -.032em; }
.subhero .lede, .subhero .crumbs, .subhero__actions { max-width: 720px; }
.subhero .lede { margin-bottom: 34px; }
.subhero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.crumbs { font-size: .8rem; color: var(--muted); }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs .sep { margin: 0 8px; opacity: .5; }

.stub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stub-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; background: var(--card); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.stub-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -24px rgba(17,17,17,.25); }
.stub-card .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(197,165,90,.14); border: 1px solid rgba(197,165,90,.4); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); margin-bottom: 20px; font-size: 1.2rem; font-weight: 300; }
.stub-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -.01em; }
.stub-card p { color: var(--muted); font-size: .92rem; }

.todo { display: inline-block; background: rgba(197,165,90,.14); border: 1px dashed rgba(197,165,90,.55); color: var(--gold-deep); font-size: .74rem; padding: 3px 10px; border-radius: 6px; letter-spacing: .04em; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.split__media .photo-gold { width: 100%; aspect-ratio: 4/3; clip-path: var(--clip-para); border-radius: 4px; }
/* subpages use a bare <img> in split media — give it the same gold/clip treatment */
.split__media > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; clip-path: var(--clip-para); border-radius: 4px; filter: grayscale(1); }
/* dark logo strip for white partner logos sitting on a light section (e.g. Rolodex) */
.logo-strip { background: var(--dark); border-radius: var(--radius); padding: 36px clamp(24px,4vw,48px); }
.logo-strip img { filter: brightness(1.8) grayscale(1) !important; opacity: .7 !important; }
.split__body p { color: var(--muted); margin-bottom: 16px; }
.checklist { margin: 24px 0; }
.checklist li { display: flex; gap: 12px; padding: 9px 0; color: var(--ink); font-size: .96rem; align-items: flex-start; }
.checklist li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; background: rgba(197,165,90,.16); border: 1px solid var(--gold); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a98935' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* Contact form / calculator */
.formcard { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: clamp(28px, 4vw, 44px); }
.formrow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; letter-spacing: .03em; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--ink); border-radius: 10px; padding: 13px 16px; font-size: .95rem; font-family: inherit; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .pod__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 920px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links { display: flex; flex-direction: column; gap: 4px; position: fixed; inset: 74px 0 0 0; background: rgba(249,247,243,.98); backdrop-filter: blur(16px); padding: 30px var(--gutter); align-items: flex-start; z-index: 99; }
  .nav.is-open .nav__links a { font-size: 1.3rem; padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav.is-open .nav__links .btn { display: inline-flex; margin-top: 20px; }

  .hero__inner { grid-template-columns: 1fr; padding-top: 110px; padding-bottom: 56px; }
  .hero__portrait { order: -1; max-width: 300px; margin: 0 0 8px; }
  .hero__portrait::before { display: none; }
  .hero__badge { display: none; }
  .hero__scroll { display: none; }

  .pod__feature { grid-template-columns: 1fr; }
  .pod__feature-media { min-height: 240px; }
  .work__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .quotes__grid { grid-template-columns: 1fr; }
  .res__grid { grid-template-columns: 1fr; }
  .res__card, .res__card--wide { grid-template-columns: 1fr; }
  .res__card-media { min-height: 200px; }
  .split { grid-template-columns: 1fr; }
  .stub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .pod__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .stub-grid { grid-template-columns: 1fr; }
  .formrow { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px 28px; }
  .about__media .quote { position: static; max-width: none; margin-top: 16px; }
  .pod__top { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
}

/* ===========================================================
   SHARED CONTRAST UTILITIES (added round 3)
   Dark/foil section bands + light gold-grain accents.
   Reuse the two already-cached textures only — no new assets.
   Any page can drop these on a <section> for homepage-style rhythm.
   =========================================================== */
/* Near-black band with luxe gold-foil texture, darkened for white text. */
.band--foil {
  position: relative; isolation: isolate;
  background:
    linear-gradient(rgba(10,8,4,.86), rgba(12,9,4,.92)),
    url("../img/gold_foil_dark.webp");
  background-size: cover; background-position: center;
  color: #fff;
}
/* Flat warm near-black band (no texture) for lighter-weight contrast. */
.band--ink {
  position: relative; isolation: isolate;
  background: var(--dark-2); color: #fff;
}
/* Shared white-on-dark text treatment for the bands above. */
.band--foil .eyebrow, .band--ink .eyebrow { color: var(--gold-soft); }
.band--foil .eyebrow::before, .band--foil .eyebrow::after,
.band--ink .eyebrow::before, .band--ink .eyebrow::after { background: var(--gold-soft); }
.band--foil h1, .band--foil h2, .band--foil h3,
.band--ink h1, .band--ink h2, .band--ink h3 { color: #fff; }
.band--foil .gold-i, .band--ink .gold-i { color: var(--gold-soft); }
.band--foil .lede, .band--ink .lede { color: rgba(255,255,255,.74); }
.band--foil .btn--ghost, .band--ink .btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.band--foil .btn--ghost:hover, .band--ink .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Subtle ivory gold-grain wash for light sections (keep it quiet). */
.band--grain {
  background-color: var(--muted-bg);
  background-image: linear-gradient(rgba(249,247,243,.86), rgba(249,247,243,.86)), url("../img/gold_grain_light.webp");
  background-size: cover; background-position: center;
}

/* Footer socials: 8 icons now (TikTok added). Keep the row on one line at
   phone widths by tightening the gap/size, with wrap as a safety net. */
@media (max-width: 480px) {
  .footer__socials { gap: 9px; flex-wrap: wrap; }
  .footer__socials a { width: 34px; height: 34px; }
  .footer__socials svg { width: 15px; height: 15px; }
}

/* ===========================================================
   ANNOUNCEMENT BAR (added round 5) — site-wide, above the nav.
   Injected by main.js at the top of <body>. Non-dismissable.
   The fixed nav sits below it via --annc-h; body padding-top
   reserves the space so nothing hides under the fixed bar and
   there is no jump between scrolled/unscrolled nav states.
   =========================================================== */
:root { --annc-h: 46px; }
body { padding-top: var(--annc-h); }
html { scroll-padding-top: calc(var(--annc-h) + 74px); }

.annc {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--annc-h);
  background: var(--dark-2);
  border-bottom: 1px solid rgba(197,165,90,.4);
  display: flex; align-items: center;
}
.annc__inner { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; }
.annc__tag {
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  color: #1c1606; background: var(--gold); border-radius: 100px; padding: 3px 9px; flex: none;
}
.annc__msg { font-size: .92rem; color: rgba(255,255,255,.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.annc__dates { color: var(--gold-soft); }
.annc__cta { font-size: .92rem; font-weight: 700; color: var(--gold-soft); white-space: nowrap; flex: none; }
.annc__cta:hover { color: #fff; }

/* Push the fixed nav down below the announcement bar. */
.nav { top: var(--annc-h); }
.nav.is-open .nav__links { inset: calc(var(--annc-h) + 74px) 0 0 0 !important; }

/* Shorten the bar to one line on small screens: drop the dates span. */
@media (max-width: 640px) {
  .annc__dates { display: none; }
  .annc__msg { white-space: nowrap; }
  .annc__tag { font-size: .54rem; padding: 3px 7px; }
  .annc__msg, .annc__cta { font-size: .72rem; }
}

/* Nav fit: 6 links + CTA. Tighten the link gap on mid widths so the row
   never crowds the CTA before the hamburger takes over at 920px. */
@media (max-width: 1180px) {
  .nav__links { gap: 22px; }
  .nav__links a { font-size: .86rem; }
}

/* =========================================================
   TESTIMONIAL MASONRY (shared: home wall + page strips)
   JS flex-column masonry (main.js wireMasonry). Deliberately NOT CSS
   column-count: transformed cards inside a multicol fragment trigger a
   Chromium repaint bug where the top-of-column and last-column cards
   fade out on hover. Flex columns keep each card in normal block flow.
   ========================================================= */
.pwall-wrap { position: relative; margin-top: clamp(28px, 3.4vw, 46px); }
.pwall { display: flex; align-items: flex-start; gap: clamp(14px, 1.6vw, 20px); }
.pwall__col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 20px); }
.pwall__card { position: relative; background: #fff; padding: 8px; border-radius: 14px; border: 1px solid var(--border); box-shadow: 0 20px 44px -26px rgba(17,17,17,.34), 0 2px 5px rgba(17,17,17,.05); transform: rotate(var(--tilt, 0deg)); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pwall__card:hover { transform: rotate(0deg) translateY(-5px) scale(1.012); box-shadow: 0 34px 66px -26px rgba(17,17,17,.42), 0 4px 10px rgba(17,17,17,.08); z-index: 3; }
.pwall__card img { width: 100%; height: auto; display: block; border-radius: 8px; }
/* collapsed height + fade until "See more" (set by JS only when the wrap has data-cap and overflows) */
.pwall-wrap.is-capped .pwall { max-height: 1600px; overflow: hidden; }
.pwall-wrap.is-capped::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 210px; background: linear-gradient(rgba(249,247,243,0), var(--bg)); pointer-events: none; }
.pwall__more { display: none; margin: 30px auto 0; }
@media (max-width: 1100px) { .pwall-wrap.is-capped .pwall { max-height: 1400px; } }
@media (max-width: 760px) { .pwall-wrap.is-capped .pwall { max-height: 1100px; } }
@media (max-width: 480px) { .pwall { max-width: 460px; margin-inline: auto; } }
@media (prefers-reduced-motion: reduce) { .pwall__card { transition: none; } }

/* =========================================================
   TESTIMONIAL LIGHTBOX (shared: home wall + page strips)
   ========================================================= */
.pwall__btn { display: block; width: 100%; padding: 0; margin: 0; border: 0; background: none; cursor: zoom-in; border-radius: 8px; color: inherit; font: inherit; }
.pwall__btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

body.lbx-open { overflow: hidden; }
.lbx { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: clamp(14px, 3vw, 40px); }
.lbx.is-open { display: flex; }
.lbx__backdrop { position: absolute; inset: 0; background: rgba(10, 8, 4, .93); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.lbx__stage { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 96vw; max-height: 92vh; }
.lbx__img { display: block; max-width: 96vw; max-height: 82vh; width: auto; height: auto; border-radius: 10px; background: #fff; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8); }
.lbx__cap { margin-top: 12px; color: rgba(255, 255, 255, .78); font-size: .84rem; text-align: center; max-width: 62ch; line-height: 1.4; }
.lbx__count { color: var(--gold-soft); font-weight: 600; letter-spacing: .04em; }
.lbx__close { position: absolute; top: 0; right: 0; transform: translate(30%, -30%); z-index: 4; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); background: rgba(17, 13, 6, .7); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .25s var(--ease), border-color .25s var(--ease); }
.lbx__close:hover { background: var(--gold-deep); border-color: var(--gold); }
.lbx__nav { position: fixed; top: 50%; transform: translateY(-50%); z-index: 4; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .28); background: rgba(17, 13, 6, .62); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .25s var(--ease), border-color .25s var(--ease); }
.lbx__nav:hover { background: var(--gold-deep); border-color: var(--gold); }
.lbx__nav svg { width: 22px; height: 22px; }
.lbx__prev { left: clamp(10px, 2.5vw, 34px); }
.lbx__next { right: clamp(10px, 2.5vw, 34px); }
.lbx__close svg { width: 20px; height: 20px; }
.lbx[hidden] { display: none; }
@media (max-width: 620px) { .lbx__nav { width: 44px; height: 44px; bottom: 20px; top: auto; transform: none; } .lbx__prev { left: 20px; } .lbx__next { right: 20px; } .lbx__img { max-height: 74vh; } }

/* ===== Accessibility pass (2026-07-27): small gold text darkened for AA on light
   backgrounds. Dark bands keep their own --gold-soft overrides (higher specificity). ===== */
.eyebrow, .link-arrow, .pod__feature-body .tag, .res__card-body .tag,
.ep__thumb .pill, .ep__body .num, .spath__tag, .tagpill, .chip,
.runstep__n, .arc__row-num { color: var(--gold-text); }
.res__card--wide .res__card-body .tag { color: var(--gold-soft); }

/* Bigger tap target for the hamburger without moving the burger lines */
.nav__toggle::after { content: ""; position: absolute; inset: -14px -12px; }

@media (max-width: 760px) {
  /* Mobile font-size floor for tiny labels + tap-target padding */
  .eyebrow, .spath__tag, .tagpill, .chip, .ep__body .num, .arc__row-num { font-size: 13px; }
  .annc__msg, .annc__cta { font-size: 13px; }
  .annc__cta { padding-block: 12px; }
  .link-arrow { padding-block: 10px; }
  .crumbs { font-size: 14px; }
}

/* ===== Rental Tracker feature band (index + resources) ===== */
.rtfeat { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(30px, 4.5vw, 64px); align-items: center;
  background: linear-gradient(120deg, rgba(20,17,11,.94), rgba(20,17,11,.86)), url("../img/gold_foil_dark.webp") center/cover;
  border: 1px solid rgba(197,165,90,.45); border-radius: 18px; padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 40px 80px -44px rgba(0,0,0,.55); }
.rtfeat .eyebrow { color: var(--gold-soft); }
.rtfeat .eyebrow::before { background: var(--gold-soft); }
.rtfeat h3 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3.1rem); font-weight: 200; letter-spacing: -.03em; line-height: 1; margin: 16px 0 14px; }
.rtfeat p { color: rgba(255,255,255,.74); max-width: 54ch; }
.rtfeat__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.rtfeat__chips span { font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: var(--gold-soft);
  border: 1px solid rgba(197,165,90,.4); border-radius: 100px; padding: 6px 14px; }
.rtfeat__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.rtfeat .btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.rtfeat .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.rtfeat__shot { max-height: 440px; overflow: hidden; border-radius: 14px; border: 1px solid rgba(197,165,90,.35);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.65); }
.rtfeat__shot img { width: 100%; height: auto; display: block; object-fit: cover; object-position: top; }
@media (max-width: 900px) {
  .rtfeat { grid-template-columns: 1fr; }
  .rtfeat__shot { max-height: 340px; }
}

/* ===== Rental Tracker popup ===== */
.rtp { position: fixed; inset: 0; z-index: 400; display: flex; align-items: center; justify-content: center; padding: 22px; }
.rtp[hidden] { display: none; }
.rtp__backdrop { position: absolute; inset: 0; background: rgba(12,10,6,.66); backdrop-filter: blur(3px); }
.rtp__card { position: relative; z-index: 1; width: min(460px, 100%); background: #14110b;
  border: 1px solid rgba(197,165,90,.5); border-radius: 18px; overflow: hidden;
  box-shadow: 0 50px 110px -40px rgba(0,0,0,.8); animation: rtpIn .35s var(--ease-out) both; }
@keyframes rtpIn { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }
.rtp__shot { aspect-ratio: 1400 / 1045; max-height: 38vh; background: #faf7f4; overflow: hidden; border-bottom: 1px solid rgba(197,165,90,.3); }
.rtp__shot img { width: 100%; height: 100%; display: block; object-fit: contain; }
.rtp__body { padding: 26px 28px 28px; }
.rtp__body .eyebrow { color: var(--gold-soft); }
.rtp__body .eyebrow::before { background: var(--gold-soft); }
.rtp__body h3 { color: #fff; font-size: 1.55rem; font-weight: 300; letter-spacing: -.02em; line-height: 1.15; margin: 12px 0 10px; }
.rtp__body p { color: rgba(255,255,255,.72); font-size: .95rem; margin-bottom: 20px; }
.rtp__skip { display: inline-block; margin-top: 14px; font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 3px; background: none; border: 0; cursor: pointer; }
.rtp__skip:hover { color: #fff; }
.rtp__close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.45); color: #fff; display: flex; align-items: center; justify-content: center; }
.rtp__close:hover { background: var(--gold); color: #1c1606; }
.rtp__close svg { width: 16px; height: 16px; }
body.rtp-open { overflow: hidden; }
