:root {
  --bg: #080706;
  --bg2: #0f0d0b;
  --bg3: #161310;
  --text: #ece6dc;
  --muted: #8a8278;
  --gold: #c4a035;
  --gold-dim: #8a7020;
  --ok: #6b9e78;
  --line: rgba(255, 255, 255, 0.08);
  --max: 1080px;
  --header-h: 3.5rem;
  --raise-h: 2.75rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--raise-h) + var(--header-h));
}

a { color: var(--text); text-underline-offset: 0.2em; }
a:hover { color: var(--gold); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

.label {
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Raise bar */
.raise-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg3);
  border-bottom: 1px solid var(--line);
  height: var(--raise-h);
}
.raise-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.raise-bar__amount {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.raise-bar__meta {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.raise-bar__actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

@media (max-width: 720px) {
  .raise-bar__meta { display: none; }
  .raise-bar__inner { padding: 0 1rem; }
}

/* Header */
.header {
  position: fixed;
  top: var(--raise-h);
  left: 0;
  right: 0;
  z-index: 150;
  transition: background 0.25s, border-color 0.25s;
}
.header--solid {
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text);
  text-decoration: none;
}
.nav { display: flex; gap: 1.5rem; align-items: center; }
.nav a {
  color: rgba(236, 230, 220, 0.7);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--text); }
.nav__cta {
  color: var(--gold) !important;
  border: 1px solid rgba(196, 160, 53, 0.35);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--text);
}

@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .nav {
    position: fixed;
    top: calc(var(--raise-h) + var(--header-h));
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem 1.5rem 1.25rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 500;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: #080706; }
.btn--gold:hover { background: #d4b045; color: #080706; }
.btn--line { border-color: var(--line); color: var(--text); }
.btn--line:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost { color: var(--muted); border-color: transparent; }
.btn--ghost:hover { color: var(--text); }

/* Hero */
.hero-cinema {
  position: relative;
  min-height: calc(100vh - var(--raise-h) - var(--header-h));
  min-height: calc(100svh - var(--raise-h) - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
  margin-top: calc(-1 * (var(--raise-h) + var(--header-h)));
  padding-top: calc(var(--raise-h) + var(--header-h));
}
.hero-cinema__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-cinema__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 30%),
    linear-gradient(180deg, transparent 40%, rgba(8,7,6,0.75) 75%, var(--bg) 100%);
  pointer-events: none;
}
.hero-cinema__panel {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 4rem;
  max-width: 640px;
}
.hero-cinema__title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-cinema__title em {
  font-style: italic;
  color: var(--gold);
}
.hero-cinema__lead {
  margin: 0 0 1.75rem;
  color: rgba(236, 230, 220, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
}
.hero-cinema__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* Corridor strip */
.corridor-strip {
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.corridor-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}
.corridor-strip__grid > div {
  background: var(--bg2);
  padding: 1.35rem 1rem;
  text-align: center;
}
.corridor-strip__grid strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
}
.corridor-strip__grid span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 768px) {
  .corridor-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .corridor-strip__grid > div:last-child { grid-column: 1 / -1; }
}

/* Night image */
.hero-night {
  max-height: 48vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-night img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--bg2); }
.section-head { margin-bottom: 2.5rem; max-width: 36rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.12;
}
.section-head p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 2rem;
}
.stat-row--traffic { margin-top: 0; }
@media (max-width: 640px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--bg);
  padding: 1.25rem 1rem;
}
.section--alt .stat { background: var(--bg2); }
.stat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
}
.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Cards & grids */
.card {
  background: var(--bg);
  padding: 1.75rem 1.5rem;
}
.section--alt .card { background: var(--bg2); }
.card--flat { border: 1px solid var(--line); }
.card h3, .card h4 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.card__follow { margin-top: 0.85rem !important; }
.card__note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.split--wide { max-width: 100%; }
@media (max-width: 640px) { .split { grid-template-columns: 1fr; } }

/* Market */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .market-grid { grid-template-columns: 1fr; } }
.market-grid .card { background: var(--bg2); }
.market-grid .card strong { color: var(--text); font-weight: 500; }

