/* ============================================================
   MAIA — Partners Page
   ============================================================ */

.partner-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.partner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(201,168,76,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 20% 70%, rgba(201,168,76,0.03) 0%, transparent 60%);
}
.partner-hero-inner {
  position: relative;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 32px 100px;
  max-width: 680px;
  margin-left: max(32px, calc((100vw - var(--max-w)) / 2 + 32px));
}

/* ── Three col layout ──────────────────────────────────────── */
.p-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.p-col-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}
.p-col h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.p-col p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Spring Place callout ──────────────────────────────────── */
.spring-callout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 48px;
  border-radius: 3px;
}
.spring-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.spring-callout-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.spring-stat {}
.spring-stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.spring-stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── Gains grid ────────────────────────────────────────────── */
.p-gains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.p-gain {
  background: var(--surface);
  padding: 32px 28px;
  transition: background 0.2s;
}
.p-gain:hover { background: var(--surface-2); }
.p-gain h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.p-gain p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Cities table ──────────────────────────────────────────── */
.cities-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.city-row-p {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  transition: background 0.15s;
}
.city-row-p:hover { background: var(--surface-2); }
.active-city { border-left: 3px solid var(--gold); }
.city-name-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.city-name-p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.city-partner-name {
  font-size: 12px;
  color: var(--muted);
}
.city-status-badge {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  border: 1px solid;
}
.open-badge  { color: #6abf7b; border-color: rgba(106,191,123,0.3); background: rgba(106,191,123,0.05); }
.soon-badge  { color: var(--gold); border-color: var(--gold-dim); background: rgba(201,168,76,0.05); }
.future-badge { color: var(--muted); border-color: var(--border); }

/* ── Contact ───────────────────────────────────────────────── */
.p-contact { background: var(--black); }
.p-contact-inner { text-align: center; }
.p-contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

/* ── Section shared ────────────────────────────────────────── */
.p-section {}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .p-three-col { grid-template-columns: 1fr; gap: 32px; }
  .p-gains-grid { grid-template-columns: 1fr; }
  .spring-callout { grid-template-columns: 1fr; gap: 40px; }
  .spring-callout-right { flex-direction: row; flex-wrap: wrap; gap: 24px; }
}
