:root {
  --ink: #17120c;
  --ink-soft: #463a2c;
  --paper: #f4efe3;
  --paper-muted: #d9cdb8;
  --night: #0f0e0c;
  --night-2: #181511;
  --line: #2b251b;
  --gold: #d79b32;
  --gold-dark: #9f671e;
  --sage: #8ea67f;
  --rust: #bd5d35;
  --cream: #fff9ec;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.site-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(15, 14, 12, 0.12), rgba(15, 14, 12, 0.82)),
    url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 249, 236, 0.12);
}

.nav {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 20px;
  color: rgba(255, 249, 236, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.footer a {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.footer a:hover {
  border-color: currentColor;
}

.nav-cta {
  border: 1px solid rgba(255, 249, 236, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(15, 14, 12, 0.28);
}

.hero-grid {
  width: min(100%, var(--max));
  margin: auto;
  padding: 56px 24px 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--cream);
  font-size: clamp(74px, 12vw, 152px);
  line-height: 0.82;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 19px;
  font-weight: 800;
}

.hero-text {
  max-width: 630px;
  margin-bottom: 28px;
  color: rgba(255, 249, 236, 0.84);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.survey-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  background: rgba(255, 249, 236, 0.08);
  border-color: rgba(255, 249, 236, 0.24);
  color: var(--cream);
}

.hero-panel {
  background: rgba(15, 14, 12, 0.78);
  border: 1px solid rgba(255, 249, 236, 0.18);
  border-radius: 8px;
  padding: 22px;
  backdrop-filter: blur(14px);
}

.panel-kicker {
  margin-bottom: 18px;
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.snapshot-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.snapshot-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 249, 236, 0.12);
}

.snapshot-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.snapshot-list dt {
  color: rgba(255, 249, 236, 0.55);
  font-size: 13px;
  font-weight: 800;
}

.snapshot-list dd {
  margin: 0;
  color: var(--cream);
  font-weight: 900;
  text-align: right;
}

.section {
  padding: 88px 24px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-dark {
  background: var(--night);
  color: var(--cream);
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.survey-card h2 {
  margin-bottom: 12px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.9;
}

.section-heading p,
.survey-card p {
  color: rgba(255, 249, 236, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.section-paper .section-heading p,
.section-paper .timeline p {
  color: var(--ink-soft);
}

.vibe-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vibe-card,
.faq-grid article {
  min-height: 190px;
  border: 1px solid rgba(255, 249, 236, 0.12);
  border-radius: 8px;
  padding: 20px;
  background: var(--night-2);
}

.vibe-icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--sage);
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.vibe-card h3,
.faq-grid h3,
.timeline h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.vibe-card p,
.faq-grid p,
.timeline p {
  margin-bottom: 0;
  color: rgba(255, 249, 236, 0.68);
  line-height: 1.55;
}

.two-column {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 18, 12, 0.16);
}

.timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 18, 12, 0.16);
}

.timeline-day {
  color: var(--rust);
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid article {
  min-height: 150px;
}

.survey-section {
  background:
    linear-gradient(rgba(15, 14, 12, 0.74), rgba(15, 14, 12, 0.9)),
    url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
}

.survey-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 44px;
  border: 1px solid rgba(255, 249, 236, 0.18);
  border-radius: 8px;
  background: rgba(15, 14, 12, 0.84);
}

.survey-card p {
  max-width: 620px;
}

.copy-status,
.form-status {
  min-height: 20px;
  margin: 16px 0 0;
  color: var(--sage);
  font-size: 14px;
  font-weight: 800;
}

.form-status {
  color: rgba(255, 249, 236, 0.62);
  font-weight: 700;
}

.addendum-page {
  background: var(--night);
  color: var(--cream);
}

.addendum-hero {
  background:
    linear-gradient(rgba(15, 14, 12, 0.28), rgba(15, 14, 12, 0.88)),
    url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 249, 236, 0.12);
}

.addendum-intro {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 58px 24px 72px;
}

.addendum-intro h1 {
  margin-bottom: 14px;
  font-size: clamp(78px, 12vw, 142px);
}

.addendum-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 42px 24px 72px;
}

