/* ========================================
   THE REVENUE ROOM
   Editorial private-members-club aesthetic
   Powered by AXS Capital × Source Point Capital
   ======================================== */

:root {
  /* Surfaces */
  --ink:        #080E1C;
  --ink-soft:   #0D1426;
  --ink-card:   #11182D;
  --ink-edge:   rgba(201, 169, 97, 0.18);
  --ink-edge-2: rgba(255, 255, 255, 0.06);

  /* Cream & paper for inverted card */
  --paper:      #F2EBD7;
  --paper-2:    #E9DFC4;
  --paper-line: rgba(20, 24, 43, 0.18);
  --paper-ink:  #14182B;

  /* Gold */
  --gold:       #C9A961;
  --gold-2:     #E0BD7C;
  --gold-deep:  #8C7440;
  --gold-soft:  rgba(201, 169, 97, 0.55);

  /* Type */
  --text:       #F5EFDB;
  --muted:      #BFB8A2;
  --hush:       #8A887E;

  /* Scale */
  --gutter:     clamp(20px, 4vw, 56px);
  --pad-sec:    clamp(96px, 12vw, 160px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 450;
  font-size: 16.5px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Grain overlay on whole document */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.92 0 0 0 0 0.7 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

main, header, footer, section, nav { position: relative; z-index: 2; }

/* Type system */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  color: #fff;
  letter-spacing: -0.01em;
}

.serif-italic, em.italic, .italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-2); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--gold); color: var(--ink); }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--pad-sec) 0; position: relative; }

/* ========================================
   MASTHEAD — top editorial bar
   ======================================== */
.masthead {
  background: var(--ink);
  border-bottom: 1px solid var(--ink-edge);
  padding: 14px 0;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  position: relative;
  z-index: 3;
}
.masthead-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.masthead-mark { color: var(--gold); }
.masthead-mid { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 600; letter-spacing: .04em; text-transform: none; color: var(--text); font-size: 14px; }

@media (max-width: 760px) { .masthead { font-size: 10px; } .masthead-mid { display: none; } }

/* ========================================
   NAV — fixed, restrained
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 14, 28, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--ink-edge-2);
  padding: 18px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand-mark {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.3));
}
.nav-brand-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .005em;
}
.nav-brand-text em { color: var(--gold); font-style: italic; font-weight: 600; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: right .35s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 0;
  transition: background-color .25s ease, color .25s ease;
  background: transparent;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

@media (max-width: 880px) { .nav-links { display: none; } }

/* ========================================
   ORNAMENTAL ELEMENTS
   ======================================== */
.rule-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  width: 100%;
  border: 0;
  opacity: .6;
}
.rule-gold-short {
  height: 1px;
  background: var(--gold);
  width: 56px;
  border: 0;
  opacity: .8;
}

.fleuron {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--gold);
  opacity: .8;
}
.fleuron::before, .fleuron::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--gold-soft);
}
.fleuron-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.kicker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gold);
  letter-spacing: .03em;
  display: inline-block;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .25s ease-out, color .25s ease-out, border-color .25s ease-out, transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-ghost {
  border-color: var(--gold-soft);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-arrow::after {
  content: ' →';
  font-family: 'Inter Tight', serif;
  margin-left: 6px;
  transition: margin-left .25s ease;
}
.btn-arrow:hover::after { margin-left: 12px; }

/* ========================================
   HERO — editorial asymmetric
   ======================================== */
.hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-eyebrow::before {
  content: '';
  height: 1px;
  width: 32px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(48px, 8.2vw, 116px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.022em;
  margin-bottom: 36px;
}
.hero h1 .it {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero h1 .br { display: block; }

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--text);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-sub::before {
  content: '“';
  display: block;
  font-size: 60px;
  line-height: 0.4;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 56px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-meta strong {
  color: var(--gold);
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  margin-left: 4px;
}

/* Hero emblem on right */
.hero-emblem-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.hero-emblem {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 30px 80px rgba(201, 169, 97, 0.25)) drop-shadow(0 6px 20px rgba(0,0,0,.6));
  transition: transform .8s cubic-bezier(.17,.67,.3,1.3);
  animation: emblem-float 8s ease-in-out infinite;
}
@keyframes emblem-float {
  0%, 100% { transform: translateY(0) rotateZ(0); }
  50% { transform: translateY(-10px) rotateZ(0.4deg); }
}
.hero-emblem-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 60%);
  z-index: -1;
  filter: blur(40px);
}
.hero-emblem-num {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-emblem-cap {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero-emblem { max-width: 280px; }
  .hero-emblem-cap { bottom: -28px; font-size: 11px; }
}

/* Pillars list as inline ribbon under hero */
.pillars-ribbon {
  margin-top: 96px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-edge);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: .015em;
}
.pillars-ribbon span { display: inline-flex; align-items: center; gap: 12px; }
.pillars-ribbon span::after {
  content: '·';
  color: var(--gold-soft);
  font-style: normal;
  margin-left: 12px;
  font-size: 18px;
}
.pillars-ribbon span:last-child::after { display: none; }

