:root {
  --bg: #030303;
  --bg-soft: #12100e;
  --surface-line: rgba(255, 194, 71, 0.18);
  --text: #faf7f2;
  --text-soft: rgba(216, 207, 194, 0.86);
  --text-muted: rgba(216, 207, 194, 0.58);
  --gold: #e3a018;
  --gold-bright: #ffc247;
  --cream: #fff2dd;
  --gold-soft: rgba(227, 160, 24, 0.20);
  --warning: #ffc247;
  --container: 100%;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-body);
  background: var(--bg);
}

body.conversation-body {
  height: 100dvh;
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, #ffc247 0%, #e3a018 100%);
  color: #fff;
  box-shadow: 0 18px 46px rgba(227, 160, 24, 0.2);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.09);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(4, 8, 16, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner,
.site-footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__inner {
  min-height: 5rem;
  padding: 0.15rem 2rem;
}

.wordmark {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
  align-content: center;
}

.wordmark__line {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wordmark__line strong {
  font-weight: 600;
}

.wordmark__sub {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.76);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.15rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.site-nav__cta {
  padding: 0.85rem 1.3rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.application-page,
.success-page {
  min-height: 100vh;
}

.application-page--conversation {
  display: flex;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  background: var(--bg);
}

.conversation-layout {
  flex: 1;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.conversation-layout > .container {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.application-form--conversation {
  position: relative;
  flex: 1;
  height: 100%;
}

.conversation-shell {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 100dvh;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}

.conversation-shell--welcome {
  grid-template-rows: 1fr;
}

.conversation-shell--welcome .conversation-footer {
  display: none;
}

.conversation-shell--welcome .conversation-progress--floating {
  display: none;
}

.conversation-stage {
  --media-aspect: 0.6667;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 0;
  height: 100%;
  background: var(--bg);
}

.conversation-stage[data-layout="media-right"] {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.conversation-stage[data-layout="media-right"] .conversation-stage__media {
  order: 2;
}

.conversation-stage[data-layout="media-right"] .conversation-stage__panel {
  order: 1;
}

.conversation-stage__media,
.conversation-stage__panel {
  min-width: 0;
  min-height: 0;
}

.conversation-stage__media {
  position: relative;
  overflow: hidden;
}

.conversation-stage__media-frame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #060606;
}

.conversation-stage__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.conversation-stage__panel {
  display: grid;
  align-items: center;
  padding: clamp(2.6rem, 4vw, 4.4rem) clamp(2.4rem, 4vw, 4.7rem);
  background: var(--bg);
  overflow: hidden;
}

.conversation-screen {
  display: none;
  width: min(100%, 32rem);
  margin-inline: auto;
}

.conversation-screen.is-active {
  display: grid;
}

.conversation-screen--question,
.conversation-screen--final {
  gap: 1rem;
  align-content: center;
}

.conversation-screen--compact {
  width: min(100%, 34rem);
}

.conversation-screen--welcome {
  width: min(100%, 31rem);
}

.conversation-screen__eyebrow {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.conversation-screen__title {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5.1rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.conversation-screen__title--statement {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 4.7vw, 4.55rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--warning);
  text-wrap: pretty;
}

.conversation-screen__help,
.conversation-welcome__lead,
.conversation-welcome__sublead {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.conversation-screen__help--small {
  font-size: 0.88rem;
  color: rgba(247, 246, 242, 0.6);
}

.conversation-screen__help--city-highlight {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.conversation-welcome {
  display: grid;
  gap: 1.15rem;
  align-content: center;
}

.conversation-welcome__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.eyebrow,
.application-hero__warning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold);
}

.application-hero__warning {
  color: rgba(255, 255, 255, 0.72);
}

.conversation-welcome h1 {
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 5.4vw, 5.7rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.conversation-welcome__lead {
  max-width: 28rem;
}

.conversation-welcome__sublead {
  max-width: 24rem;
  color: rgba(247, 246, 242, 0.6);
}

.conversation-welcome__cta {
  width: fit-content;
  margin-top: 0.5rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.field span {
  color: rgba(247, 246, 242, 0.56);
  font-size: 0.9rem;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.8rem 0 0.62rem;
  border: 0;
  border-bottom: 2px solid rgba(227, 160, 24, 0.72);
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.4;
  appearance: none;
}

.field select {
  padding-right: 2rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(247, 246, 242, 0.82) 50%),
    linear-gradient(135deg, rgba(247, 246, 242, 0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 2px),
    calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field select option {
  color: #101010;
}

.field .custom-select__source {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  width: min(100%, 22rem);
}

.custom-select__trigger {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.72rem 1.8rem 0.52rem 0;
  border: 0;
  border-bottom: 1px solid rgba(227, 160, 24, 0.78);
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  position: relative;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}

.custom-select__trigger::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 1px solid rgba(247, 246, 242, 0.78);
  border-bottom: 1px solid rgba(247, 246, 242, 0.78);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.custom-select__trigger--placeholder {
  color: rgba(227, 160, 24, 0.62);
}

.custom-select.is-open .custom-select__trigger {
  border-bottom-color: rgba(247, 246, 242, 0.32);
  color: var(--text);
}

.custom-select.is-open .custom-select__trigger::after {
  transform: translateY(-30%) rotate(-135deg);
}

.custom-select__panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 12;
  width: 100%;
  max-height: min(14rem, 38vh);
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.65rem;
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  overflow-y: auto;
}

.custom-select.custom-select--drop-up .custom-select__panel {
  top: auto;
  bottom: calc(100% + 0.35rem);
}

.custom-select__options {
  display: grid;
  gap: 0.14rem;
}

.custom-select__option {
  width: 100%;
  min-height: 2rem;
  padding: 0.48rem 0.6rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: rgba(247, 246, 242, 0.9);
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.custom-select__option--placeholder {
  color: rgba(227, 160, 24, 0.62);
}

.custom-select__option.is-selected {
  background: rgba(227, 160, 24, 0.14);
  color: var(--text);
}

.custom-select__option:hover,
.custom-select__option:focus-visible,
.custom-select__trigger:focus-visible {
  outline: 2px solid rgba(227, 160, 24, 0.24);
  outline-offset: 2px;
}

.custom-select__panel::-webkit-scrollbar {
  width: 0.42rem;
}

.custom-select__panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(227, 160, 24, 0.3);
}

.field input::placeholder {
  color: rgba(227, 160, 24, 0.62);
}

.field input::file-selector-button {
  margin-right: 1rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(227, 160, 24, 0.28);
  border-radius: 999px;
  background: rgba(227, 160, 24, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field input[type="file"] {
  cursor: pointer;
}

.date-picker {
  position: relative;
  width: min(100%, 22rem);
}

.date-picker__trigger {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.72rem 1.8rem 0.52rem 0;
  border: 0;
  border-bottom: 1px solid rgba(227, 160, 24, 0.78);
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  position: relative;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}

.date-picker__trigger::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 0.58rem;
  height: 0.58rem;
  border-right: 1px solid rgba(247, 246, 242, 0.78);
  border-bottom: 1px solid rgba(247, 246, 242, 0.78);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.date-picker__trigger--placeholder {
  color: rgba(227, 160, 24, 0.62);
}

.date-picker.is-open .date-picker__trigger {
  border-bottom-color: rgba(247, 246, 242, 0.32);
  color: var(--text);
}

.date-picker.is-open .date-picker__trigger::after {
  transform: translateY(-30%) rotate(-135deg);
}

.date-picker__panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 6;
  width: min(13rem, calc(100vw - 3rem));
  padding: 0.55rem 0.55rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.65rem;
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.date-picker__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.date-picker__month {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  letter-spacing: 0.01em;
}

.date-picker__nav {
  border: 0;
  background: transparent;
  color: rgba(247, 246, 242, 0.72);
  font: inherit;
  cursor: pointer;
}

.date-picker__nav {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  line-height: 1;
}

.date-picker__nav[hidden] {
  visibility: hidden;
  pointer-events: none;
}

.date-picker__weekdays,
.date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.1rem;
}

.date-picker__panel.is-year-view .date-picker__grid,
.date-picker__panel.is-month-view .date-picker__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.22rem;
}

.date-picker__weekdays {
  margin-bottom: 0.16rem;
  color: rgba(247, 246, 242, 0.36);
  font-size: 0.54rem;
  font-weight: 600;
  text-align: center;
}

.date-picker__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 1.58rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  background: transparent;
  color: rgba(247, 246, 242, 0.88);
  font: inherit;
  font-size: 0.68rem;
  line-height: 1;
  cursor: pointer;
}

.date-picker__day--year,
.date-picker__day--month {
  min-height: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.date-picker__day:hover,
.date-picker__day:focus-visible,
.date-picker__nav:hover,
.date-picker__nav:focus-visible,
.date-picker__trigger:focus-visible {
  outline: 2px solid rgba(227, 160, 24, 0.24);
  outline-offset: 2px;
}

.date-picker__day.is-selected {
  background: linear-gradient(135deg, #ffc247 0%, #e3a018 100%);
  color: #fff;
}

.date-picker__day.is-today {
  border-color: rgba(227, 160, 24, 0.42);
}

.date-picker__day--empty {
  pointer-events: none;
  opacity: 0;
}

.field--invalid input,
.field--invalid select,
.field--invalid .date-picker__trigger,
.field--invalid .custom-select__trigger {
  border-bottom-color: rgba(219, 92, 92, 0.95);
}

.field-error {
  min-height: 1rem;
  color: #ffd0d0;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.field input:focus-visible,
.field select:focus-visible,
.button:focus-visible,
.site-nav a:focus-visible,
.site-footer a:focus-visible,
.wordmark:focus-visible {
  outline: 2px solid rgba(227, 160, 24, 0.28);
  outline-offset: 4px;
}

.consent-group {
  display: grid;
  gap: 0.9rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(247, 246, 242, 0.86);
  line-height: 1.64;
}

.checkbox input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.turnstile-block {
  display: grid;
  gap: 0.6rem;
  justify-content: flex-start;
}

.turnstile-error {
  min-height: 1rem;
}

.submit-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.35rem;
}

.submit-row .button {
  min-width: 15rem;
}

.submit-row .button:disabled {
  opacity: 0.82;
  cursor: progress;
}

.conversation-footer {
  position: absolute;
  right: calc(0.65rem + min(11.5rem, 14vw) + 1rem);
  bottom: 0.65rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: fit-content;
  max-width: calc(100% - 16rem);
  padding: 0;
  background: transparent;
  z-index: 3;
}

.conversation-progress {
  display: grid;
  gap: 0.38rem;
}

.conversation-progress--floating {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: min(11.5rem, 14vw);
  padding: 0.38rem 0.5rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0.22rem;
  background: rgba(92, 92, 92, 0.72);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.conversation-progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.conversation-progress__eyebrow {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.82;
}

.conversation-progress__count {
  color: rgba(247, 246, 242, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.conversation-progress__bar {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.conversation-progress__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(227, 160, 24, 1) 0%, rgba(240, 195, 95, 0.9) 100%);
  transition: width 220ms ease;
}

.conversation-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  align-items: center;
  width: fit-content;
  min-width: 0;
}

.conversation-footer[hidden],
.conversation-controls [hidden],
.submit-row[hidden] {
  display: none !important;
}

.conversation-controls__back {
  min-height: 2.85rem;
  padding-inline: 0.95rem;
  border-color: rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.conversation-controls__hint {
  display: none;
}

.conversation-footer[data-final-step="true"] .conversation-controls {
  gap: 0;
}

.conversation-footer[data-final-step="true"] .conversation-controls__back {
  margin-left: auto;
}

.conversation-controls__next,
.submit-row .button,
.conversation-welcome__cta {
  min-height: 3.15rem;
  box-shadow: 0 12px 28px rgba(227, 160, 24, 0.18);
}

.conversation-controls__next {
  min-width: 10.5rem;
}

@media (min-width: 721px) {
  .conversation-progress__eyebrow {
    display: none;
  }
}

.submission-frame {
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 3rem) 0 clamp(2.4rem, 6vw, 4rem);
  background: var(--bg);
}

.success-card {
  width: min(860px, calc(100% - 2rem));
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  border: 1px solid rgba(255, 194, 71, 0.22);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(31, 27, 23, 0.98), rgba(18, 16, 14, 0.98));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.success-card__check {
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(227, 160, 24, 0.12);
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 800;
}

.success-card h2 {
  margin-top: 1rem;
  color: var(--gold);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
}

.success-card h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.success-card__important {
  margin-top: 2rem;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
  text-transform: uppercase;
}

.success-card__secondary,
.success-card__copy {
  color: var(--text-soft);
  line-height: 1.8;
}

.success-card__secondary {
  margin-top: 0.8rem;
  font-weight: 800;
}

.success-card__copy {
  max-width: 42rem;
  margin: 1.4rem auto 0;
}

.success-card__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.site-footer__grid {
  padding: 1.6rem 2rem 2rem;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.92;
}

.site-footer h3 {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--text-soft);
  line-height: 1.8;
}

.site-footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
}

@media (max-width: 1120px) {
  .conversation-stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .conversation-stage[data-layout="media-right"] {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .conversation-stage[data-layout="media-right"] .conversation-stage__media {
    order: 2;
  }

  .conversation-stage[data-layout="media-right"] .conversation-stage__panel {
    order: 1;
  }

  .conversation-stage__panel {
    padding: 2rem 2rem 2.4rem;
  }
}

@media (max-width: 900px) {
  body.conversation-body {
    height: 100dvh;
    overflow: hidden;
  }

  .application-page--conversation {
    min-height: 100dvh;
    height: 100dvh;
    overflow: hidden;
  }

  .conversation-shell,
  .conversation-shell--welcome {
    grid-template-rows: minmax(0, 1fr) auto auto;
    min-height: 100dvh;
    height: 100dvh;
    overflow: hidden;
  }

  .conversation-shell--welcome {
    grid-template-rows: minmax(0, 1fr);
  }

  .conversation-stage,
  .conversation-stage[data-layout="media-right"] {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 0;
    height: 100%;
    overflow: hidden;
  }

  .conversation-stage[data-layout="media-right"] .conversation-stage__media,
  .conversation-stage[data-layout="media-right"] .conversation-stage__panel {
    order: initial;
  }

  .conversation-stage__media-frame {
    width: 100%;
    height: clamp(16rem, 35dvh, 18.5rem);
    min-height: 0;
  }

  .conversation-shell--welcome .conversation-stage__media-frame {
    width: auto;
    height: clamp(14rem, 38dvh, 20rem);
    aspect-ratio: var(--media-aspect);
  }

  .conversation-stage__media-frame img {
    object-fit: cover;
  }

  .conversation-shell--welcome .conversation-stage__media-frame img {
    object-fit: contain;
  }

  .conversation-stage__media {
    display: grid;
    place-items: center;
  }

  .conversation-stage__panel {
    min-height: 0;
    padding: 1.2rem 1.1rem 1.3rem;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .date-picker__panel {
    width: min(13rem, calc(100vw - 2.7rem));
  }

  .conversation-screen,
  .conversation-screen--welcome,
  .conversation-screen--compact {
    width: 100%;
  }

  .conversation-screen {
    gap: 0.85rem;
    align-content: start;
  }

  .conversation-welcome {
    gap: 0.8rem;
    align-content: start;
  }

  .conversation-welcome h1,
  .conversation-screen__title {
    font-size: clamp(2.35rem, 7.2vw, 3.6rem);
    line-height: 0.94;
  }

  .conversation-screen__title--statement {
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 0.98;
  }

  .conversation-screen__help,
  .conversation-welcome__lead,
  .conversation-welcome__sublead {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .field span {
    font-size: 0.84rem;
  }

  .field input,
  .custom-select__trigger,
  .date-picker__trigger {
    min-height: 3rem;
    font-size: 0.98rem;
  }

  .custom-select,
  .date-picker {
    width: min(100%, 20rem);
  }

  .conversation-footer {
    position: static;
    display: grid;
    padding: 0.4rem 0.85rem 0.2rem;
    width: 100%;
    max-width: none;
  }

  .conversation-progress--floating {
    position: static;
    width: 100%;
    margin-top: 0;
    padding: 0.25rem 0.85rem 0.45rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    order: 2;
  }

  .conversation-controls {
    display: grid;
    grid-template-columns: minmax(5.5rem, 0.42fr) minmax(9rem, 1fr);
    gap: 0.5rem;
    order: 1;
    width: 100%;
  }

  .conversation-footer[data-final-step="true"] .conversation-controls {
    justify-items: stretch;
  }

  .conversation-footer[data-final-step="true"] .conversation-controls__back {
    margin-left: 0;
  }

  .conversation-controls__back,
  .conversation-controls__next {
    min-width: 0;
    min-height: 2.8rem;
  }
}

@media (max-width: 720px) {
  .conversation-stage__panel {
    padding: 1rem 0.95rem 1.1rem;
  }

  .conversation-screen,
  .conversation-welcome {
    gap: 0.75rem;
  }

  .conversation-controls__hint {
    display: none;
  }

  .button,
  .submit-row .button,
  .conversation-welcome__cta {
    width: 100%;
  }

  .submit-row {
    justify-content: stretch;
  }

  .conversation-progress__count {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .conversation-screen__title--statement {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .conversation-progress__meta {
    flex-direction: row;
    align-items: center;
  }

  .site-footer__grid {
    gap: 1.4rem 2rem;
    padding-inline: 1rem;
  }

  .site-footer ul {
    gap: 0.5rem 1rem;
  }
}

@media (max-width: 520px) {
  .conversation-welcome h1,
  .conversation-screen__title {
    font-size: clamp(2rem, 11vw, 2.85rem);
    line-height: 0.98;
  }

  .conversation-screen__title--statement {
    font-size: clamp(2rem, 11vw, 2.7rem);
    line-height: 1;
  }

  .conversation-screen__eyebrow,
  .eyebrow,
  .application-hero__warning {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .conversation-screen__help,
  .conversation-welcome__lead,
  .conversation-welcome__sublead {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .custom-select,
  .date-picker {
    width: 100%;
  }

  .custom-select__panel {
    max-height: min(13rem, 34vh);
  }

  .conversation-footer {
    padding: 0.35rem 0.75rem 0.15rem;
  }

  .conversation-progress--floating {
    margin-top: 0;
    padding-inline: 0.75rem;
  }
}
