/* =====================================================
   THE CRISIS ROOM
   EVENTS
===================================================== */

:root {
  --tcr-navy: #000717;
  --tcr-red: #7E0106;
  --tcr-white: #FFFFFF;
  --tcr-cream: #F7E0B8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--tcr-navy);
  color: var(--tcr-white);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden;
}

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


/* =====================================================
   NAVIGATION
===================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 100;
  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  width: 46px;
  height: auto;
  object-fit: contain;
}

.navigation {
  display: flex;
  gap: 34px;

  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.navigation a {
  opacity: 0.72;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.navigation a:hover {
  opacity: 1;
  color: var(--tcr-cream);
  transform: translateY(-2px);
}

.navigation a.active {
  opacity: 1;
  color: var(--tcr-cream);
}


/* =====================================================
   HAMBURGER
===================================================== */

.menu-button {
  display: none;

  width: 30px;
  height: 30px;

  padding: 0;
  border: none;
  background: transparent;

  cursor: pointer;

  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.menu-button span {
  display: block;

  width: 24px;
  height: 1px;

  margin: 4px 0;

  background: var(--tcr-white);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}

.menu-button.active span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}


/* =========================================================
   EVENTS HERO
========================================================= */

.events-hero {
  position: relative;

  min-height: 100vh;

  padding: 150px 6vw 65px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;

  border-bottom: 1px solid rgba(247, 224, 184, 0.18);
}


/* =========================================================
   BACKGROUND WORD
========================================================= */

.events-hero::before {
  content: "EVENTS";

  position: absolute;

  right: -25px;
  bottom: -65px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(180px, 28vw, 430px);

  line-height: 0.7;

  color: rgba(247, 224, 184, 0.025);

  pointer-events: none;
  user-select: none;
}


/* =========================================================
   EDITORIAL LINE
========================================================= */

.events-hero::after {
  content: "";

  position: absolute;

  top: 0;
  right: 13vw;

  width: 1px;
  height: 100%;

  background: rgba(247, 224, 184, 0.08);

  pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.events-hero-content {
  position: relative;

  z-index: 2;

  width: 100%;

  display: flex;
  flex-direction: column;
}


/* =========================================================
   EYEBROW
========================================================= */

.events-hero .eyebrow {
  margin: 0;

  font-family: "DM Mono", monospace;

  font-size: 10px;

  letter-spacing: 0.2em;

  color: var(--tcr-red);
}


/* =========================================================
   MAIN TITLE
========================================================= */

.events-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 140px 0 0;
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;
  font-size: clamp(115px, 16vw, 235px);
  line-height: 0.72;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--tcr-cream);
}

.events-hero .hero-line {
  margin: 48px 0 0;
}

.events-hero .hero-description {
  margin: 24px 0 0;
}

.events-hero-buttons {
  margin-top: 38px;
}


/* =========================================================
   SUPPORTING CONTENT
========================================================= */

.events-hero .hero-line {
  margin: 42px 0 0;

  font-family: "DM Mono", monospace;

  font-size: 10px;

  letter-spacing: 0.18em;

  color: var(--tcr-red);
}


