:root {
  --burgundy: #5a1414;
  --burgundy-dark: #310909;
  --gold: #ffb612;
  --cream: #fff6df;
  --white: #ffffff;
  --black: #111111;
  --muted: #68625b;
  --line: #1b1b1b;
  --shadow: 8px 8px 0 #111;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 14px;
  text-align: center;
  background: var(--gold);
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.topbar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
  flex: 0 0 auto;
}

.hero {
  color: white;
  background:
    radial-gradient(circle at 50% -10%, #8d2f2f 0, #5a1414 42%, #300808 100%);
  overflow: hidden;
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: var(--gold);
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
  opacity: .9;
}

.nav-links a:hover {
  color: var(--gold);
}

.hero-inner {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 95px;
}

.hero-kicker {
  width: fit-content;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 9px 13px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(62px, 10.5vw, 132px);
  line-height: .82;
  letter-spacing: -6px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--gold);
}

.hero-copy {
  max-width: 730px;
  margin: 34px 0 28px;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.45;
  color: rgba(255,255,255,.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-fineprint {
  margin-top: 24px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}

.btn {
  appearance: none;
  border: 2px solid var(--black);
  border-radius: 4px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform .13s ease, box-shadow .13s ease, filter .13s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--burgundy);
  box-shadow: 5px 5px 0 #000;
}

.btn-gold:hover {
  box-shadow: 3px 3px 0 #000;
}

.btn-dark {
  background: var(--black);
  color: white;
  box-shadow: 5px 5px 0 var(--gold);
}

.btn-burgundy {
  background: var(--burgundy);
  color: white;
  box-shadow: 5px 5px 0 var(--gold);
}

.btn-ghost {
  border-color: rgba(255,255,255,.65);
  color: white;
  background: transparent;
}

.btn.full {
  width: 100%;
}

.ticker {
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.ticker-track {
  display: inline-flex;
  min-width: max-content;
  padding: 15px 0;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: 92px 0;
}

.white { background: white; }
.cream { background: var(--cream); }
.burgundy { background: var(--burgundy); }
.black { background: var(--black); color: white; }
.gold-section { background: var(--gold); }

.section-label {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2.3px;
  color: var(--burgundy);
}

.gold-text { color: var(--gold); }
.burgundy-text { color: var(--burgundy); }

.section-title {
  max-width: 890px;
  margin: 0 0 20px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -3px;
  text-transform: uppercase;
  font-weight: 1000;
}

.section-title.light {
  color: white;
}

.section-copy {
  max-width: 720px;
  margin: 0 0 45px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.section-copy.light-muted {
  color: rgba(255,255,255,.78);
}

.center {
  text-align: center;
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

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

.case-card {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border: 3px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.case-card::after {
  content: "REVIEW";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 7px;
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 1.4px;
  transform: rotate(5deg);
}

.case-number {
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 1000;
}

.case-card h3 {
  margin: 28px 0 12px;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.case-card p {
  margin: 0;
  color: #48433e;
  line-height: 1.5;
}

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.asterisk {
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.panel {
  background: white;
  border: 3px solid var(--black);
  box-shadow: 10px 10px 0 var(--gold);
  color: var(--black);
}

.assessment-panel {
  padding: 30px;
}

.check-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.4;
  cursor: pointer;
}

.check-row:first-child {
  padding-top: 4px;
}

.check-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--burgundy);
}

.assessment-panel .btn {
  margin-top: 24px;
}

.result {
  margin-top: 26px;
  padding: 24px;
  border-left: 7px solid var(--burgundy);
  background: #f1eee8;
}

.result-stamp {
  display: inline-block;
  padding: 5px 8px;
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
  transform: rotate(-1.5deg);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 1.5px;
}

.result h3 {
  margin: 15px 0 8px;
  font-size: 28px;
  text-transform: uppercase;
}

.result p {
  margin: 0;
  line-height: 1.5;
}

.notice-builder {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 40px;
  align-items: stretch;
}

.form-panel {
  padding: 28px;
  height: fit-content;
}

.form-panel label {
  display: block;
  margin-bottom: 20px;
  font-weight: 850;
  font-size: 14px;
}

.form-panel input,
.form-panel select {
  width: 100%;
  margin-top: 8px;
  border: 2px solid var(--black);
  border-radius: 0;
  padding: 13px 12px;
  background: white;
  color: var(--black);
}

.relocation-notice {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  padding: 42px;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
    repeating-linear-gradient(45deg, #eee 0, #eee 8px, #fff 8px, #fff 16px);
  border: 4px solid var(--black);
  box-shadow: 12px 12px 0 var(--burgundy);
}

.notice-topline {
  padding-bottom: 15px;
  border-bottom: 3px solid var(--black);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.notice-badge {
  position: absolute;
  top: 88px;
  right: 25px;
  padding: 10px 12px;
  border: 4px solid var(--burgundy);
  color: var(--burgundy);
  font-weight: 1000;
  text-align: center;
  transform: rotate(7deg);
  opacity: .9;
}

.notice-small {
  margin-top: 28px;
  color: #5d5751;
  font-size: 11px;
  font-weight: 800;
}

.relocation-notice h3 {
  max-width: 72%;
  margin: 32px 0 5px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: .9;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.notice-location {
  margin: 0;
  color: var(--burgundy);
  font-weight: 900;
  text-transform: uppercase;
}

.notice-rule {
  width: 100%;
  height: 4px;
  margin: 26px 0;
  background: var(--black);
}

.notice-order {
  margin-top: 35px;
  font-size: 24px;
  line-height: 1.25;
}

.notice-disclaimer {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 24px;
  margin: 0;
  color: #716b65;
  font-size: 10px;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.share-status {
  font-size: 13px;
  font-weight: 800;
}

.excuse-machine {
  margin-top: 45px;
  padding: 45px 28px;
  background: var(--gold);
  border: 4px solid var(--black);
  box-shadow: 10px 10px 0 var(--burgundy);
}

.machine-label {
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.excuse-machine blockquote {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px auto 30px;
  font-size: clamp(30px, 5vw, 49px);
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: -1.5px;
}

.truth-banner {
  display: inline-block;
  margin: 10px 0 28px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 1.5px;
}

.fund-copy {
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.8);
  font-size: 19px;
  line-height: 1.6;
}

.cause-card {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 28px;
  border: 2px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
}

.cause-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.cause-card h3 {
  margin: 13px 0 10px;
  font-size: 28px;
}

.cause-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

.donation-note {
  max-width: 580px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  line-height: 1.5;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  margin: 0;
  color: var(--burgundy);
  font-size: clamp(60px, 9vw, 105px);
  line-height: .9;
  letter-spacing: -5px;
}

.final-cta p {
  margin: 12px 0 0;
  color: var(--burgundy);
  font-weight: 800;
}

.footer {
  padding: 38px 0;
  background: #090909;
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  font-size: 12px;
  line-height: 1.5;
}

.footer-disclaimer {
  color: rgba(255,255,255,.48);
  text-align: right;
}

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

  .hero-inner {
    min-height: 610px;
  }

  .hero h1 {
    letter-spacing: -4px;
  }

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

  .two-col,
  .notice-builder {
    grid-template-columns: 1fr;
  }

  .two-col {
    gap: 35px;
  }

  .notice-builder {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .topbar {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .hero-inner {
    min-height: 570px;
    padding-top: 45px;
  }

  .hero h1 {
    font-size: clamp(52px, 18vw, 82px);
    letter-spacing: -3px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 67px 0;
  }

  .section-title {
    font-size: clamp(41px, 14vw, 62px);
    letter-spacing: -2px;
  }

  .section-copy {
    font-size: 17px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: 0;
  }

  .assessment-panel,
  .form-panel {
    padding: 22px;
  }

  .relocation-notice {
    min-height: 550px;
    padding: 28px;
    box-shadow: 7px 7px 0 var(--burgundy);
  }

  .notice-badge {
    top: 85px;
    right: 14px;
    font-size: 11px;
  }

  .relocation-notice h3 {
    max-width: 67%;
    margin-top: 40px;
  }

  .notice-disclaimer {
    left: 28px;
    right: 28px;
  }

  .share-row {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta h2 {
    letter-spacing: -3px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-disclaimer {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }

  .btn {
    transition: none;
  }
}


/* ================================
   V2 — EMAIL / EXCUSES / FUND / SOCIALS
   ================================ */

.email-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 22px;
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.email-divider::before,
.email-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #ddd;
}

.consent-row {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.35;
  font-weight: 650 !important;
  font-size: 12px !important;
}

.consent-row input {
  width: 18px !important;
  height: 18px;
  margin: 1px 0 0 !important;
  accent-color: var(--burgundy);
}

.btn-email {
  background: var(--gold);
  color: var(--burgundy);
  box-shadow: 5px 5px 0 var(--black);
}

.btn-email:disabled {
  opacity: .65;
  cursor: wait;
}

.disabled-looking {
  filter: saturate(.55);
}

.tiny-note {
  margin: 13px 0 0;
  color: #6d675f;
  font-size: 10px;
  line-height: 1.45;
}

.send-status {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 850;
}

.send-status.success {
  color: #176b34;
}

.send-status.error {
  color: #a11717;
}

.excuse-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
  color: var(--burgundy);
  font-size: 9px;
  line-height: 1.3;
  font-weight: 1000;
  letter-spacing: 1.4px;
  text-align: left;
}

.translation-box {
  max-width: 680px;
  margin: 0 auto 30px;
  padding: 18px 20px;
  border: 3px solid var(--burgundy);
  background: rgba(255,255,255,.62);
  text-align: left;
}

.translation-label {
  margin-bottom: 7px;
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.translation-box p {
  margin: 0;
  color: #211c18;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 750;
}

.centered-title {
  margin-left: auto;
  margin-right: auto;
}

.fund-beneficiary {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 25px;
  border: 2px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

.fund-beneficiary span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.fund-beneficiary h3 {
  margin: 10px 0 8px;
  font-size: 31px;
  text-transform: uppercase;
}

.fund-beneficiary p {
  margin: 0;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.donation-card {
  min-height: 220px;
  padding: 25px 18px;
  border: 2px solid var(--gold);
  background: transparent;
  color: white;
  text-align: left;
  cursor: pointer;
  transition: transform .14s ease, background .14s ease;
}

.donation-card.active:hover {
  transform: translateY(-4px);
  background: rgba(255,182,18,.09);
}

.donation-card.disabled-donation {
  opacity: .55;
  cursor: not-allowed;
}

.donation-price {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 41px;
  line-height: 1;
  font-weight: 1000;
}

.donation-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
}

.donation-card small {
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.5;
}

.donation-legal {
  max-width: 690px;
  margin: 14px auto 0;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  line-height: 1.5;
}

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

.social-card {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  border: 3px solid var(--black);
  background: white;
  box-shadow: 7px 7px 0 var(--gold);
  color: var(--black);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.social-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--gold);
}

.social-x {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: white;
  font-size: 20px;
}

.social-card strong,
.social-card span {
  display: block;
}

.social-card strong {
  margin-bottom: 4px;
  font-size: 17px;
}

.social-card div span {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 850;
}

.social-card b {
  color: var(--burgundy);
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-links a {
  color: var(--gold);
  font-weight: 800;
}

.privacy-page {
  min-height: 100vh;
  padding: 70px 0;
  background: var(--cream);
}

.privacy-page h1 {
  margin: 0 0 25px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: .95;
  text-transform: uppercase;
}

.privacy-copy {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.7;
}

.privacy-copy h2 {
  margin-top: 35px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .donation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .excuse-meta {
    flex-direction: column;
  }

  .donation-grid {
    grid-template-columns: 1fr;
  }

  .donation-card {
    min-height: 0;
  }

  .social-card {
    grid-template-columns: 43px 1fr;
  }

  .social-card b {
    grid-column: 2;
  }
}


/* ================================
   V3 — PROJECT TEAM HEADER + CLEAN FEATURE STATES
   ================================ */

.team-ribbon {
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,182,18,.42);
  color: white;
}

.team-ribbon-inner {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.team-ribbon-title span,
.team-ribbon-title strong {
  display: block;
}

.team-ribbon-title span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 1.7px;
}

.team-ribbon-title strong {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 1px;
}

.team-ribbon-scroll {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.team-ribbon-scroll::-webkit-scrollbar {
  display: none;
}

.team-pill {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.05);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}

.team-pill:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}


.team-pill-name {
  font-size: 11px;
  font-weight: 1000;
  white-space: nowrap;
}

.team-pill-handle {
  font-size: 9px;
  font-weight: 800;
  opacity: .68;
  white-space: nowrap;
}

.feature-prelaunch {
  margin-top: 28px;
  padding: 20px;
  border: 2px dashed #c8b887;
  background: #fff9e8;
}

.feature-prelaunch-label {
  display: block;
  margin-bottom: 7px;
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.feature-prelaunch strong {
  display: block;
  font-size: 17px;
}

.feature-prelaunch p {
  margin: 7px 0 0;
  color: #6b6252;
  font-size: 12px;
  line-height: 1.5;
}

.fund-prelaunch {
  max-width: 700px;
  margin: 28px auto 0;
  padding: 22px;
  border: 2px dashed rgba(255,182,18,.55);
  color: white;
}

.fund-prelaunch strong {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
}

.fund-prelaunch p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.66);
  line-height: 1.5;
}

.project-credit-section {
  padding: 35px 0;
  background: var(--cream);
  border-top: 1px solid #e9ddc0;
}

.project-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.project-credit span,
.project-credit strong {
  display: block;
}

.project-credit span {
  margin-bottom: 4px;
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.project-credit strong {
  font-size: 16px;
}

@media (max-width: 800px) {
  .team-ribbon-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .team-ribbon-title {
    display: flex;
    gap: 8px;
    align-items: baseline;
  }

  .team-ribbon-title strong {
    margin-top: 0;
  }

  .team-ribbon-scroll {
    margin-right: -14px;
    padding-right: 14px;
  }

  .project-credit {
    align-items: stretch;
    flex-direction: column;
  }
}


/* ================================
   V4 — COMEDY BLOG / DALLAS MAP
   ================================ */

.map-section {
  background: #111;
  color: white;
}

.map-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.map-callout {
  width: fit-content;
  margin-top: 28px;
  padding: 18px 22px;
  border: 3px solid var(--gold);
  color: var(--gold);
  transform: rotate(-1deg);
}

.map-callout-arrow {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.map-callout strong {
  display: block;
  margin-top: 3px;
  font-size: 24px;
}

.map-callout p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.texas-map-card {
  position: relative;
  padding: 20px;
  border: 4px solid var(--gold);
  background: #f6eedc;
  box-shadow: 12px 12px 0 #000;
  transform: rotate(.7deg);
}

.map-paper-label {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.texas-map-card svg {
  display: block;
  width: 100%;
  height: auto;
}

.texas-shape {
  fill: #dfc27d;
  stroke: #111;
  stroke-width: 7;
  stroke-linejoin: round;
}

.dallas-ring {
  fill: none;
  stroke: #8a1e1e;
  stroke-width: 9;
  stroke-dasharray: 14 8;
}

.dallas-dot {
  fill: #8a1e1e;
}

.map-arrow-line {
  stroke: #8a1e1e;
  stroke-width: 7;
}

.map-arrow-head {
  fill: #8a1e1e;
}

.map-label-big {
  fill: #8a1e1e;
  font-size: 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 1000;
}

.map-label-small {
  fill: #4b4032;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
}

.map-footnote {
  fill: #5f584e;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
}

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

.trait-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  border: 3px solid var(--black);
  background: white;
  box-shadow: 7px 7px 0 var(--gold);
}

.trait-number {
  color: var(--burgundy);
  font-size: 58px;
  line-height: .9;
  font-weight: 1000;
  letter-spacing: -3px;
}

.trait-card h3 {
  margin: 0 0 7px;
  font-size: 22px;
  text-transform: uppercase;
}

.trait-card p {
  margin: 0;
  color: #514a42;
  line-height: 1.5;
}

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

.blog-card {
  position: relative;
  padding: 30px;
  border: 3px solid var(--black);
  background: white;
  box-shadow: 8px 8px 0 var(--gold);
}

.blog-card-featured {
  grid-column: span 2;
  background: var(--cream);
}

.blog-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 8px;
  background: var(--burgundy);
  color: white;
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 1.5px;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.blog-card p {
  color: #4f4943;
  line-height: 1.6;
}

.blog-toggle {
  appearance: none;
  margin-top: 10px;
  border: 0;
  border-bottom: 3px solid var(--burgundy);
  padding: 0 0 4px;
  background: transparent;
  color: var(--burgundy);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.blog-extra {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #ddd;
}

.blog-extra p {
  margin: 0;
}

.comedy-cta {
  border-top: 8px solid var(--gold);
}

.comedy-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
}

@media (max-width: 900px) {
  .map-layout,
  .comedy-cta-inner {
    grid-template-columns: 1fr;
  }

  .trait-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-featured {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .trait-card {
    grid-template-columns: 70px 1fr;
    padding: 22px;
  }

  .trait-number {
    font-size: 46px;
  }

  .texas-map-card {
    padding: 12px;
    box-shadow: 7px 7px 0 #000;
  }

  .map-paper-label {
    top: 10px;
    left: 12px;
    font-size: 8px;
  }
}


/* ================================
   V4.1 — REAL MAP + CLEARER JOKES
   ================================ */

.map-intro strong {
  color: var(--gold);
}

.real-map-card {
  overflow: hidden;
  border: 4px solid var(--gold);
  background: #f7f1e3;
  box-shadow: 12px 12px 0 #000;
}

.map-card-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  color: #111;
  border-bottom: 3px solid #111;
}

.map-card-header span,
.map-card-header strong {
  display: block;
}

.map-card-kicker {
  margin-bottom: 4px;
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.map-card-header strong {
  font-size: 19px;
}

.map-card-badge {
  max-width: 230px;
  padding: 8px 10px;
  border: 3px solid var(--burgundy);
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 1px;
  text-align: center;
  transform: rotate(1.5deg);
}

.real-us-map {
  width: 100%;
  height: 520px;
  background: #ddd;
}

.map-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  color: #2c2926;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.legend-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: -1px;
}

.legend-dc {
  background: var(--gold);
  border: 2px solid var(--burgundy);
}

.legend-dallas {
  background: var(--burgundy);
}

.dallas-map-tooltip {
  border: 3px solid var(--burgundy) !important;
  background: #fff9e9 !important;
  color: var(--burgundy) !important;
  font-weight: 1000 !important;
  box-shadow: 4px 4px 0 rgba(0,0,0,.32) !important;
}

.directions-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 0;
  margin-top: 42px;
  overflow: hidden;
  border: 4px solid #111;
  background: white;
  box-shadow: 10px 10px 0 var(--gold);
}

.directions-copy {
  padding: 34px;
  background: var(--cream);
  color: #111;
}

.directions-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: .98;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.directions-copy p {
  font-size: 16px;
  line-height: 1.6;
}

.directions-joke {
  margin: 24px 0;
  padding: 16px;
  border-left: 6px solid var(--burgundy);
  background: white;
  font-weight: 800;
}

.directions-frame-wrap {
  min-height: 470px;
  position: relative;
  background: #ddd;
}

.directions-frame-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 10px;
  background: #111;
  color: var(--gold);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: 1.5px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.25);
}

.directions-frame {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
  display: block;
}

.trait-number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trait-number span {
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0;
  color: #7b6c5d;
}

@media (max-width: 900px) {
  .directions-card {
    grid-template-columns: 1fr;
  }

  .real-us-map {
    height: 440px;
  }

  .map-legend {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .map-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card-badge {
    max-width: 100%;
  }

  .real-us-map {
    height: 370px;
  }

  .directions-copy {
    padding: 24px;
  }

  .directions-frame,
  .directions-frame-wrap {
    min-height: 410px;
  }
}


/* ================================
   V4.2 — CLEANUP
   ================================ */

.hero-inner {
  min-height: 620px;
}

.hero-actions {
  margin-top: 34px;
}

.footer-inner {
  grid-template-columns: 1fr;
}

.footer-links {
  margin-top: 8px;
}

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