:root {
  --forest: #173a35;
  --forest-deep: #102c29;
  --forest-soft: #285047;
  --paper: #f5f0e7;
  --paper-deep: #e9e0d3;
  --white: #fffdf8;
  --ink: #1e2724;
  --ink-muted: #67706c;
  --line: #d8d0c4;
  --line-strong: #626b66;
  --coral: #ed684a;
  --coral-dark: #a43f2e;
  --coral-soft: #f9ddd3;
  --sage: #c8d2c5;
  --error: #b33b31;
  --shadow-soft: 0 18px 60px rgba(23, 58, 53, 0.09);
  --shadow-card: 0 14px 30px rgba(23, 58, 53, 0.12);
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", "Noto Sans Myanmar", "Myanmar Text", sans-serif;
  --myanmar: "Noto Sans Myanmar", "Myanmar Text", sans-serif;
  --form-progress: 0;
  color-scheme: light;
  font-synthesis: none;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.19;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(54, 45, 33, 0.12) 0 0.45px, transparent 0.7px),
    radial-gradient(circle at 70% 60%, rgba(54, 45, 33, 0.08) 0 0.45px, transparent 0.7px);
  background-size: 8px 8px, 11px 11px;
}

button,
input {
  font: inherit;
}

button,
label {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

button:not(:disabled),
label:has(input:not(:disabled)) {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
label:has(input:focus-visible) {
  outline: 3px solid rgba(237, 104, 74, 0.44);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 11px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: fixed;
  z-index: 30;
  inset-block-start: 0;
  inset-inline: 0;
  display: grid;
  grid-template-columns: minmax(430px, 42%) 1fr;
  align-items: center;
  padding-block: 26px;
  pointer-events: none;
}

.brand,
.language-switcher {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-inline-start: clamp(26px, 4vw, 72px);
  text-decoration: none;
}

.brand-logo-frame {
  position: relative;
  display: block;
  flex: none;
  width: 150px;
  height: 43px;
  overflow: hidden;
}

.brand-logo {
  position: absolute;
  inset-block-start: -21px;
  inset-inline-start: -9px;
  display: block;
  width: 168px;
  max-width: none;
  height: auto;
}

.language-switcher {
  display: flex;
  justify-self: end;
  gap: 3px;
  margin-inline-end: clamp(24px, 4vw, 64px);
  padding: 4px;
  border: 1px solid rgba(23, 58, 53, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 7px 24px rgba(23, 58, 53, 0.08);
  backdrop-filter: blur(14px);
}

.language-button {
  min-width: 49px;
  min-height: 44px;
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.language-button[data-language="my"] {
  min-width: 68px;
  font-family: var(--myanmar);
  letter-spacing: 0;
}

.language-button.is-active {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(23, 58, 53, 0.18);
}

.main-layout {
  display: grid;
  grid-template-columns: minmax(430px, 42%) 1fr;
  min-height: 100vh;
}

.story-panel {
  position: sticky;
  z-index: 1;
  inset-block-start: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  padding: clamp(120px, 15vh, 170px) clamp(32px, 4vw, 72px) 40px;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 24%, rgba(94, 145, 126, 0.26), transparent 28%),
    linear-gradient(145deg, #1a3f38 0%, var(--forest) 51%, #102c29 100%);
  color: var(--white);
}

.story-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.19) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.19) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.story-panel::after {
  position: absolute;
  z-index: -1;
  inset-inline-end: -17%;
  inset-block-start: 19%;
  width: min(35vw, 520px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.story-copy {
  position: relative;
  z-index: 4;
  max-width: 520px;
}

.eyebrow,
.section-kicker,
.question-context,
.note-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9d4c9;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: var(--coral);
}

.story-copy h1 {
  margin: 24px 0 22px;
  font-family: var(--display);
  font-size: clamp(3.8rem, 5.7vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.story-copy h1 span,
.story-copy h1 em {
  display: block;
}

.story-copy h1 em {
  margin-inline-start: clamp(22px, 3vw, 46px);
  color: #ff8a6e;
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.98rem;
  line-height: 1.78;
  white-space: pre-line;
}

.form-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 25px;
  margin-block-start: 28px;
  color: rgba(255, 253, 248, 0.77);
  font-size: 0.76rem;
  font-weight: 600;
}

.form-facts > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-facts svg {
  width: 17px;
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.architectural-scene {
  position: absolute;
  z-index: 1;
  inset-inline-end: clamp(22px, 3vw, 46px);
  inset-block-end: 136px;
  width: min(76%, 560px);
  margin: 0;
  transform: rotate(-1.2deg);
}

.property-artwork-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 13px;
  background: #ead6ad;
  box-shadow:
    0 24px 55px rgba(5, 25, 22, 0.34),
    0 0 0 7px rgba(255, 253, 248, 0.06);
}

.property-artwork-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(16, 44, 41, 0.12);
}

.property-artwork {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.architectural-scene:hover .property-artwork {
  transform: scale(1.018);
  filter: saturate(1) contrast(1.02);
}

.scene-label {
  display: block;
  margin-block-start: 11px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: end;
  text-transform: uppercase;
}

.open-house-note {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 13px;
  width: min(370px, 100%);
  margin-block-start: auto;
  padding-block-start: 21px;
  border-block-start: 1px solid rgba(255, 255, 255, 0.2);
}

.open-house-note::before {
  grid-row: 1 / span 3;
  width: 8px;
  height: 8px;
  margin-block-start: 3px;
  content: "";
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(237, 104, 74, 0.13);
}

.open-house-note .note-kicker {
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.55rem;
}

.open-house-note strong {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}

.open-house-note > span:last-child {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  line-height: 1.55;
}

.form-panel {
  position: relative;
  min-width: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 93% 12%, rgba(200, 210, 197, 0.43), transparent 17%),
    var(--paper);
}

.form-panel::before {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.form-panel-inner {
  display: flex;
  flex-direction: column;
  width: min(100% - clamp(48px, 9vw, 136px), 820px);
  min-height: 100vh;
  margin-inline: auto;
  padding-block: 126px 28px;
}

.form-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.section-kicker {
  margin-block-end: 9px;
  color: var(--coral-dark);
}

.form-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.step-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-block-end: 4px;
  color: var(--line-strong);
  font-family: var(--display);
  font-size: 0.86rem;
}

.step-counter #current-step {
  color: var(--forest);
  font-size: 2.2rem;
  transition: color 200ms ease;
}

.progress-track {
  position: relative;
  height: 2px;
  margin-block: 24px 17px;
  overflow: hidden;
  background: var(--line);
}

.progress-track > span {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 20%;
  background: var(--coral);
  transition: width 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-block-end: clamp(38px, 6vh, 70px);
}

.step-dot {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--line-strong);
  text-align: start;
  transition: color 180ms ease;
}

.step-dot > span:first-child {
  display: grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.step-dot > span:last-child {
  overflow: hidden;
  font-size: 0.64rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step-dot.is-current {
  color: var(--forest);
}

.step-dot.is-current > span:first-child {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.step-dot.is-complete {
  color: var(--coral-dark);
}

.step-dot.is-complete > span:first-child {
  border-color: var(--coral);
  background: var(--coral-soft);
}

.step-dot:disabled {
  cursor: default;
}

#interest-form {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.form-step {
  min-width: 0;
  padding: 0;
  border: 0;
  animation: step-in 380ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.form-step.is-leaving {
  animation: step-out 170ms ease both;
}

@keyframes step-in {
  from {
    transform: translateX(16px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes step-out {
  to {
    transform: translateX(-12px);
    opacity: 0;
  }
}

.question-heading {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
  margin-block-end: 30px;
}

.question-number {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 0.88rem;
}

.question-context {
  margin-block: 1px 7px;
  color: var(--ink-muted);
  font-size: 0.6rem;
}

.question-heading h3,
.success-view h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.06;
}

.question-heading .translation {
  margin: 9px 0 0;
  color: var(--ink-muted);
  font-family: var(--myanmar);
  font-size: 0.76rem;
  line-height: 1.7;
}

.option-grid {
  display: grid;
  gap: 13px;
}

.option-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.option-grid--units {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.option-card,
.option-row {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.48);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.option-card::before,
.option-row::before {
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  content: "";
  background: linear-gradient(100deg, rgba(249, 221, 211, 0.72), rgba(255, 253, 248, 0.15));
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.option-card {
  display: flex;
  flex-direction: column;
  min-height: 132px;
  padding: 20px;
  border-radius: 2px 18px 2px 2px;
}

.option-card:hover,
.option-row:hover {
  transform: translateY(-2px);
  border-color: #aeb9af;
  background: rgba(255, 253, 248, 0.83);
  box-shadow: 0 10px 30px rgba(23, 58, 53, 0.08);
}

.option-card.is-selected,
.option-row.is-selected,
.option-card:has(input:checked),
.option-row:has(input:checked) {
  transform: translateY(-2px);
  border-color: var(--coral);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.option-card.is-selected::before,
.option-row.is-selected::before,
.option-card:has(input:checked)::before,
.option-row:has(input:checked)::before {
  transform: translateX(0);
}

.option-card input,
.option-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.option-card > *,
.option-row > * {
  position: relative;
  z-index: 1;
}

.option-card--unit {
  min-height: 158px;
  justify-content: space-between;
}

.option-card-visual {
  display: flex;
  align-items: baseline;
  color: var(--forest);
}

.option-card-visual b {
  font-family: var(--display);
  font-size: 3.25rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.option-card-visual span {
  margin-inline-start: 5px;
  color: var(--coral-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.option-copy {
  display: block;
  min-width: 0;
}

.option-copy strong,
.option-copy small {
  display: block;
}

.option-copy strong {
  color: var(--forest-deep);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
}

.option-copy small {
  margin-block-start: 3px;
  color: var(--ink-muted);
  font-family: var(--myanmar);
  font-size: 0.66rem;
  line-height: 1.55;
}

.selection-mark {
  position: absolute;
  z-index: 3;
  inset-block-start: 16px;
  inset-inline-end: 16px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
}

.selection-mark::after {
  width: 8px;
  height: 8px;
  transform: scale(0);
  content: "";
  border-radius: 50%;
  background: var(--coral);
  transition: transform 160ms ease;
}

.is-selected .selection-mark,
label:has(input:checked) .selection-mark {
  border-color: var(--coral);
}

.is-selected .selection-mark::after,
label:has(input:checked) .selection-mark::after {
  transform: scale(1);
}

.line-icon,
.key-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-block-end: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
}

.line-icon svg,
.key-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.option-card--resident {
  align-items: center;
  min-height: 176px;
  justify-content: flex-end;
  text-align: center;
}

.option-card--resident .option-copy {
  width: 100%;
}

.people-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  min-height: 54px;
  margin-block-end: 20px;
}

.people-icon i {
  position: relative;
  display: block;
  width: 20px;
  height: 27px;
  border-radius: 12px 12px 6px 6px;
  background: var(--sage);
}

.people-icon i::before {
  position: absolute;
  inset-block-start: -15px;
  inset-inline-start: 4px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--forest-soft);
}

.people-icon--family i:nth-child(2) {
  height: 34px;
}

.people-icon--family i:nth-child(2)::before {
  inset-block-start: -17px;
  inset-inline-start: 3px;
  width: 14px;
  height: 14px;
}

.people-icon--family i:first-child,
.people-icon--family i:last-child {
  width: 16px;
  height: 21px;
}

.people-icon--family i:first-child::before,
.people-icon--family i:last-child::before {
  inset-block-start: -12px;
  inset-inline-start: 3px;
  width: 10px;
  height: 10px;
}

.option-card--resident .key-icon {
  width: 54px;
  height: 54px;
  margin-block-end: 15px;
}

.option-card--resident .key-icon svg {
  width: 35px;
}

.option-stack {
  display: grid;
  gap: 11px;
}

.option-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 14px 18px;
  border-radius: 2px 15px 2px 2px;
}

.option-row-index {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 0.75rem;
}

.option-row .selection-mark {
  position: relative;
  inset: auto;
}

.field-error {
  min-height: 19px;
  margin: 10px 0 0;
  color: var(--error);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-step.has-error .option-grid,
.form-step.has-error .option-stack {
  animation: gentle-shake 320ms ease;
}

@keyframes gentle-shake {
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
}

.contact-fields {
  display: grid;
  gap: 23px;
  margin-block-start: 2px;
}

.floating-field {
  position: relative;
  padding-block-start: 10px;
}

.floating-field input {
  width: 100%;
  height: 51px;
  padding: 14px 0 6px;
  border: 0;
  border-block-end: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--forest-deep);
  font-size: 1rem;
  font-weight: 600;
}

.floating-field label {
  position: absolute;
  inset-block-start: 27px;
  inset-inline-start: 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  pointer-events: none;
  transition: transform 180ms ease, color 180ms ease, font-size 180ms ease;
  transform-origin: left center;
}

.floating-field label em {
  margin-inline-start: 3px;
  color: var(--coral-dark);
  font-style: normal;
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label {
  transform: translateY(-18px);
  color: var(--coral-dark);
  font-size: 0.66rem;
  font-weight: 700;
}

.floating-field .input-line {
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 60px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background: var(--forest);
  transform-origin: left;
  transition: transform 220ms ease;
}

.floating-field input:focus ~ .input-line {
  transform: scaleX(1);
}

.floating-field input[aria-invalid="true"] {
  border-color: var(--error);
}

.floating-field .field-error {
  margin-block-start: 5px;
}

.field-hint {
  min-height: 16px;
  margin: 5px 0 -4px;
  color: var(--ink-muted);
  font-size: 0.63rem;
}

.consent-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-block-start: 17px;
  color: var(--ink-muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.consent-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-check {
  display: grid;
  width: 19px;
  height: 19px;
  margin-block-start: 1px;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(255, 253, 248, 0.7);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.custom-check svg {
  width: 13px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: scale(0);
  transition: transform 150ms ease;
}

.consent-check input:checked + .custom-check {
  border-color: var(--forest);
  background: var(--forest);
}

.consent-check input:checked + .custom-check svg {
  transform: scale(1);
}

.consent-error {
  margin-inline-start: 30px;
  margin-block-start: 3px;
}

.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-block-start: clamp(28px, 5vh, 54px);
  padding-block-start: 20px;
  border-block-start: 1px solid var(--line);
}

.text-button,
.primary-button {
  min-height: 48px;
  border: 0;
  font-size: 0.74rem;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 4px;
  background: transparent;
  color: var(--ink-muted);
}

.text-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.text-button:hover:not(:disabled) {
  color: var(--forest);
  transform: translateX(-2px);
}

.text-button:disabled {
  color: var(--line-strong);
  cursor: default;
  opacity: 0.55;
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-width: 164px;
  padding: 12px 19px 12px 23px;
  overflow: hidden;
  border-radius: 2px 15px 2px 2px;
  background: var(--coral);
  color: #2c1e19;
  box-shadow: 0 11px 24px rgba(207, 80, 54, 0.2);
}

.primary-button::before {
  position: absolute;
  inset: 0;
  transform: translateX(-102%);
  content: "";
  background: var(--forest);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.primary-button > * {
  position: relative;
  z-index: 1;
}

.primary-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(23, 58, 53, 0.2);
}

.primary-button:hover::before {
  transform: translateX(0);
}

.primary-button:hover svg {
  transform: translateX(3px);
}

.primary-button:active {
  transform: translateY(0);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-block-start: auto;
  padding-block-start: 48px;
  color: #5f6863;
  font-size: 0.6rem;
}

.success-view {
  position: relative;
  flex: 1;
  padding-block-start: clamp(18px, 4vh, 50px);
  animation: success-in 600ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes success-in {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
}

.success-view::before {
  position: absolute;
  z-index: -1;
  inset-block-start: -15%;
  inset-inline-end: -17%;
  width: 320px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 104, 74, 0.18), rgba(237, 104, 74, 0) 68%);
  animation: halo-bloom 900ms 180ms ease both;
}

@keyframes halo-bloom {
  from { transform: scale(0.55); opacity: 0; }
}

.success-mark {
  width: 75px;
  margin-block-end: 27px;
  color: var(--forest);
}

.success-mark svg {
  display: block;
  width: 100%;
  fill: rgba(200, 210, 197, 0.5);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.success-mark path {
  stroke: var(--coral-dark);
  stroke-width: 3;
}

.success-view h3 {
  max-width: 560px;
  margin-block-start: 7px;
  font-size: clamp(2.5rem, 4.3vw, 4.3rem);
  line-height: 0.98;
}

.success-message {
  max-width: 560px;
  margin: 19px 0 28px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.response-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 660px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.summary-item {
  min-width: 0;
  padding: 15px 17px;
  background: rgba(255, 253, 248, 0.77);
}

.summary-item dt {
  margin-block-end: 5px;
  color: var(--ink-muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-item dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--forest-deep);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.success-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-block-start: 30px;
}

.success-actions .text-button:hover {
  transform: none;
}

.toast {
  position: fixed;
  z-index: 110;
  inset-inline: 16px;
  inset-block-end: 18px;
  width: max-content;
  max-width: calc(100% - 32px);
  margin-inline: auto;
  padding: 12px 18px;
  transform: translateY(140%);
  border-radius: 3px 14px 3px 3px;
  background: var(--forest-deep);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.noscript-message {
  position: fixed;
  z-index: 300;
  inset-inline: 16px;
  inset-block-end: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #fff5dc;
  color: #5f4216;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.reveal {
  animation: reveal-up 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal-1 { animation-delay: 40ms; }
.reveal-2 { animation-delay: 100ms; }
.reveal-3 { animation-delay: 180ms; }
.reveal-4 { animation-delay: 250ms; }
.reveal-5 { animation-delay: 220ms; }
.reveal-6 { animation-delay: 330ms; }

@keyframes reveal-up {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
}

html[lang="my"] body {
  font-family: var(--myanmar);
}

html[lang="my"] .story-copy h1,
html[lang="my"] .form-intro h2,
html[lang="my"] .question-heading h3,
html[lang="my"] .success-view h3 {
  font-family: var(--myanmar);
  letter-spacing: -0.018em;
}

html[lang="my"] .story-copy h1 {
  max-width: 520px;
  font-size: clamp(2.65rem, 4.5vw, 4.8rem);
  line-height: 1.25;
}

html[lang="my"] .story-copy h1 em {
  margin-block-start: 3px;
  margin-inline-start: 0;
  font-style: normal;
}

html[lang="my"] .hero-description {
  font-size: 0.9rem;
  line-height: 1.74;
}

html[lang="my"] .eyebrow,
html[lang="my"] .section-kicker,
html[lang="my"] .question-context,
html[lang="my"] .note-kicker {
  letter-spacing: 0;
  text-transform: none;
}

html[lang="my"] .question-heading h3 {
  font-size: clamp(1.4rem, 2.3vw, 2.1rem);
  line-height: 1.55;
}

html[lang="my"] .question-heading .translation,
html[lang="my"] .option-copy small {
  font-family: var(--sans);
}

html[lang="my"] .summary-item dt {
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1180px) {
  .topbar,
  .main-layout {
    grid-template-columns: minmax(380px, 39%) 1fr;
  }

  .story-panel {
    padding-inline: clamp(30px, 3vw, 54px);
  }

  .story-copy h1 {
    font-size: clamp(3.45rem, 5.2vw, 5.25rem);
  }

  .form-panel-inner {
    width: min(100% - 68px, 760px);
  }

  .step-dot > span:last-child {
    display: none;
  }

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

@media (max-height: 780px) and (min-width: 861px) {
  .story-panel {
    padding-block-start: 105px;
  }

  .story-copy h1 {
    margin-block: 17px;
    font-size: clamp(3.2rem, 5vw, 4.75rem);
  }

  .hero-description {
    line-height: 1.6;
  }

  .form-facts {
    margin-block-start: 18px;
  }

  .architectural-scene {
    inset-block-end: 28px;
    width: 44%;
    opacity: 0.18;
  }

  .scene-label {
    display: none;
  }

  .form-panel-inner {
    padding-block-start: 105px;
  }

  .step-map {
    margin-block-end: 34px;
  }
}

@media (max-width: 860px) {
  .topbar {
    position: absolute;
    display: flex;
    justify-content: space-between;
    padding-block: 23px;
    padding-inline: 23px;
  }

  .brand {
    margin-inline-start: 0;
  }

  .language-switcher {
    margin-inline-end: 0;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(10, 35, 31, 0.39);
  }

  .language-button {
    color: rgba(255, 255, 255, 0.62);
  }

  .language-button.is-active {
    background: var(--white);
    color: var(--forest);
  }

  .main-layout {
    display: block;
  }

  .story-panel {
    position: relative;
    min-height: 500px;
    height: auto;
    padding: 110px 24px 38px;
  }

  .story-panel::after {
    width: 65vw;
    inset-inline-end: -21%;
  }

  .story-copy {
    max-width: 600px;
  }

  .story-copy h1 {
    font-size: clamp(3.25rem, 13vw, 6rem);
    max-width: 560px;
  }

  .hero-description {
    max-width: min(78%, 520px);
  }

  .architectural-scene {
    position: relative;
    inset: auto;
    align-self: flex-end;
    width: min(88%, 620px);
    margin-block-start: 36px;
    transform: rotate(-0.7deg);
  }

  .open-house-note {
    width: min(52%, 390px);
    margin-block-start: 37px;
  }

  .form-panel::before {
    display: none;
  }

  .form-panel-inner {
    width: min(100% - 46px, 760px);
    min-height: auto;
    padding-block: 70px 28px;
  }

  .form-footer {
    margin-block-start: 60px;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding-inline: 19px;
  }

  .brand-logo-frame {
    width: 124px;
    height: 37px;
  }

  .brand-logo {
    inset-block-start: -17px;
    inset-inline-start: -8px;
    width: 140px;
  }

  .language-button {
    min-width: 42px;
    min-height: 44px;
    padding: 6px 9px;
    font-size: 0.66rem;
  }

  .language-button[data-language="my"] {
    min-width: 61px;
  }

  .story-panel {
    min-height: 440px;
    padding-block-start: 104px;
  }

  .story-copy h1 {
    margin-block: 19px 14px;
    font-size: clamp(3.15rem, 16vw, 4.8rem);
  }

  .hero-description {
    max-width: 93%;
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .form-facts {
    margin-block-start: 18px;
  }

  .architectural-scene {
    width: 100%;
    margin-block-start: 28px;
  }

  .open-house-note {
    display: none;
  }

  .form-panel-inner {
    width: calc(100% - 38px);
    padding-block-start: 52px;
  }

  .form-intro h2 {
    font-size: 2rem;
  }

  .step-counter #current-step {
    font-size: 1.8rem;
  }

  .progress-track {
    margin-block-start: 19px;
  }

  .step-map {
    margin-block-end: 42px;
  }

  .step-dot {
    justify-content: center;
    min-height: 44px;
  }

  .question-heading {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
  }

  .question-number {
    width: 36px;
    height: 36px;
    font-size: 0.77rem;
  }

  .question-heading h3 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
  }

  .question-heading--long h3 {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
    line-height: 1.16;
  }

  .option-grid--three,
  .option-grid--units,
  .option-grid--two {
    grid-template-columns: 1fr;
  }

  .option-card,
  .option-card--unit,
  .option-card--resident {
    min-height: 88px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
    padding: 16px 48px 16px 17px;
    text-align: start;
  }

  .option-card-visual {
    flex: 0 0 52px;
  }

  .option-card-visual b {
    font-size: 2.7rem;
  }

  .line-icon,
  .key-icon,
  .option-card--resident .key-icon,
  .people-icon {
    flex: 0 0 49px;
    width: 49px;
    height: 49px;
    min-height: 49px;
    margin: 0;
  }

  .people-icon {
    transform: scale(0.78);
  }

  .option-card--resident .option-copy {
    width: auto;
  }

  .option-row {
    grid-template-columns: 31px minmax(0, 1fr) 20px;
    gap: 11px;
    min-height: 88px;
    padding-inline: 13px;
  }

  .option-row-index {
    width: 30px;
    height: 30px;
  }

  .option-copy strong {
    font-size: 0.8rem;
  }

  .option-copy small {
    font-size: 0.63rem;
  }

  .selection-mark {
    inset-inline-end: 13px;
  }

  .form-navigation {
    position: sticky;
    z-index: 9;
    inset-block-end: 0;
    margin-inline: -19px;
    padding: 14px 19px calc(14px + env(safe-area-inset-bottom));
    border-block-start: 1px solid rgba(216, 208, 196, 0.9);
    background: rgba(245, 240, 231, 0.94);
    box-shadow: 0 -12px 28px rgba(23, 58, 53, 0.05);
    backdrop-filter: blur(13px);
  }

  .primary-button {
    min-width: 145px;
  }

  .response-summary {
    grid-template-columns: 1fr;
  }

  .success-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
  }

  .success-actions .text-button {
    justify-content: center;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .language-switcher {
    gap: 1px;
  }

  .language-button {
    min-width: 37px;
    padding-inline: 7px;
  }

  .language-button[data-language="my"] {
    min-width: 54px;
  }

  .story-panel {
    min-height: 460px;
  }

  .form-panel-inner {
    width: calc(100% - 32px);
  }

  .form-intro h2 {
    font-size: 1.74rem;
  }

  .question-heading {
    grid-template-columns: 1fr;
  }

  .question-number {
    display: none;
  }

  .form-navigation {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .primary-button {
    min-width: 135px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    margin: 18mm;
  }

  body {
    background: white;
  }

  body::after,
  .topbar,
  .story-panel,
  .form-intro,
  .progress-track,
  .step-map,
  #interest-form,
  .success-actions,
  .form-footer,
  .toast {
    display: none !important;
  }

  .main-layout {
    display: block;
  }

  .form-panel-inner {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .success-view {
    display: block !important;
    padding: 0;
  }

  #success-view[hidden] {
    display: none !important;
  }

  .success-view::before {
    display: none;
  }

  .response-summary {
    max-width: none;
  }
}