.gap-block {
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  background: var(--bg);
}
.gap-block h3 {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  text-align: center;
}
.gap-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 640px) { .gap-cols { grid-template-columns: 1fr; gap: 1rem; } }

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.list li:first-child { border-top: none; padding-top: 0; }
.list--gap li { border-top: none; padding-left: 0; }
.list--gap li::before { content: none; }
.list--yes li::before { content: "+"; color: var(--ok); }
.list--no li::before { content: "×"; color: var(--muted); opacity: 0.6; }
.list--clean li { padding-left: 0; border-top: none; }
.list--clean li::before { content: none; }
.list--clean li + li { margin-top: 0.65rem; padding-top: 0.65rem; border-top: 1px solid var(--line); }

/* Engine model */
.engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 768px) { .engine-grid { grid-template-columns: 1fr; } }
.engine {
  background: var(--bg);
  padding: 2rem 1.75rem;
}
.engine__tag {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.rent-highlight {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

/* Programming */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .program-grid { grid-template-columns: 1fr; } }
.program {
  background: var(--bg2);
  padding: 1.5rem 1.35rem;
}
.program__day {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.program h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
}
.program p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
.program__rev {
  margin-top: 0.75rem !important;
  font-size: 0.72rem !important;
  color: var(--text) !important;
  opacity: 0.7;
}

/* Financials */
.fin-band {
  border: 1px solid var(--line);
  margin-bottom: 1px;
  background: var(--line);
}
.fin-band__head {
  background: var(--bg2);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.fin-band__head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}
.fin-split { margin-bottom: 2rem; }

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 640px) { .phase-grid { grid-template-columns: 1fr; } }
.phase {
  background: var(--bg);
  padding: 1.5rem 1.35rem;
}
.phase__label {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.phase h4 {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}
.phase p { margin: 0; font-size: 0.85rem; color: var(--muted); }
.phase__capex {
  margin-top: 0.75rem !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem !important;
  color: var(--gold) !important;
}

/* Tables */
.price-table { width: 100%; border-collapse: collapse; }
.price-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.price-table td:last-child { text-align: right; color: var(--text); }
.price-table tr:last-child td { border-bottom: none; }
.price-table--invest td:first-child { color: var(--muted); }
.price-table--invest th {
  text-align: left;
  padding: 0 0 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.price-table--invest th:last-child { text-align: right; }
.price-table--full { padding: 0 1.5rem 0.5rem; background: var(--bg2); }
.row-total td {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--text) !important;
  font-weight: 500;
}

/* Exhibit table */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); }
.exhibit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 640px;
}
.exhibit-table th,
.exhibit-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.exhibit-table th {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  background: var(--bg3);
}
.exhibit-table td { color: var(--muted); background: var(--bg2); }
.exhibit-table td.num { color: var(--text); white-space: nowrap; }
.exhibit-table a { color: var(--gold); text-decoration: none; font-size: 0.78rem; }
.exhibit-table a:hover { text-decoration: underline; }
.exhibit-table tr:last-child td { border-bottom: none; }