.events-hero .hero-description {
  max-width: 520px;

  margin: 22px 0 0;

  font-size: 16px;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   BUTTONS
========================================================= */

.events-hero-buttons {
  display: flex;

  gap: 10px;

  margin-top: 32px;
}

.events-hero-buttons a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 145px;

  padding: 14px 18px;

  border: 1px solid rgba(247, 224, 184, 0.25);

  background: transparent;

  color: var(--tcr-cream);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.12em;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.events-hero-buttons a:hover {
  background: var(--tcr-red);

  border-color: var(--tcr-red);

  color: var(--tcr-white);

  transform: translateY(-2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .events-hero {
    min-height: 100vh;

    padding: 120px 22px 45px;
  }

  .events-hero::before {
    right: -20px;

    bottom: 20px;

    font-size: 42vw;
  }

  .events-hero::after {
    right: 25px;
  }

  .events-hero .eyebrow {
    font-size: 9px;
  }

  .events-hero h1 {
    margin-top: 55px;

    font-size: clamp(80px, 20vw, 125px);

    line-height: 0.75;
  }

  .events-hero .hero-line {
    margin-top: 32px;

    font-size: 9px;

    line-height: 1.5;
  }

  .events-hero .hero-description {
    max-width: 100%;

    margin-top: 20px;

    font-size: 14px;

    line-height: 1.7;
  }

  .events-hero-buttons {
    margin-top: 30px;

    flex-direction: column;

    align-items: stretch;
  }

  .events-hero-buttons a {
    width: 100%;

    box-sizing: border-box;
  }
}

/* =====================================================
   UPCOMING EVENT
===================================================== */

.upcoming-event {
  padding: 105px 7vw;

  border-bottom: 1px solid rgba(247, 224, 184, 0.18);
}

.section-heading {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;

  margin-bottom: 65px;
}

.section-heading-label {
  margin: 0;

  font-family: "DM Mono", monospace;

  font-size: 10px;

  letter-spacing: 0.18em;

  color: var(--tcr-red);

  transition:
    color 0.3s ease,
    letter-spacing 0.3s ease;
}

.section-heading:hover .section-heading-label {
  color: var(--tcr-cream);
  letter-spacing: 0.23em;
}

.section-heading h2 {
  margin: 0;

  max-width: 600px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  /* SMALLER */
  font-size: clamp(45px, 5.5vw, 75px);

  line-height: 0.88;

  font-weight: 400;

  letter-spacing: -0.03em;

  text-align: right;

  color: var(--tcr-cream);

  text-wrap: balance;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.section-heading h2:hover {
  color: var(--tcr-white);
  transform: translateX(-4px);
}


/* =====================================================
   EVENT THEME
===================================================== */

.event-theme {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 8vw;

  padding-bottom: 65px;

  border-bottom: 1px solid rgba(247, 224, 184, 0.18);
}

.event-slogan {
  margin: 0;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(38px, 4.5vw, 62px);

  line-height: 0.88;

  letter-spacing: -0.025em;

  color: var(--tcr-red);

  text-wrap: balance;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.event-slogan:hover {
  color: var(--tcr-cream);
  transform: translateX(5px);
}

.event-introduction {
  max-width: 570px;

  margin: 0;

  font-size: 17px;

  line-height: 1.65;

  color: rgba(255, 255, 255, 0.68);
}


/* =====================================================
   EVENT INFORMATION
===================================================== */

.event-information {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-bottom: 1px solid rgba(247, 224, 184, 0.18);
}

.event-info-item {
  min-height: 135px;

  padding: 27px 30px 27px 0;

  border-right: 1px solid rgba(247, 224, 184, 0.18);

  transition:
    background 0.3s ease,
    padding-left 0.3s ease;
}

.event-info-item:not(:first-child) {
  padding-left: 30px;
}

.event-info-item:last-child {
  border-right: none;
}

.event-info-item:hover {
  background: rgba(126, 1, 6, 0.07);
}

.event-info-item span {
  display: block;

  margin-bottom: 20px;

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.15em;

  color: var(--tcr-red);
}

.event-info-item strong {
  display: block;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(25px, 2.5vw, 38px);

  line-height: 0.92;

  font-weight: 400;

  letter-spacing: -0.02em;

  color: var(--tcr-cream);

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.event-info-item:hover strong {
  color: var(--tcr-white);
  transform: translateX(4px);
}


/* =====================================================
   ROOMS
===================================================== */

.rooms-heading {
  margin: 90px 0 45px;

  max-width: 700px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  /* SMALLER */
  font-size: clamp(45px, 5.5vw, 78px);

  line-height: 0.84;

  font-weight: 400;

  letter-spacing: -0.03em;

  color: var(--tcr-cream);

  text-wrap: balance;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.rooms-heading:hover {
  color: var(--tcr-white);
  transform: translateX(5px);
}

.rooms-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  border-top: 1px solid rgba(247, 224, 184, 0.22);
  border-left: 1px solid rgba(247, 224, 184, 0.22);
}

.crisis-room-card {
  position: relative;

  min-height: 500px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 32px;

  border-right: 1px solid rgba(247, 224, 184, 0.22);
  border-bottom: 1px solid rgba(247, 224, 184, 0.22);

  overflow: hidden;

  transition:
    background 0.4s ease,
    transform 0.4s ease,
    border-color 0.4s ease;
}

.crisis-room-card::before {
  content: "";

  position: absolute;

  right: -80px;
  bottom: -80px;

  width: 200px;
  height: 200px;

  border: 1px solid var(--tcr-red);

  transform: rotate(45deg);

  opacity: 0;

  transition:
    opacity 0.4s ease,
    transform 0.5s ease;
}

.crisis-room-card:hover {
  background: rgba(126, 1, 6, 0.055);

  border-color: rgba(247, 224, 184, 0.4);

  transform: translateY(-5px);
}

.crisis-room-card:hover::before {
  opacity: 0.75;

  transform: rotate(45deg) translate(-10px, -10px);
}

.room-one {
  background: rgba(126, 1, 6, 0.025);
}

.room-two {
  background: rgba(247, 224, 184, 0.015);
}

.room-card-top {
  position: relative;
  z-index: 2;

  display: flex;

  justify-content: space-between;
  align-items: flex-start;
}

.room-kicker {
  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.15em;

  color: var(--tcr-red);
}

.room-number {
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: 65px;

  line-height: 0.7;

  color: rgba(247, 224, 184, 0.12);

  font-weight: 400;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.crisis-room-card:hover .room-number {
  color: rgba(126, 1, 6, 0.35);
  transform: translateY(-5px);
}

.room-card-content {
  position: relative;
  z-index: 2;
}

.room-card-content h3 {
  max-width: 600px;

  margin: 0 0 20px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  /* MUCH SMALLER */
  font-size: clamp(30px, 3.2vw, 48px);

  line-height: 0.9;

  font-weight: 400;

  letter-spacing: -0.025em;

  color: var(--tcr-white);

  text-wrap: balance;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.crisis-room-card:hover .room-card-content h3 {
  color: var(--tcr-cream);
  transform: translateX(4px);
}

.room-card-content p {
  max-width: 500px;

  margin: 0;

  font-size: 13px;

  line-height: 1.65;

  color: rgba(255, 255, 255, 0.6);
}

.room-card-bottom {
  position: relative;
  z-index: 2;

  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 25px;

  margin-top: 35px;
}

.room-card-bottom p {
  max-width: 340px;

  margin: 0;

  font-size: 11px;

  line-height: 1.5;

  color: var(--tcr-cream);
}

.room-tags {
  display: flex;

  flex-wrap: wrap;

  justify-content: flex-end;

  gap: 7px;
}

.room-tags span {
  padding: 7px 10px;

  border: 1px solid rgba(247, 224, 184, 0.22);

  font-family: "DM Mono", monospace;

  font-size: 8px;

  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.5);

  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.room-tags span:hover {
  border-color: var(--tcr-red);

  background: rgba(126, 1, 6, 0.15);

  color: var(--tcr-cream);
}


/* =====================================================
   APPLICATION
===================================================== */

.diplomat-application {
  padding: 105px 7vw;

  background: var(--tcr-cream);

  color: var(--tcr-navy);
}

.application-heading {
  display: grid;

  grid-template-columns: 1fr 0.55fr;

  gap: 8vw;

  align-items: end;

  margin-bottom: 70px;
}

.application-heading h2 {
  margin: 0;

  max-width: 700px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  /* SMALLER */
  font-size: clamp(50px, 6vw, 88px);

  line-height: 0.82;

  font-weight: 400;

  letter-spacing: -0.035em;

  color: var(--tcr-navy);

  text-wrap: balance;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.application-heading h2:hover {
  color: var(--tcr-red);
  transform: translateX(5px);
}

.application-heading p {
  max-width: 350px;

  margin: 0;

  font-size: 16px;

  line-height: 1.6;

  font-weight: 500;
}


/* =====================================================
   FORM
===================================================== */

.tcr-application-form {
  max-width: 1000px;

  margin-left: auto;
}

.form-field {
  display: grid;

  grid-template-columns: 220px 1fr;

  gap: 30px;

  padding: 25px 0;

  border-top: 1px solid rgba(0, 7, 23, 0.25);
}

.form-field label {
  padding-top: 5px;

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.12em;

  color: var(--tcr-red);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  border: 0;

  border-bottom: 1px solid rgba(0, 7, 23, 0.35);

  border-radius: 0;

  outline: none;

  background: transparent;

  color: var(--tcr-navy);

  font-family: "Manrope", sans-serif;

  font-size: 16px;

  padding: 5px 0 13px;

  transition: border-color 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(0, 7, 23, 0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--tcr-red);
}

.form-field textarea {
  min-height: 120px;

  resize: vertical;

  line-height: 1.5;
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: var(--tcr-cream);
  color: var(--tcr-navy);
}


/* =====================================================
   ROOM SELECTION
===================================================== */

.room-selection {
  padding: 32px 0;

  border-top: 1px solid rgba(0, 7, 23, 0.25);
}

.room-selection > label {
  display: block;

  margin-bottom: 22px;

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.12em;

  color: var(--tcr-red);
}

.room-options {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;
}

.apply-option {
  position: relative;

  display: block;

  padding: 20px;

  border: 1px solid rgba(0, 7, 23, 0.3);

  cursor: pointer;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.apply-option:hover {
  border-color: var(--tcr-red);

  background: rgba(126, 1, 6, 0.06);

  transform: translateY(-3px);
}

.apply-option input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.apply-option strong {
  display: block;

  margin-bottom: 8px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: 24px;

  line-height: 0.9;

  font-weight: 400;
}

.apply-option span {
  font-family: "DM Mono", monospace;

  font-size: 8px;

  letter-spacing: 0.08em;

  opacity: 0.65;
}

.apply-option.selected {
  background: var(--tcr-red);

  border-color: var(--tcr-red);

  color: var(--tcr-white);

  transform: translateY(-3px);
}


/* =====================================================
   SUBMIT
===================================================== */

.application-submit {
  width: 100%;

  padding: 22px 0;

  display: flex;

  justify-content: space-between;
  align-items: center;

  border: 0;

  border-top: 2px solid var(--tcr-navy);
  border-bottom: 2px solid var(--tcr-navy);

  background: transparent;

  color: var(--tcr-navy);

  cursor: pointer;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(32px, 4vw, 55px);

  font-weight: 400;

  letter-spacing: -0.02em;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    padding 0.3s ease;
}

.application-submit:hover {
  background: var(--tcr-red);

  color: var(--tcr-white);

  padding-left: 18px;
  padding-right: 18px;
}

.application-submit span:last-child {
  font-family: Arial, sans-serif;

  font-size: 28px;

  transition: transform 0.3s ease;
}

.application-submit:hover span:last-child {
  transform: translateX(7px);
}

.form-message {
  min-height: 25px;

  margin-top: 18px;

  font-family: "DM Mono", monospace;

  font-size: 10px;

  letter-spacing: 0.08em;

  color: var(--tcr-red);
}

.application-note {
  margin: 22px 0 0;

  font-family: "DM Mono", monospace;

  font-size: 8px;

  line-height: 1.6;

  letter-spacing: 0.06em;

  opacity: 0.55;
}


/* =====================================================
   WHAT TO EXPECT
===================================================== */

.what-to-expect {
  padding: 105px 7vw;

  border-bottom: 1px solid rgba(247, 224, 184, 0.18);
}

.expect-heading {
  margin: 0 0 60px;

  max-width: 700px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  /* SMALLER */
  font-size: clamp(45px, 5.5vw, 78px);

  line-height: 0.84;

  font-weight: 400;

  letter-spacing: -0.03em;

  color: var(--tcr-cream);

  text-wrap: balance;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.expect-heading:hover {
  color: var(--tcr-white);
  transform: translateX(5px);
}

.expect-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(247, 224, 184, 0.22);
  border-left: 1px solid rgba(247, 224, 184, 0.22);
}

.expect-item {
  min-height: 245px;

  padding: 27px;

  border-right: 1px solid rgba(247, 224, 184, 0.22);
  border-bottom: 1px solid rgba(247, 224, 184, 0.22);

  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.expect-item:hover {
  background: rgba(126, 1, 6, 0.08);

  transform: translateY(-4px);
}

.expect-item > span {
  display: block;

  margin-bottom: 48px;

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.12em;

  color: var(--tcr-red);
}

.expect-item h3 {
  margin: 0 0 14px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(26px, 2.5vw, 38px);

  line-height: 0.9;

  font-weight: 400;

  letter-spacing: -0.02em;

  color: var(--tcr-white);

  transition: color 0.3s ease;
}

.expect-item:hover h3 {
  color: var(--tcr-cream);
}

.expect-item p {
  max-width: 280px;

  margin: 0;

  font-size: 13px;

  line-height: 1.55;

  color: rgba(255, 255, 255, 0.58);
}


/* =====================================================
   PAST EVENTS / ARCHIVE
===================================================== */

.past-events {
  padding: 105px 7vw;

  border-bottom: 1px solid rgba(247, 224, 184, 0.18);
}


/* ARCHIVE INTRO */

.archive-heading {
  margin-bottom: 50px;
}

.archive-heading .section-label {
  display: block;

  margin-bottom: 16px;

  color: var(--tcr-red);

  font-family: "DM Mono", monospace;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.archive-heading h2 {
  max-width: 700px;

  margin: 0 0 20px;

  color: var(--tcr-cream);

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  /* THIS IS THE IMPORTANT FIX */
  font-size: clamp(40px, 4.5vw, 58px);

  font-weight: 400;

  line-height: 0.94;

  letter-spacing: -0.02em;

  text-wrap: balance;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.archive-heading h2:hover {
  color: var(--tcr-white);

  transform: translateX(4px);
}

.archive-heading p {
  max-width: 620px;

  margin: 0;

  color: rgba(255, 255, 255, 0.62);

  font-family: Arial, sans-serif;

  font-size: 16px;

  line-height: 1.7;
}


/* PAST EVENT */

.past-event {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 7vw;

  align-items: center;

  padding: 55px 0;

  border-top: 1px solid rgba(247, 224, 184, 0.22);
}

.past-event.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.past-event.reverse .past-event-image {
  order: 2;
}

.past-event.reverse .past-event-content {
  order: 1;
}

.past-event-image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 16 / 10;

  background: rgba(247, 224, 184, 0.05);

  border: 1px solid rgba(247, 224, 184, 0.18);

  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
}

.past-event:hover .past-event-image {
  border-color: var(--tcr-red);

  transform: translateY(-4px);
}

.past-event-image::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 35%;
  height: 3px;

  background: var(--tcr-red);

  z-index: 3;

  transition: width 0.4s ease;
}

.past-event:hover .past-event-image::before {
  width: 100%;
}

.past-event-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(0, 7, 23, 0.08),
      rgba(126, 1, 6, 0.2)
    );

  pointer-events: none;
}

.past-event-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  filter:
    saturate(0.65)
    contrast(1.05)
    brightness(0.8);

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.past-event:hover .past-event-image img {
  transform: scale(1.05);

  filter:
    saturate(0.85)
    contrast(1.08)
    brightness(0.9);
}

.past-event-content {
  max-width: 570px;

  transition: transform 0.35s ease;
}

.past-event:hover .past-event-content {
  transform: translateX(3px);
}

.past-event-date {
  display: block;

  margin-bottom: 14px;

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.14em;

  color: var(--tcr-red);
}

.past-event-content h3 {
  margin: 0 0 18px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  /* SMALLER */
  font-size: clamp(35px, 4vw, 55px);

  line-height: 0.88;

  font-weight: 400;

  letter-spacing: -0.025em;

  color: var(--tcr-cream);

  text-wrap: balance;

  transition: color 0.35s ease;
}

.past-event:hover .past-event-content h3 {
  color: var(--tcr-white);
}

.past-event-partner {
  margin: 0 0 20px;

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.1em;

  color: var(--tcr-red);
}

.past-event-content p {
  max-width: 500px;

  margin: 0;

  font-size: 14px;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.62);
}

.past-event-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 22px;
}

.past-event-meta span {
  padding: 7px 10px;

  border: 1px solid rgba(247, 224, 184, 0.2);

  font-family: "DM Mono", monospace;

  font-size: 8px;

  letter-spacing: 0.07em;

  color: rgba(255, 255, 255, 0.5);

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.past-event-meta span:hover {
  color: var(--tcr-cream);

  border-color: var(--tcr-red);

  background: rgba(126, 1, 6, 0.08);
}


/* =====================================================
   FINAL CTA
===================================================== */

.events-final-cta {
  position: relative;

  min-height: 62vh;

  padding: 100px 7vw;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  overflow: hidden;
}

.events-final-cta::before {
  content: "→";

  position: absolute;

  right: 3vw;
  bottom: -7vw;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(230px, 30vw, 450px);

  line-height: 0.7;

  color: rgba(126, 1, 6, 0.13);

  transform: rotate(-12deg);

  pointer-events: none;

  transition:
    color 0.4s ease,
    transform 0.5s ease;
}

.events-final-cta:hover::before {
  color: rgba(126, 1, 6, 0.2);

  transform: rotate(-12deg) translate(-10px, -10px);
}

.events-final-cta h2 {
  position: relative;
  z-index: 2;

  margin: 0;

  max-width: 700px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  /* SMALLER */
  font-size: clamp(52px, 6.5vw, 95px);

  line-height: 0.8;

  font-weight: 400;

  letter-spacing: -0.035em;

  color: var(--tcr-cream);

  text-wrap: balance;

  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.events-final-cta:hover h2 {
  color: var(--tcr-white);

  transform: translateX(5px);
}

.final-cta-buttons {
  position: relative;
  z-index: 2;

  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.final-cta-buttons a {
  padding: 14px 21px;

  border: 1px solid rgba(247, 224, 184, 0.3);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.1em;

  color: var(--tcr-cream);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.final-cta-buttons a:hover {
  background: var(--tcr-red);

  border-color: var(--tcr-red);

  color: var(--tcr-white);

  transform: translateY(-3px);
}


/* =====================================================
   FOOTER
   SAME AS COLLABORATE
===================================================== */

.tcr-footer {
  position: relative;

  padding: 80px 6vw 25px;

  background: var(--tcr-navy);

  color: var(--tcr-white);

  border-top: 1px solid rgba(247, 224, 184, 0.18);
}

.footer-main {
  display: grid;

  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;

  gap: 60px;

  padding-bottom: 80px;
}

.footer-identity {
  max-width: 360px;
}

.footer-logo {
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(38px, 4.5vw, 62px);

  line-height: 0.9;

  color: var(--tcr-cream);

  opacity: 0.85;

  font-weight: 400;

  margin-bottom: 22px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-logo:hover {
  color: var(--tcr-red);
  transform: translateX(4px);
}

.footer-description {
  max-width: 330px;

  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-family: Arial, sans-serif;

  font-size: 13px;

  line-height: 1.6;
}

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 13px;
}

.footer-column > span {
  margin-bottom: 12px;

  color: var(--tcr-red);

  font-family: Arial, sans-serif;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.2em;
}

.footer-column a,
.footer-location {
  margin: 0;

  color: rgba(255, 255, 255, 0.58);

  font-family: Arial, sans-serif;

  font-size: 11px;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-column a:hover {
  color: var(--tcr-cream);

  transform: translateX(5px);
}

.footer-location {
  margin-top: 8px;

  color: rgba(247, 224, 184, 0.45);
}

.footer-bottom {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 20px;

  padding-top: 20px;

  border-top: 1px solid rgba(247, 224, 184, 0.12);

  color: rgba(247, 224, 184, 0.35);

  font-family: Arial, sans-serif;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 0.14em;
}

.footer-bottom a {
  color: rgba(247, 224, 184, 0.35);

  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--tcr-cream);
}

.footer-bottom span:last-child {
  text-align: right;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

  /* NAV */

  .site-header {
    height: 70px;
    padding: 0 22px;
    background: var(--tcr-navy);
  }

  .logo img {
    width: 42px;
  }

  .navigation {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .navigation.mobile-open {
    display: flex;

    position: fixed;

    top: 70px;
    left: 0;

    width: 100%;

    padding: 25px 22px 30px;

    flex-direction: column;

    gap: 0;

    background: var(--tcr-navy);

    border-top: 1px solid rgba(247, 224, 184, 0.15);
    border-bottom: 1px solid rgba(247, 224, 184, 0.15);

    z-index: 99;
  }

  .navigation.mobile-open a {
    padding: 15px 0;

    font-size: 12px;

    letter-spacing: 0.08em;

    opacity: 0.9;
  }


  /* HERO */

.events-hero {
  min-height: 85vh;

  padding: 120px 6vw 50px;
}

.events-hero::before {
  right: -12vw;
  bottom: 0;

  font-size: clamp(140px, 42vw, 260px);
}

.events-hero::after {
  right: 8vw;
}

.events-hero h1 {
  margin-top: 45px;

  font-size: clamp(55px, 15vw, 95px);
}

.events-hero-bottom {
  display: block;

  padding-top: 60px;
}

.events-hero-bottom p {
  max-width: 340px;

  font-size: 16px;
}

.events-hero-buttons {
  margin-top: 32px;

  gap: 9px;
}

.events-hero-buttons a {
  min-width: 0;

  padding: 13px 15px;

  font-size: 8px;
}

  /* UPCOMING */

  .upcoming-event {
    padding: 80px 6vw;
  }

  .section-heading {
    display: block;

    margin-bottom: 55px;
  }

  .section-heading h2 {
    margin-top: 25px;

    max-width: 100%;

    font-size: clamp(42px, 12vw, 70px);

    text-align: left;
  }

  .event-theme {
    display: block;

    padding-bottom: 50px;
  }

  .event-slogan {
    margin-bottom: 35px;

    font-size: clamp(38px, 11vw, 58px);
  }

  .event-introduction {
    font-size: 16px;
  }


  /* INFORMATION */

  .event-information {
    display: block;
  }

  .event-info-item,
  .event-info-item:not(:first-child) {
    min-height: auto;

    padding: 23px 0;

    border-right: none;

    border-bottom: 1px solid rgba(247, 224, 184, 0.2);
  }

  .event-info-item:last-child {
    border-bottom: none;
  }

  .event-info-item strong {
    font-size: 34px;
  }


  /* ROOMS */

  .rooms-heading {
    margin: 75px 0 40px;

    font-size: clamp(42px, 12vw, 65px);
  }

  .rooms-grid {
    display: block;
  }

  .crisis-room-card {
    min-height: 500px;

    padding: 27px;
  }

  .room-number {
    font-size: 58px;
  }

  .room-card-content h3 {
    font-size: clamp(28px, 9vw, 48px);
  }

  .room-card-bottom {
    display: block;

    margin-top: 35px;
  }

  .room-card-bottom p {
    margin-bottom: 20px;
  }

  .room-tags {
    justify-content: flex-start;
  }


  /* APPLICATION */

  .diplomat-application {
    padding: 80px 6vw;
  }

  .application-heading {
    display: block;

    margin-bottom: 55px;
  }

  .application-heading h2 {
    margin-bottom: 35px;

    font-size: clamp(45px, 13vw, 70px);
  }

  .application-heading p {
    font-size: 16px;
  }


  /* FORM */

  .form-field {
    display: block;

    padding: 24px 0;
  }

  .form-field label {
    display: block;

    margin-bottom: 16px;

    font-size: 10px;
  }

  .room-selection {
    padding: 27px 0;
  }

  .room-options {
    display: block;
  }

  .apply-option {
    margin-bottom: 9px;

    padding: 20px;
  }

  .application-submit {
    padding: 21px 0;

    font-size: clamp(30px, 9vw, 48px);
  }


  /* EXPECT */

  .what-to-expect {
    padding: 80px 6vw;
  }

  .expect-heading {
    margin-bottom: 50px;

    font-size: clamp(42px, 12vw, 68px);
  }

  .expect-grid {
    display: block;
  }

  .expect-item {
    min-height: 220px;

    padding: 25px;
  }

  .expect-item > span {
    margin-bottom: 45px;
  }

  .expect-item h3 {
    font-size: clamp(27px, 8vw, 42px);
  }


  /* ARCHIVE */

  .past-events {
    padding: 80px 6vw;
  }

  .archive-heading {
    margin-bottom: 40px;
  }

  .archive-heading .section-label {
    font-size: 9px;

    margin-bottom: 14px;
  }

  .archive-heading h2 {
    max-width: 100%;

    font-size: clamp(36px, 10vw, 52px);

    line-height: 0.96;
  }

  .archive-heading p {
    font-size: 14px;

    line-height: 1.65;
  }


  /* PAST EVENTS */

  .past-event,
  .past-event.reverse {
    display: block;

    padding: 45px 0;
  }

  .past-event.reverse .past-event-image,
  .past-event.reverse .past-event-content {
    order: initial;
  }

  .past-event-image {
    margin-bottom: 35px;

    aspect-ratio: 4 / 3;
  }

  .past-event-content h3 {
    font-size: clamp(34px, 10vw, 50px);
  }


  /* CTA */

  .events-final-cta {
    min-height: 60vh;

    padding: 80px 6vw;
  }

  .events-final-cta h2 {
    font-size: clamp(48px, 14vw, 78px);
  }

  .final-cta-buttons {
    gap: 9px;
  }


  /* FOOTER */

  .tcr-footer {
    padding: 65px 6vw 25px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 50px 28px;

    padding-bottom: 60px;
  }

  .footer-identity {
    grid-column: 1 / -1;
  }

  .footer-logo {
    font-size: clamp(44px, 12vw, 65px);

    margin-bottom: 20px;
  }

  .footer-description {
    max-width: 340px;

    font-size: 14px;

    line-height: 1.65;
  }

  .footer-column {
    gap: 14px;
  }

  .footer-column > span {
    margin-bottom: 12px;

    font-size: 10px;
  }

  .footer-column a,
  .footer-location {
    font-size: 13px;

    line-height: 1.4;
  }

  .footer-bottom {
    grid-template-columns: 1fr;

    gap: 12px;

    padding-top: 22px;

    font-size: 9px;

    line-height: 1.5;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}


/* =====================================================
   SMALL SCREENS
===================================================== */

@media (max-width: 480px) {

  .events-hero h1 {
    font-size: clamp(52px, 17vw, 82px);
  }

  .events-hero-bottom p {
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .event-slogan {
    font-size: clamp(36px, 11vw, 55px);
  }

  .rooms-heading {
    font-size: clamp(40px, 12vw, 60px);
  }

  .crisis-room-card {
    padding: 24px;
  }

  .room-card-content h3 {
    font-size: clamp(27px, 9vw, 45px);
  }

  .application-heading h2 {
    font-size: clamp(43px, 13vw, 65px);
  }

  .expect-heading {
    font-size: clamp(40px, 12vw, 62px);
  }

  .archive-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .past-event-content h3 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .events-final-cta h2 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-column a,
  .footer-location {
    font-size: 12px;
  }
}

/* =========================================================
   ROOM SELECTION
   ========================================================= */

.room-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.apply-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.apply-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.apply-option span {
  min-height: 150px;
  padding: 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* Make the boxes clearly visible */
  border: 1px solid rgba(247, 224, 184, 0.35);
  background: rgba(247, 224, 184, 0.06);

  color: var(--tcr-red);

  font-family: "DM Mono", monospace;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.apply-option span small {
  display: block;

  margin-top: 25px;

  color: #7E0106;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

/* Hover */

.apply-option:hover span {
  border-color: var(--tcr-red);
  background: rgba(126, 1, 6, 0.15);
  color: var(--tcr-cream);
  transform: translateY(-2px);
}

/* Selected */

.apply-option.selected span {
  border-color: var(--tcr-red);
  background: var(--tcr-red);
  color: var(--tcr-cream);
  transform: translateY(-3px);
}

.apply-option.selected span small {
  color: rgba(247, 224, 184, 0.85);
}

/* Keyboard focus */

.apply-option input:focus-visible + span {
  outline: 1px solid var(--tcr-cream);
  outline-offset: 4px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

  .room-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .apply-option span {
    min-height: 105px;
    padding: 24px;
    font-size: 14px;
  }

  .apply-option span small {
    font-size: 11px;
    margin-top: 18px;
  }

}

.form-message {
  margin-top: 18px;

  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.5;

  min-height: 18px;
}

.form-message.success {
  color: var(--tcr-cream);
}

.form-message.error {
  color: #ff6b6b;
}

.application-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}