/* ========================================
   MANIFESTO — minimal centered statement
   ======================================== */
.manifesto {
  padding: 100px 0;
  border-top: 1px solid var(--ink-edge-2);
  border-bottom: 1px solid var(--ink-edge-2);
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 97, 0.06) 0%, transparent 70%),
    var(--ink-soft);
  text-align: center;
}
.manifesto .eyebrow { margin-bottom: 32px; }
.manifesto-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.22;
  color: #fff;
  max-width: 940px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.manifesto-text .it { font-style: italic; color: var(--gold); font-weight: 500; }
.manifesto-mark {
  margin-top: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ========================================
   ROOMS — architectural plates, vertical
   ======================================== */
.rooms-section {
  padding-top: 140px;
  padding-bottom: 60px;
}
.rooms-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 100px;
  align-items: end;
}
.rooms-head-left .eyebrow { margin-bottom: 14px; }
.rooms-head-left h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.96;
}
.rooms-head-left h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.rooms-head-right p {
  font-size: 17.5px;
  color: var(--text);
  line-height: 1.72;
  max-width: 540px;
  margin-left: auto;
  font-weight: 450;
}
.rooms-head-right p::before {
  content: '— ';
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 760px) {
  .rooms-head { grid-template-columns: 1fr; gap: 24px; }
  .rooms-head-right p { margin-left: 0; }
}

.room {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--ink-edge);
  align-items: start;
  transition: background .35s ease;
}
.room:last-of-type { border-bottom: 1px solid var(--ink-edge); }
.room:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(201,169,97,0.04) 50%, transparent 100%);
}
.room-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 68px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.room-num small {
  display: block;
  font-style: normal;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.room-body h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.room-body .room-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
  letter-spacing: .015em;
}
.room-body p {
  font-size: 16.5px;
  color: var(--text);
  line-height: 1.72;
  max-width: 480px;
  font-weight: 450;
}

.room-meta {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 500;
}
.room-meta dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 24px;
}
.room-meta dt {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-top: 2px;
}
.room-meta dd { color: var(--text); font-weight: 500; }

@media (max-width: 900px) {
  .room {
    grid-template-columns: 80px 1fr;
    gap: 28px;
    padding: 44px 0;
  }
  .room-num { font-size: 44px; }
  .room-meta {
    grid-column: 1 / -1;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--ink-edge);
  }
}

/* ========================================
   PASSAGE — the ladder reframed
   ======================================== */
.passage-section {
  padding: var(--pad-sec) 0;
  background: var(--ink-soft);
  border-top: 1px solid var(--ink-edge);
  border-bottom: 1px solid var(--ink-edge);
}
.passage-head {
  text-align: center;
  margin-bottom: 80px;
}
.passage-head h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1;
  margin-top: 14px;
}
.passage-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.passage-head p {
  margin-top: 24px;
  color: var(--text);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16.5px;
  font-weight: 450;
}

.passage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}
.passage-step {
  padding: 48px 32px;
  border-right: 1px solid var(--ink-edge);
  position: relative;
  transition: background .3s ease;
}
.passage-step:last-child { border-right: 0; }
.passage-step:hover { background: rgba(201,169,97,0.04); }
.passage-step .step-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.passage-step h4 {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.2;
}
.passage-step p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 450;
}
.passage-step .step-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--gold);
  letter-spacing: .02em;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-edge);
}
.passage-step .step-meta strong {
  display: block;
  font-style: normal;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .passage { grid-template-columns: 1fr 1fr; }
  .passage-step:nth-child(2) { border-right: 0; }
  .passage-step:nth-child(1), .passage-step:nth-child(2) { border-bottom: 1px solid var(--ink-edge); }
}
@media (max-width: 600px) {
  .passage { grid-template-columns: 1fr; }
  .passage-step { border-right: 0; border-bottom: 1px solid var(--ink-edge); }
  .passage-step:last-child { border-bottom: 0; }
}

/* ========================================
   IN PARTNERSHIP — credibility band, slim
   ======================================== */
.cred {
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--ink-edge);
  border-bottom: 1px solid var(--ink-edge);
}
.cred-eyebrow {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
  font-weight: 600;
}
.cred-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  font-family: 'Cormorant Garamond', serif;
}
.cred-name {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}
.cred-name em {
  display: block;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: .04em;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.cred-x {
  color: var(--gold);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}

/* ========================================
   MEMBERSHIP — cream invitation card on dark
   ======================================== */
.membership-section {
  padding: var(--pad-sec) 0;
  background:
    radial-gradient(ellipse at top, rgba(201, 169, 97, 0.07) 0%, transparent 60%),
    var(--ink);
}
.membership-head { text-align: center; margin-bottom: 80px; }
.membership-head .eyebrow { margin-bottom: 14px; }
.membership-head h2 {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 500;
}
.membership-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.membership-head p {
  margin-top: 22px;
  color: var(--text);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16.5px;
  font-weight: 450;
}

.invitation {
  max-width: 920px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,97,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--paper-ink);
  position: relative;
  padding: 0;
  box-shadow:
    0 60px 120px rgba(0,0,0,.5),
    0 30px 60px rgba(0,0,0,.4),
    inset 0 0 0 1px rgba(20,24,43,.08),
    inset 0 0 0 6px var(--paper),
    inset 0 0 0 7px rgba(201,169,97,0.4);
  font-family: 'Cormorant Garamond', serif;
}
.invitation::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,169,97,0.5);
  pointer-events: none;
}
.invitation::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='1'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.10;
  pointer-events: none;
}