.disclaimer {
  margin: 1.25rem 0 0;
  font-size: 0.65rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Contact / ask banner */
.contact { padding: 5rem 0 6rem; border-top: 1px solid var(--line); }
.ask-banner {
  text-align: center;
  border: 1px solid var(--line);
  padding: 3rem 2rem;
  background: var(--bg2);
  max-width: 640px;
  margin: 0 auto;
}
.ask-banner__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.ask-banner__title {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 400;
}
.ask-banner__body {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.ask-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.contact__address {
  margin: 2rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer p {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Investment thesis / DD punch stats */
.section-head--spaced { margin-top: 3rem; }

.punch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1px;
}
@media (max-width: 900px) { .punch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .punch-grid { grid-template-columns: 1fr; } }

.punch {
  background: var(--bg2);
  padding: 1.5rem 1.35rem;
}
.punch strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.punch span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.punch p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}
.punch--hot strong { color: var(--gold); }
.punch--gold {
  background: rgba(196, 160, 53, 0.06);
  border-top: 1px solid rgba(196, 160, 53, 0.2);
}
.punch--gold strong { color: var(--gold); }

.thesis-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 0;
}
@media (max-width: 768px) { .thesis-banner { grid-template-columns: 1fr; } }
.thesis-banner__col {
  background: var(--bg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.thesis-banner__label {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.thesis-banner__stat {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.thesis-banner__stat small {
  font-size: 0.45em;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.thesis-banner__desc {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.exhibit-table--comp .col-lenox {
  background: rgba(196, 160, 53, 0.08) !important;
  color: var(--text) !important;
}
.exhibit-table--comp td.col-lenox { border-left: 1px solid rgba(196, 160, 53, 0.25); }
.exhibit-table--comp th.col-lenox {
  background: rgba(196, 160, 53, 0.12) !important;
  color: var(--gold) !important;
}

.hook-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: -1px;
}
@media (max-width: 640px) { .hook-row { grid-template-columns: repeat(2, 1fr); } }
.hook {
  background: var(--bg2);
  padding: 1.15rem 1rem;
  text-align: center;
}
.hook strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.1;
}
.hook span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.thesis-close {
  margin: 2.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--text);
  opacity: 0.9;
}

/* ROI band */
.roi-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 2rem;
}
@media (max-width: 768px) { .roi-band { grid-template-columns: repeat(2, 1fr); } }
.roi-band__item {
  background: var(--bg);
  padding: 1.25rem 1rem;
  text-align: center;
}
.roi-band__item--hot { background: rgba(107, 158, 120, 0.08); }
.roi-band__label {
  margin: 0 0 0.35rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.roi-band__val {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold);
}
.roi-band__item--hot .roi-band__val { color: var(--ok); }

/* Monthly P&L */
.pl-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1px;
  border: 1px solid var(--line);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.pl-tabs__btn {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg2);
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.pl-tabs__btn--active {
  background: var(--bg);
  color: var(--gold);
}
.pl-tabs__btn + .pl-tabs__btn { border-left: 1px solid var(--line); }

.pl-panel { margin-bottom: 2rem; }
.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 768px) { .pl-grid { grid-template-columns: 1fr; } }

.pl-col {
  background: var(--bg);
  padding: 1.5rem 1.35rem;
}
.pl-col--in { border-bottom: 3px solid rgba(107, 158, 120, 0.35); }
.pl-col--out { border-bottom: 3px solid rgba(180, 90, 80, 0.35); }
.pl-col__title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
}
.pl-col--in .pl-col__title { color: var(--ok); }
.pl-col--out .pl-col__title { color: #c08070; }

.pl-table { width: 100%; border-collapse: collapse; }
.pl-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  vertical-align: top;
}
.pl-table td.num {
  text-align: right;
  white-space: nowrap;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.pl-table td:first-child { color: var(--muted); padding-right: 1rem; }
.pl-note {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  opacity: 0.75;
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
  text-transform: none;
}
.pl-total td {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  border-bottom: none;
  font-weight: 500;
  color: var(--text) !important;
}
.pl-total--in td.num { color: var(--ok) !important; }
.pl-total--out td.num { color: #c08070 !important; }

.pl-range {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.pl-net {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  border-top: none;
  background: rgba(196, 160, 53, 0.06);
}
.pl-net__label {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.pl-net__val {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.pl-net__val span {
  font-family: "Outfit", sans-serif;
  font-size: 0.35em;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.pl-net__sub {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.pl-waterfall {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
}
.pl-waterfall h3 {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}
.waterfall {
  display: flex;
  height: 2.5rem;
  gap: 2px;
  border-radius: 2px;
  overflow: hidden;
}
.waterfall__bar {
  flex: var(--w);
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
  padding: 0 2px;
}
.waterfall__bar em {
  font-style: normal;
  font-size: 0.65rem;
  opacity: 0.9;
}
.waterfall__bar--rent { background: #4a4540; }
.waterfall__bar--labor { background: #6b5344; }
.waterfall__bar--cogs { background: #7a5c50; }
.waterfall__bar--ops { background: #5a5550; }
.waterfall__bar--net { background: var(--ok); color: #0a0908; }
@media (max-width: 640px) {
  .waterfall { flex-direction: column; height: auto; }
  .waterfall__bar { flex: none; padding: 0.5rem; flex-direction: row; gap: 0.5rem; justify-content: space-between; }
}
