:root {
  --velvet-ink: #17101A;
  --deeper-velvet: #120C15;
  --warm-rose: #F2E6E4;
  --blush-white: #FAF0EE;
  --spotlight-crimson: #D4435E;
  --crimson-lighter: #DE5B74;
  --dusk-mauve: #A98F97;
  --raised-velvet: #221724;
  --hairline-wine: #332438;
  --brass-gold: #C7A355;
  --white: #FFFFFF;
  --hero-rose: #FBE3E6;
  --footer-legal: #7E6C75;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--velvet-ink);
  color: var(--warm-rose);
  font-size: 16px;
  line-height: 1.7;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

a {
  color: var(--warm-rose);
}

/* =========================================================
   RIGHT VERTICAL RAIL NAVIGATION
   ========================================================= */
.rail-nav {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  background-color: var(--deeper-velvet);
  border-left: 2px solid var(--spotlight-crimson);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 36px 14px 28px;
  z-index: 100;
  transition: border-color 0.4s ease;
}

.scrolled .rail-nav {
  border-left-color: var(--crimson-lighter);
}

.rail-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spotlight-glyph {
  position: relative;
  width: 18px;
  height: 7px;
  margin: 0 auto 8px;
  background-color: #0C090E;
  border-radius: 2px;
}

.spotlight-glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 44px;
  height: 30px;
  transform: translateX(-50%);
  background-color: var(--spotlight-crimson);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.rail-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.18em;
  line-height: 1.25;
  color: var(--blush-white);
}

.rail-links {
  list-style: none;
  width: 100%;
  margin: 40px 0 0;
}

.rail-links li {
  width: 100%;
}

.rail-links a {
  display: block;
  position: relative;
  padding: 11px 14px;
  color: var(--warm-rose);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.rail-links a:hover {
  color: var(--blush-white);
  padding-left: 20px;
}

.rail-links a:hover::before {
  content: "\2726";
  color: var(--brass-gold);
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
}

.rail-links a.active {
  border-left: 3px solid var(--spotlight-crimson);
  color: var(--blush-white);
}

.rail-email {
  color: var(--dusk-mauve);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding-top: 24px;
  word-break: break-all;
}

/* =========================================================
   MOBILE TOP BAR (hamburger)
   ========================================================= */
.top-bar {
  display: none;
  background-color: var(--deeper-velvet);
  border-bottom: 2px solid var(--spotlight-crimson);
  padding: 12px 18px;
  align-items: center;
  justify-content: space-between;
}

.top-bar .top-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blush-white);
  font-size: 15px;
}

.hamburger {
  background: none;
  border: 2px solid var(--spotlight-crimson);
  border-radius: 3px;
  color: var(--blush-white);
  font-size: 22px;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
}

.hamburger:hover {
  background-color: var(--spotlight-crimson);
  color: var(--white);
}

/* =========================================================
   MAIN CONTENT COLUMN (left of rail)
   ========================================================= */
.main {
  margin-right: 200px;
  min-height: 100vh;
}

/* =========================================================
   SPOTLIGHT HERO
   ========================================================= */
.spotlight-hero {
  position: relative;
  background-color: var(--spotlight-crimson);
  color: var(--white);
  text-align: center;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 130px 40px 160px;
  overflow: hidden;
}

.spotlight-fixture {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 14px;
  background-color: #2A1420;
  border-radius: 2px;
  z-index: 1;
}

.spotlight-fixture::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: 26px;
  height: 20px;
  transform: translateX(-50%);
  background-color: #2A1420;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.spotlight-cone {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 460px;
  background-color: var(--crimson-lighter);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  background-color: var(--white);
  color: var(--spotlight-crimson);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-title {
  color: var(--white);
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero-title .placard {
  display: inline-block;
  background-color: var(--velvet-ink);
  color: var(--blush-white);
  padding: 0 20px 4px;
  margin-top: 6px;
}

.hero-sub {
  color: var(--hero-rose);
  max-width: 660px;
  margin: 28px auto 0;
  font-size: 17px;
  line-height: 1.75;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 3px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background-color: var(--velvet-ink);
  color: var(--blush-white);
}

.btn-primary:hover {
  background-color: #251A2C;
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--spotlight-crimson);
}

.btn-crimson {
  background-color: var(--spotlight-crimson);
  color: var(--white);
}

.btn-crimson:hover {
  background-color: #C23750;
}

/* =========================================================
   VINYL RECORD DISC
   ========================================================= */
.vinyl {
  position: absolute;
  left: 50%;
  bottom: -130px;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #0C090E;
  z-index: 1;
}