.invitation-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 64px 56px;
  position: relative;
  z-index: 1;
}
@media (max-width: 760px) {
  .invitation-grid { grid-template-columns: 1fr; padding: 48px 32px; gap: 32px; }
}

.inv-left .inv-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
  font-weight: 600;
  display: block;
}
.inv-left .inv-issue {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--paper-ink);
  margin-bottom: 32px;
  display: block;
  opacity: .65;
}
.inv-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  color: var(--paper-ink);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.inv-left h3 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.inv-left .inv-line {
  height: 1px;
  width: 64px;
  background: var(--gold-deep);
  margin: 28px 0;
  border: 0;
  opacity: .6;
}
.inv-left p.inv-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--paper-ink);
  line-height: 1.6;
  max-width: 380px;
  opacity: .82;
}

.inv-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.inv-price {
  font-family: 'Cormorant Garamond', serif;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--paper-ink);
}
.inv-price .currency {
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-deep);
  font-style: italic;
}
.inv-price .num {
  font-size: clamp(72px, 9vw, 108px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.inv-price .per {
  font-size: 14px;
  font-style: italic;
  color: var(--paper-ink);
  margin-left: 6px;
  opacity: .6;
}
.inv-features {
  list-style: none;
  margin-top: 20px;
  padding: 0;
  font-family: 'Inter Tight', sans-serif;
}
.inv-features li {
  font-size: 14px;
  color: var(--paper-ink);
  padding: 9px 0 9px 22px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--paper-line);
  font-weight: 400;
}
.inv-features li:last-child { border-bottom: 0; }
.inv-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--gold-deep);
  opacity: .8;
}
.inv-cta {
  display: inline-block;
  background: var(--paper-ink);
  color: var(--paper);
  padding: 18px 32px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--paper-ink);
  margin-top: 24px;
  transition: all .25s ease;
}
.inv-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--paper);
}
.inv-foot {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11.5px;
  color: var(--paper-ink);
  opacity: .5;
  text-align: center;
}

/* ========================================
   APPLICATION — minimal editorial form
   ======================================== */
.apply-section {
  padding: var(--pad-sec) 0;
  background: var(--ink-soft);
}
.apply-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 760px) { .apply-head { grid-template-columns: 1fr; } }
.apply-head h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1;
}
.apply-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.apply-head p {
  font-size: 16.5px;
  color: var(--text);
  line-height: 1.72;
  font-weight: 450;
}
.apply-head p::before { content: '— '; color: var(--gold); font-weight: 600; }

.apply-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { position: relative; }
.field label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: .015em;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-edge);
  padding: 12px 0;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: border-color .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select option { background: var(--ink); color: #fff; }
.apply-form button.btn { justify-self: center; margin-top: 12px; min-width: 240px; padding: 18px 36px; }
.form-note {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 18px;
  letter-spacing: .02em;
}

/* ========================================
   FAQ — two-column editorial spread
   ======================================== */
.faq-section {
  padding: var(--pad-sec) 0;
}
.faq-head {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 760px) { .faq-head { grid-template-columns: 1fr; } }
.faq-head h2 {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 500;
  line-height: 1;
}
.faq-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.faq-head p {
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 450;
  max-width: 520px;
  margin-left: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; gap: 0; } }
.faq-q {
  padding: 28px 0;
  border-top: 1px solid var(--ink-edge);
}
.faq-q:nth-last-child(-n+2) { border-bottom: 1px solid var(--ink-edge); }
@media (max-width: 760px) {
  .faq-q:nth-last-child(-n+2) { border-bottom: 0; }
  .faq-q:last-child { border-bottom: 1px solid var(--ink-edge); }
}
.faq-q h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #fff;
}
.faq-q h4 .num {
  display: inline-block;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  margin-right: 10px;
  font-size: 16px;
  vertical-align: 1px;
}
.faq-q p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 450;
}

/* ========================================
   FOOTER — colophon
   ======================================== */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-edge);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-brand img { width: 44px; height: 44px; object-fit: contain; }
.footer-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.footer-brand-text em { color: var(--gold); font-style: italic; font-weight: 400; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: .015em;
  max-width: 320px;
}
.footer-col h5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 13.5px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 450;
}
.footer-col a { color: var(--text); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 13.5px; color: var(--text); line-height: 1.65; font-weight: 450; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--ink-edge-2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hush);
}
.footer-bottom em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  color: var(--muted);
}

/* ========================================
   FADE IN
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.visible > *:nth-child(5) { transition-delay: .32s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .hero { padding: 56px 0 90px; }
  .pillars-ribbon { font-size: 13px; gap: 8px 16px; }
  .pillars-ribbon span::after { margin-left: 8px; }
}