.addendum-card {
  background: rgba(15, 14, 12, 0.9);
}

.addendum-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.field-label {
  display: grid;
  gap: 8px;
  color: rgba(255, 249, 236, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-label input,
.field-label select,
.field-label textarea {
  width: 100%;
  border: 1px solid rgba(255, 249, 236, 0.2);
  border-radius: 8px;
  background: rgba(255, 249, 236, 0.08);
  color: var(--cream);
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.field-label input,
.field-label select {
  min-height: 48px;
  padding: 11px 13px;
}

.field-label textarea {
  min-height: 94px;
  padding: 13px;
  resize: vertical;
}

.field-label option {
  color: var(--ink);
}

.date-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.date-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: rgba(255, 249, 236, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.date-fieldset label {
  display: flex;
  min-height: 52px;
  gap: 10px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid rgba(255, 249, 236, 0.16);
  border-radius: 8px;
  background: rgba(255, 249, 236, 0.07);
  color: var(--cream);
  font-weight: 900;
}

.date-fieldset input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.copy-status[data-state="error"] {
  color: #ffb199;
}

.copy-status[data-state="success"] {
  color: #b8d5a8;
}

.footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 24px 38px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 249, 236, 0.6);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.dashboard-page {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.dashboard-top {
  background:
    linear-gradient(rgba(15, 14, 12, 0.35), rgba(15, 14, 12, 0.9)),
    url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 249, 236, 0.12);
}

.dashboard-intro {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: end;
}

.dashboard-intro h1 {
  margin-bottom: 14px;
  font-size: clamp(70px, 10vw, 132px);
}

.dashboard-sync {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 249, 236, 0.18);
  border-radius: 8px;
  background: rgba(15, 14, 12, 0.78);
}

.dashboard-sync span {
  color: rgba(255, 249, 236, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-sync strong {
  font-size: 20px;
}

.icon-button {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 249, 236, 0.28);
  border-radius: 999px;
  background: rgba(255, 249, 236, 0.08);
  color: var(--cream);
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.dashboard-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 42px 24px 72px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.metric-card,
.dashboard-panel,
.dashboard-error {
  border: 1px solid rgba(23, 18, 12, 0.14);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(23, 18, 12, 0.08);
}

.metric-card {
  grid-column: span 1;
  min-height: 126px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.metric-wide {
  grid-column: span 2;
}

.metric-card span,
.panel-heading .eyebrow {
  color: var(--gold-dark);
}

.metric-card span {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 400;
  line-height: 0.92;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.metric-wide strong {
  font-size: clamp(28px, 3.3vw, 40px);
}

.metric-detail {
  margin: auto 0 0;
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-panel {
  padding: 24px;
}

.dashboard-panel-wide,
.respondent-panel {
  grid-column: 1 / -1;
}

.panel-heading {
  margin-bottom: 20px;
}

.panel-heading h2,
.dashboard-error h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.92;
}

.availability-panel {
  margin-bottom: 14px;
}

.availability-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.availability-heading p:last-child {
  max-width: 360px;
  margin: 0;
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

.availability-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(23, 18, 12, 0.16);
  border-radius: 8px;
  background: #ffffff;
}

.availability-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0;
  color: #071231;
  table-layout: fixed;
}

.availability-table th,
.availability-table td {
  padding: 12px 10px;
  border-right: 1px solid rgba(7, 18, 49, 0.14);
  border-bottom: 1px solid rgba(7, 18, 49, 0.12);
  text-align: center;
  vertical-align: middle;
}

.availability-table th:first-child,
.availability-table td:first-child {
  width: 160px;
}

.availability-table thead th {
  background: #071231;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.availability-table thead th:first-child {
  border-top-left-radius: 8px;
}

.availability-table thead th:last-child {
  border-top-right-radius: 8px;
  border-right: 0;
}

.availability-table tbody th,
.availability-table tfoot th {
  background: rgba(7, 18, 49, 0.02);
  color: #071231;
  font-weight: 900;
  text-align: left;
}

.availability-table tbody tr:nth-child(even) th,
.availability-table tbody tr:nth-child(even) td {
  background-color: rgba(7, 18, 49, 0.025);
}

.availability-table td.is-best-weekend,
.availability-table th.is-best-weekend,
.availability-table td.is-second-weekend,
.availability-table th.is-second-weekend {
  background-color: rgba(20, 142, 61, 0.08);
}

.availability-table .is-best-weekend {
  box-shadow:
    inset 2px 0 #40a546,
    inset -2px 0 #40a546;
}

.availability-table .is-second-weekend {
  box-shadow:
    inset 1px 0 rgba(64, 165, 70, 0.55),
    inset -1px 0 rgba(64, 165, 70, 0.55);
}

.availability-table thead th.is-best-weekend,
.availability-table thead th.is-second-weekend {
  background: #071231;
  color: #ffffff;
}

.availability-table tfoot th,
.availability-table tfoot td {
  background: #eaf1fb;
  border-bottom: 0;
  font-weight: 900;
}

.availability-table tfoot td {
  color: #071231;
  font-size: 13px;
  line-height: 1.25;
}

.mobile-availability-list {
  display: none;
}

.matrix-symbol {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 26px;
  font-weight: 1000;
  line-height: 1;
}

.matrix-symbol.is-available {
  color: #06983d;
}

.matrix-symbol.is-tentative {
  background: #ffd51f;
  color: #071231;
  font-size: 22px;
}

.matrix-symbol.is-unavailable {
  color: rgba(7, 18, 49, 0.62);
}

.matrix-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(300px, 1fr);
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.matrix-legend,
.matrix-takeaway {
  border: 1px solid rgba(7, 18, 49, 0.16);
  border-radius: 8px;
  background: #ffffff;
}

.matrix-legend {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
}

.matrix-legend span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #071231;
  font-weight: 800;
}

.matrix-legend .matrix-symbol {
  width: 30px;
  height: 30px;
}

.matrix-takeaway {
  padding: 16px 18px;
  border-color: rgba(20, 142, 61, 0.45);
  background: rgba(20, 142, 61, 0.06);
}

.matrix-takeaway h3 {
  margin-bottom: 10px;
  color: #0a762f;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.matrix-takeaway ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.matrix-takeaway li {
  color: #071231;
  font-weight: 900;
  line-height: 1.35;
}

.insight-panel {
  overflow: hidden;
}

.weekend-ranking {
  display: grid;
  gap: 16px;
}

.weekend-lede,
.budget-lede {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 8px;
  background: #071231;
  color: #ffffff;
}

.weekend-lede strong,
.budget-lede strong {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 0.9;
}

.weekend-lede span,
.budget-lede span,
.budget-lede p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.budget-lede span {
  display: block;
  margin-bottom: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.budget-lede p {
  max-width: 440px;
  text-align: right;
}

.weekend-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.weekend-card {
  display: grid;
  gap: 12px;
  min-height: 198px;
  padding: 16px;
  border: 1px solid rgba(7, 18, 49, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

.weekend-card.is-primary {
  border-color: rgba(20, 142, 61, 0.55);
  background: rgba(20, 142, 61, 0.07);
  box-shadow: inset 0 0 0 2px rgba(20, 142, 61, 0.18);
}

.weekend-card-top {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.weekend-card-top span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.weekend-card h3 {
  margin: 0;
  color: #071231;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 0.95;
}

.stack-meter {
  display: block;
  width: 100%;
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
}

.stack-bg {
  fill: rgba(7, 18, 49, 0.1);
}

.stack-confirmed {
  fill: #0a983f;
}

.stack-maybe {
  fill: #ffd51f;
}

.mobile-availability-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(7, 18, 49, 0.14);
  border-radius: 8px;
  background: #ffffff;
}

.mobile-availability-card.is-primary {
  border-color: rgba(20, 142, 61, 0.55);
  background: rgba(20, 142, 61, 0.07);
  box-shadow: inset 0 0 0 2px rgba(20, 142, 61, 0.16);
}

.mobile-availability-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: baseline;
}

.mobile-availability-top span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.mobile-availability-top h3 {
  min-width: 0;
  margin: 0;
  color: #071231;
  font-size: 30px;
  line-height: 0.95;
}

.mobile-availability-top strong {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.mobile-name-group {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.mobile-name-group > span,
.mobile-unavailable summary {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-name-group > div,
.mobile-unavailable > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

.name-chip {
  display: inline-flex;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(10, 152, 63, 0.22);
  border-radius: 999px;
  background: rgba(10, 152, 63, 0.08);
  color: #071231;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
  white-space: normal;
}

.name-chip.is-maybe {
  border-color: rgba(138, 90, 9, 0.24);
  background: rgba(255, 213, 31, 0.26);
}

.name-chip.is-unavailable,
.name-chip.is-empty {
  border-color: rgba(7, 18, 49, 0.12);
  background: rgba(7, 18, 49, 0.05);
  color: rgba(7, 18, 49, 0.68);
}

.mobile-unavailable {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.mobile-unavailable summary {
  cursor: pointer;
  list-style-position: inside;
}

.weekend-counts {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.weekend-counts strong {
  color: #071231;
  font-size: 16px;
  line-height: 1.15;
}

.weekend-counts span,
.weekend-card small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.weekend-card p {
  min-height: 44px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.weekend-card small {
  color: #8a5a09;
}

.budget-spectrum-wrap {
  display: grid;
  gap: 18px;
}

.budget-spectrum {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 12px;
  align-items: end;
  padding: 18px 14px 14px;
  border: 1px solid rgba(7, 18, 49, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.budget-node {
  display: grid;
  grid-template-rows: 150px auto auto;
  gap: 8px;
  min-width: 0;
  text-align: center;
}

.budget-column {
  position: relative;
  height: 150px;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: rgba(7, 18, 49, 0.06);
}

.budget-column strong {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 1;
  color: #071231;
  font-size: 20px;
  transform: translateX(-50%);
}

.budget-bar {
  display: block;
  width: 100%;
  height: 100%;
}

.budget-bar-bg {
  fill: rgba(7, 18, 49, 0.06);
}

.budget-bar-fill {
  fill: var(--rust);
}

.budget-node.is-top .budget-column {
  box-shadow: inset 0 0 0 2px rgba(189, 93, 53, 0.26);
}

.budget-node.is-flexible .budget-bar-fill {
  fill: #0a983f;
}

.budget-node b {
  color: #071231;
  font-size: 13px;
  line-height: 1.2;
}

.budget-node small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.decision-board {
  display: grid;
  gap: 16px;
}

.decision-lede {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #071231;
  color: #ffffff;
}

.decision-lede span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-lede strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  line-height: 0.92;
}

.decision-lede p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.decision-meter {
  display: block;
  width: 100%;
  height: 22px;
  overflow: hidden;
  border-radius: 999px;
}

.meter-bg {
  fill: rgba(7, 18, 49, 0.1);
}

.meter-segment.is-green {
  fill: #0a983f;
}

.meter-segment.is-yellow {
  fill: #ffd51f;
}

.meter-segment.is-rust {
  fill: #bd5d35;
}

.meter-segment.is-gold {
  fill: #d79b32;
}

.meter-segment.is-blue {
  fill: #315a7d;
}

.meter-segment.is-muted {
  fill: rgba(7, 18, 49, 0.2);
}

.decision-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(7, 18, 49, 0.12);
}

.decision-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(7, 18, 49, 0.1);
}

.decision-row:last-child {
  border-bottom: 0;
}

.decision-row h3 {
  margin: 0 0 4px;
  color: #071231;
  font-size: 19px;
  line-height: 1.05;
}

.decision-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.decision-row > strong {
  display: grid;
  min-width: 58px;
  justify-items: end;
  color: #071231;
  font-size: 30px;
  line-height: 0.9;
}

.decision-row > strong span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.decision-row.is-muted h3,
.decision-row.is-muted > strong {
  color: rgba(7, 18, 49, 0.58);
}

.choice-support {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

.choice-support .name-chip {
  font-size: 12px;
}

.bar-list {
  display: grid;
  gap: 14px;
}

.compact-bars {
  gap: 10px;
}

.bar-row {
  display: grid;
  gap: 7px;
}

.bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.bar-meta span {
  min-width: 0;
}

.bar-meta strong {
  color: var(--ink);
  white-space: nowrap;
}

.bar-track {
  position: relative;
  height: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 18, 12, 0.1);
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rust), var(--gold));
}

.bar-value {
  position: absolute;
  right: 10px;
  top: 50%;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.split-bars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.split-bars h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.dashboard-note {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.ai-summary {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.ai-summary h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.ai-summary p {
  max-width: 780px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.ai-summary ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.ai-summary li {
  padding: 12px 14px;
  border: 1px solid rgba(23, 18, 12, 0.12);
  border-radius: 8px;
  background: rgba(23, 18, 12, 0.04);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.respondent-panel {
  margin-top: 14px;
}

.respondent-table-wrap {
  overflow-x: auto;
}

.respondent-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.respondent-table th,
.respondent-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(23, 18, 12, 0.12);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.45;
}

.respondent-table th {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.empty-state,
.dashboard-error p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.dashboard-error {
  margin-top: 14px;
  padding: 24px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .dashboard-intro,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .availability-heading,
  .matrix-footer {
    grid-template-columns: 1fr;
  }

  .availability-heading {
    display: grid;
  }

  .availability-heading p:last-child {
    text-align: left;
  }

  .weekend-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-wide {
    grid-column: span 2;
  }

  .vibe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-hero {
    min-height: auto;
  }

  .nav {
    gap: 12px;
    padding: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand span:not(:only-child):last-child {
    display: none;
  }

  .nav-cta {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 9px 13px;
    white-space: nowrap;
  }

  .dashboard-page .nav-cta {
    display: none;
  }

  .hero-grid {
    padding: 52px 16px 54px;
  }

  .dashboard-intro,
  .dashboard-shell,
  .addendum-intro,
  .addendum-shell {
    padding-inline: 16px;
  }

  .dashboard-intro {
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .addendum-intro {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .dashboard-intro > div,
  .dashboard-sync {
    min-width: 0;
  }

  .dashboard-intro .hero-text {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 72px;
  }

  .hero-text,
  .section-heading p,
  .survey-card p {
    font-size: 16px;
  }

  .section {
    padding: 58px 16px;
  }

  .vibe-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .vibe-card,
  .faq-grid article {
    min-height: auto;
  }

  .timeline li {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .survey-card {
    padding: 28px 20px;
  }

  .date-fieldset {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .split-bars {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .metric-wide {
    grid-column: span 1;
  }

  .weekend-lede,
  .budget-lede {
    align-items: flex-start;
    flex-direction: column;
  }

  .availability-panel {
    padding: 18px 14px;
  }

  .availability-table-wrap {
    display: none;
  }

  .mobile-availability-list {
    display: grid;
    gap: 12px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .mobile-availability-card .stack-meter {
    height: 20px;
  }

  .mobile-availability-card .stack-confirmed {
    fill: #07853a;
  }

  .mobile-availability-card .stack-maybe {
    fill: #ffd51f;
  }

  .matrix-footer {
    gap: 12px;
    margin-top: 14px;
  }

  .matrix-legend,
  .matrix-takeaway {
    padding: 14px;
  }

  .matrix-takeaway h3 {
    font-size: 26px;
  }

  .budget-lede p {
    text-align: left;
  }

  .decision-lede {
    padding: 15px;
  }

  .decision-lede strong {
    font-size: 34px;
  }

  .decision-row {
    grid-template-columns: minmax(0, 1fr) 54px;
  }

  .decision-row h3 {
    font-size: 17px;
  }

  .weekend-card-grid,
  .budget-spectrum {
    grid-template-columns: 1fr;
  }

  .budget-node {
    grid-template-columns: 76px 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    text-align: left;
  }

  .budget-column {
    height: 54px;
  }

  .budget-column strong {
    top: 50%;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(7, 18, 49, 0.44);
    transform: translate(-50%, -50%);
  }

  .budget-bar {
    height: 100%;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    padding-inline: 16px;
  }
}