.vinyl::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #221A28;
  box-shadow:
    inset 0 0 0 16px #0C090E,
    inset 0 0 0 18px #1E1722,
    inset 0 0 0 34px #0C090E,
    inset 0 0 0 36px #1E1722,
    inset 0 0 0 52px #0C090E,
    inset 0 0 0 54px #1E1722,
    inset 0 0 0 70px #0C090E;
}

.vinyl-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--brass-gold);
  border: 3px solid #8C6E33;
}

.vinyl-label::after {
  content: "RNB";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--velvet-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-head .kicker {
  color: var(--brass-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-head h2 {
  color: var(--blush-white);
  font-size: 40px;
  line-height: 1.2;
  margin-top: 10px;
}

.section-head p {
  color: var(--dusk-mauve);
  margin-top: 16px;
}

/* =========================================================
   PROGRAM LEDGER
   ========================================================= */
.program-ledger {
  background-color: var(--raised-velvet);
  padding: 130px 60px 90px;
}

.ledger {
  max-width: 1040px;
  margin: 0 auto;
}

.ledger-row {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  padding: 30px 0;
  border-bottom: 1px solid var(--hairline-wine);
}

.ledger-row:first-child {
  border-top: 1px solid var(--hairline-wine);
}

.ledger-num {
  min-width: 64px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--spotlight-crimson);
  -webkit-text-stroke: 1px var(--spotlight-crimson);
  -webkit-text-fill-color: transparent;
}

.ledger-main {
  flex: 1;
}

.ledger-main h3 {
  color: var(--blush-white);
  font-size: 26px;
  line-height: 1.25;
}

.ledger-main p {
  color: var(--warm-rose);
  margin-top: 10px;
  max-width: 720px;
}

.ledger-note {
  text-align: right;
  color: var(--dusk-mauve);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 210px;
  padding-top: 6px;
}

.ledger-note .star {
  color: var(--brass-gold);
  display: block;
  margin-bottom: 4px;
}

/* =========================================================
   EQUALIZER STRIP
   ========================================================= */
.eq-strip {
  background-color: var(--deeper-velvet);
  padding: 90px 40px;
}

.eq-rack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.eq-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 104px;
  border-bottom: 1px solid var(--hairline-wine);
}

.eq-bar {
  width: 15px;
  border-radius: 2px 2px 0 0;
}

.eq-bar.crimson {
  background-color: var(--spotlight-crimson);
}

.eq-bar.gold {
  background-color: var(--brass-gold);
}

.eq-label {
  color: var(--dusk-mauve);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 12px;
}

.eq-note {
  text-align: center;
  color: var(--dusk-mauve);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 34px;
}

/* =========================================================
   METRIC BAND
   ========================================================= */
.metric-band {
  background-color: var(--spotlight-crimson);
  color: var(--white);
  text-align: center;
  padding: 64px 40px 72px;
}

.metric-head {
  color: var(--hero-rose);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 34px;
  font-weight: 700;
}

.metric-row {
  display: flex;
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
}

.metric-item {
  flex: 1;
  padding: 0 24px;
  border-right: 1px solid var(--white);
}

.metric-item:last-child {
  border-right: none;
}

.metric-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.metric-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero-rose);
  margin-top: 10px;
}

/* =========================================================
   STATEMENT BAND
   ========================================================= */
.statement-band {
  background-color: var(--velvet-ink);
  padding: 100px 40px;
}

.statement-inner {
  max-width: 840px;
  margin: 0 auto;
  border-left: 8px solid var(--spotlight-crimson);
  padding: 14px 0 14px 44px;
}

.statement-inner p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.5;
  color: var(--blush-white);
}

.statement-inner .star {
  color: var(--brass-gold);
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background-color: var(--raised-velvet);
  text-align: center;
  padding: 100px 40px;
}

.cta-band h2 {
  color: var(--blush-white);
  font-size: 38px;
}

.cta-band p {
  color: var(--dusk-mauve);
  max-width: 620px;
  margin: 18px auto 34px;
}

/* =========================================================
   CENTERED STACK FOOTER
   ========================================================= */
.stack-footer {
  background-color: var(--deeper-velvet);
  text-align: center;
  padding: 72px 24px 44px;
}

.stack-footer .spotlight-glyph {
  margin: 0 auto 14px;
}

.stack-footer .wordmark {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.24em;
}

.stack-footer .blurb {
  color: var(--dusk-mauve);
  max-width: 540px;
  margin: 18px auto 0;
  font-size: 15px;
}

.footer-links {
  margin-top: 28px;
}

.footer-links a {
  color: var(--warm-rose);
  text-decoration: none;
  margin: 0 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--brass-gold);
}

.footer-contact {
  color: var(--dusk-mauve);
  margin-top: 26px;
  font-size: 14px;
}

.footer-legal {
  color: var(--footer-legal);
  margin-top: 20px;
  font-size: 13px;
}

