:root {
  --cream: #F5F0E8;
  --sand: #E8DFC8;
  --dark: #1A1812;
  --brown: #3D3020;
  --gold: #B8922A;
  --gold-light: #D4AA4A;
  --muted: #8A7E6A;
  --border: rgba(184, 146, 42, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* NOISE TEXTURE */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* HEADER */
header {
  padding: 3rem 4rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 4rem;
  right: 4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.header-left .label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-left .label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.header-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.header-left h1 em {
  font-style: italic;
  color: var(--gold);
}

.header-right {
  text-align: right;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.header-right .meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 2;
}

.header-right .meta strong {
  color: var(--dark);
  font-weight: 500;
}

/* NAV */
nav {
  padding: 0 4rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
  overflow-x: auto;
}

nav a {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
  transition: color 0.3s, background 0.3s;
  white-space: nowrap;
}

nav a:first-child { border-left: 1px solid var(--border); }

nav a:hover {
  color: var(--dark);
  background: rgba(184, 146, 42, 0.05);
}

/* HERO BAND */
.hero-band {
  background: var(--dark);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-band::before {
  content: 'MVC';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  font-weight: 300;
  color: rgba(184, 146, 42, 0.06);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.hero-band .tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-band .tagline::after {
  content: '';
  flex: 1;
  max-width: 4rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  max-width: 42rem;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-band h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-band p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  max-width: 38rem;
  line-height: 1.8;
  font-weight: 300;
}

/* STATS ROW */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 2.5rem 3rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s;
}

.stat:last-child { border-right: none; }
.stat:hover { background: rgba(184, 146, 42, 0.04); }

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat .num sup {
  font-size: 1rem;
  color: var(--gold);
}

.stat .desc {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}

/* MAIN CONTENT */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* SECTION */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-label .num {
  font-size: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ITEMS GRID */
.items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-left: calc(25% + 4rem);
}

.item {
  background: var(--cream);
  padding: 2rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}

.item:hover { background: #EDE8DC; }

.item .item-icon {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.item h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.item .tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184, 146, 42, 0.1);
  border: 1px solid rgba(184, 146, 42, 0.2);
  padding: 0.3rem 0.7rem;
}

/* PERSONAS */
.personas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-left: calc(25% + 4rem);
}

.persona {
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.persona:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.persona::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.persona:hover::before { opacity: 1; }

.persona .persona-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.persona h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.persona p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

.persona .channels {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.persona .channel-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--sand);
  padding: 0.25rem 0.6rem;
}

/* PHASES */
.phases {
  margin-left: calc(25% + 4rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.phase {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.3s;
}

.phase:last-child { border-bottom: none; }

.phase-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2.5rem;
  cursor: pointer;
  user-select: none;
}

.phase-header:hover { background: rgba(184, 146, 42, 0.04); }

.phase-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  flex-shrink: 0;
  width: 3rem;
}

.phase-title {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dark);
  flex: 1;
}

.phase-timeline {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.phase-toggle {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  transition: transform 0.3s, background 0.3s;
  flex-shrink: 0;
}

.phase.open .phase-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.phase-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.phase.open .phase-body { max-height: 600px; }

.phase-content {
  padding: 0 2.5rem 2rem calc(2.5rem + 3rem + 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phase-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0.4rem 0;
}

.phase-item::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

/* BUDGET */
.budget-table {
  margin-left: calc(25% + 4rem);
  border: 1px solid var(--border);
  overflow: hidden;
}

.budget-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.budget-row:last-child { border-bottom: none; }
.budget-row:hover { background: rgba(184, 146, 42, 0.04); }

.budget-row.header {
  background: var(--dark);
}

.budget-row.header .budget-cell {
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.budget-row.total {
  background: var(--dark);
}

.budget-row.total .budget-cell {
  color: var(--cream);
  font-weight: 500;
}

.budget-row.total .budget-cell:last-child {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
}

.budget-cell {
  padding: 1.2rem 2rem;
  font-size: 0.85rem;
  color: var(--dark);
  border-right: 1px solid var(--border);
}

.budget-cell:last-child { border-right: none; }

.budget-cell .sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.budget-cell .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--dark);
}

/* PRIORITY CALLOUT */
.callout {
  margin-left: calc(25% + 4rem);
  background: var(--dark);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: '★';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  color: rgba(184, 146, 42, 0.06);
  line-height: 1;
}

.callout .callout-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.callout h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1rem;
  max-width: 28rem;
}

.callout h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.callout p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.8;
  max-width: 28rem;
}

/* NEXT STEPS */
.next-steps {
  margin-left: calc(25% + 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.step {
  background: var(--cream);
  padding: 2rem 2rem;
  transition: background 0.3s;
}

.step:hover { background: #EDE8DC; }

.step .step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.step h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* KPI METRICS */
.kpi-grid {
  margin-left: calc(25% + 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.kpi {
  background: var(--cream);
  padding: 1.75rem 2rem;
  transition: background 0.3s;
}

.kpi:hover { background: #EDE8DC; }

.kpi .kpi-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.kpi h4 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.kpi p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* TERMS NOTE */
.terms-note {
  margin-left: calc(25% + 4rem);
  margin-top: 2rem;
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
}

.terms-note .terms-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.terms-note .terms-items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.terms-note .terms-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.terms-note .terms-item::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

/* BUDGET TIER LABEL */
.tier-label {
  margin-left: calc(25% + 4rem);
  padding: 1.25rem 2rem;
  background: var(--dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tier-label .tier-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.tier-label .tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream);
}

.tier-label .tier-name em {
  font-style: italic;
  color: var(--gold-light);
}

/* ADVISORY NOTE */
.advisory-note {
  margin-left: calc(25% + 4rem);
  margin-top: 2rem;
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  background: rgba(184, 146, 42, 0.04);
}

.advisory-note .advisory-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.advisory-note p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 0;
}

footer .footer-left {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
}

footer .footer-left span {
  color: var(--gold);
  font-style: italic;
}

footer .footer-right {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: right;
  line-height: 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  header { padding: 2rem; flex-direction: column; }
  header .header-right { text-align: left; }
  nav { padding: 0 2rem; }
  main { padding: 0 2rem; }
  .section-header { grid-template-columns: 1fr; gap: 1rem; }
  .section-label .num { display: none; }
  .items, .personas, .phases, .budget-table, .callout, .next-steps, .kpi-grid, .terms-note, .tier-label, .advisory-note {
    margin-left: 0;
  }
  .items, .personas, .next-steps, .kpi-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-band { padding: 3rem 2rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .budget-row { grid-template-columns: 1fr 1fr; }
  .budget-cell:nth-child(2) { display: none; }
}

/* ANIMATIONS */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-band * {
  animation: fadeSlide 0.8s ease both;
}
.hero-band .tagline { animation-delay: 0.1s; }
.hero-band h2 { animation-delay: 0.2s; }
.hero-band p { animation-delay: 0.3s; }

header { animation: fadeSlide 0.6s ease both; }