.footer-legal a {
  color: var(--footer-legal);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--warm-rose);
}

/* =========================================================
   SECONDARY PAGE BANNER
   ========================================================= */
.page-banner {
  position: relative;
  background-color: var(--spotlight-crimson);
  color: var(--white);
  text-align: center;
  padding: 96px 40px 84px;
  overflow: hidden;
}

.page-banner .banner-cone {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background-color: var(--crimson-lighter);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.page-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.page-banner .kicker {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-banner h1 {
  color: var(--white);
  font-size: 46px;
  line-height: 1.15;
}

.page-banner p {
  color: var(--hero-rose);
  max-width: 660px;
  margin: 18px auto 0;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.content-section {
  padding: 80px 40px;
}

.service-block {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px 0;
  border-bottom: 1px solid var(--hairline-wine);
}

.service-block:first-of-type {
  border-top: 1px solid var(--hairline-wine);
}

.service-block h2 {
  color: var(--blush-white);
  font-size: 30px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-block h2 .tick {
  color: var(--brass-gold);
  font-size: 18px;
}

.service-block p {
  color: var(--warm-rose);
  margin-top: 14px;
}

.process-list {
  max-width: 840px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline-wine);
}

.process-step .step-num {
  min-width: 44px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--spotlight-crimson);
  -webkit-text-stroke: 1px var(--spotlight-crimson);
  -webkit-text-fill-color: transparent;
}

.process-step .step-body h3 {
  color: var(--blush-white);
  font-size: 20px;
}

.process-step .step-body p {
  color: var(--warm-rose);
  margin-top: 6px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 70px 40px 30px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-intro {
  max-width: 880px;
  margin: 0 auto;
  padding: 70px 40px 0;
  color: var(--dusk-mauve);
}

.contact-form-card {
  flex: 1 1 470px;
  background-color: var(--raised-velvet);
  border: 1px solid var(--hairline-wine);
  padding: 38px;
}

.contact-form-card h2 {
  color: var(--blush-white);
  font-size: 26px;
  margin-bottom: 22px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  color: var(--blush-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background-color: var(--deeper-velvet);
  border: 1px solid var(--hairline-wine);
  border-radius: 3px;
  color: var(--warm-rose);
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 12px 14px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--spotlight-crimson);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  color: var(--blush-white);
  background-color: var(--deeper-velvet);
  border: 1px solid var(--spotlight-crimson);
  border-radius: 3px;
  font-size: 14px;
}

.contact-side {
  flex: 1 1 300px;
}

.contact-side h3 {
  color: var(--blush-white);
  font-size: 22px;
  margin-top: 26px;
}

.contact-side h3:first-child {
  margin-top: 0;
}

.contact-info-line {
  color: var(--warm-rose);
  margin-top: 10px;
  line-height: 1.65;
}

.contact-info-line .label {
  display: block;
  color: var(--dusk-mauve);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-note {
  color: var(--dusk-mauve);
  margin-top: 14px;
  font-size: 14px;
}

.faq-item {
  border-bottom: 1px solid var(--hairline-wine);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--hairline-wine);
}

.faq-question {
  cursor: pointer;
  color: var(--blush-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 34px 16px 0;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--spotlight-crimson);
  font-size: 22px;
}

.faq-item.open .faq-question::after {
  content: "\2013";
}

.faq-answer {
  display: none;
  color: var(--warm-rose);
  padding: 0 0 18px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 48px;
  }

  .ledger-row {
    gap: 22px;
  }

  .ledger-num {
    min-width: 48px;
    font-size: 28px;
  }

  .ledger-note {
    min-width: 170px;
  }
}

@media (max-width: 900px) {
  .top-bar {
    display: flex;
  }

  .rail-nav {
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -18px 0 40px #0A080C;
  }

  .rail-nav.open {
    transform: translateX(0);
  }

  .main {
    margin-right: 0;
  }

  .hero-title {
    font-size: 40px;
  }

  .spotlight-hero {
    padding: 110px 24px 150px;
  }

  .program-ledger {
    padding: 120px 24px 70px;
  }

  .ledger-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .ledger-num {
    min-width: 100%;
  }

  .ledger-main {
    flex-basis: 100%;
  }

  .ledger-note {
    text-align: left;
    min-width: 0;
  }

  .metric-row {
    flex-wrap: wrap;
  }

  .metric-item {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--white);
    padding: 18px;
  }

  .metric-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .statement-inner {
    padding-left: 24px;
  }

  .statement-inner p {
    font-size: 23px;
  }

  .contact-wrap {
    padding: 50px 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 33px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .section-head h2 {
    font-size: 31px;
  }

  .metric-num {
    font-size: 40px;
  }

  .service-block h2 {
    font-size: 24px;
  }

  .page-banner h1 {
    font-size: 34px;
  }
}
