:root {
  color-scheme: light;
  --bg: #f4ecde;
  --bg-soft: #e8dcc7;
  --ink: #1d241f;
  --ink-soft: rgba(29, 36, 31, 0.72);
  --line: rgba(29, 36, 31, 0.16);
  --line-soft: rgba(255, 249, 240, 0.22);
  --cream: rgba(250, 244, 234, 0.9);
  --cream-strong: rgba(250, 244, 234, 0.96);
  --forest: #1f342b;
  --terracotta: #af6a4f;
  --shadow: 0 24px 60px rgba(14, 18, 15, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --page-max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(174, 190, 180, 0.12), transparent 36%),
    radial-gradient(circle at right top, rgba(209, 182, 138, 0.14), transparent 34%),
    linear-gradient(180deg, #f7f1e7 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

.destination-page {
  width: 100%;
}

.screen {
  position: relative;
  min-height: 100svh;
}

.hero-screen {
  overflow: hidden;
  background: #111714;
  color: #f7f1e7;
}

.hero-video-layer,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 12, 11, 0.42) 0%, rgba(9, 12, 11, 0.5) 40%, rgba(9, 12, 11, 0.72) 100%),
    radial-gradient(circle at center, rgba(20, 27, 23, 0.16), rgba(20, 27, 23, 0.44));
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 48px), var(--page-max));
  margin: 0 auto;
  padding-top: 28px;
}

.site-logo {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 249, 240, 0.55);
}

.hero-centre {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  min-height: calc(100svh - 120px);
  width: min(calc(100% - 48px), 1100px);
  margin: 0 auto;
  padding: 40px 0 120px;
  text-align: center;
}

.hero-kicker,
.section-kicker {
  margin: 0;
  color: rgba(247, 241, 231, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-screen h1 {
  max-width: 11ch;
  margin: 18px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-subhead {
  max-width: 34rem;
  margin: 18px 0 0;
  color: rgba(247, 241, 231, 0.85);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero-subhead-secondary {
  max-width: 38rem;
  margin-top: 8px;
}

.hero-cta {
  margin-top: 30px;
  padding-bottom: 6px;
  color: #f7f1e7;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 241, 231, 0.9);
}

.hero-microcopy {
  margin: 10px 0 0;
  color: rgba(247, 241, 231, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.suburb-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background: rgba(9, 12, 11, 0.3);
  backdrop-filter: blur(12px);
}

.suburb-ticker-track {
  display: flex;
  width: max-content;
  color: rgba(247, 241, 231, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker-scroll 26s linear infinite;
}

.suburb-ticker-segment {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(18px, 2.8vw, 38px);
  padding: 16px calc(clamp(18px, 2.8vw, 38px) / 2);
}

.suburb-ticker-item {
  white-space: nowrap;
}

.suburb-ticker-dot {
  opacity: 0.9;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

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

.benefits-screen,
.waitlist-screen {
  display: grid;
  place-items: center;
  background: transparent;
}

.image-screen {
  overflow: hidden;
  background: #101412;
}

.image-screen-photo,
.image-screen-overlay {
  position: absolute;
  inset: 0;
}

.image-screen-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-screen-overlay {
  background: linear-gradient(180deg, rgba(11, 16, 14, 0.08) 0%, rgba(11, 16, 14, 0.34) 100%);
}

.image-screen-caption {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 1;
  max-width: 28rem;
  color: rgba(247, 241, 231, 0.92);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.image-screen-caption p {
  margin: 0;
}

.image-screen-attribution {
  margin-top: 10px;
  opacity: 0.92;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-frame {
  width: min(calc(100% - 48px), var(--page-max));
  margin: 0 auto;
}

.benefits-frame {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 80px 0;
  text-align: center;
}

.section-kicker {
  color: var(--ink-soft);
}

.benefits-frame h2,
.waitlist-frame h2 {
  max-width: 12ch;
  margin: 18px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.benefit-columns {
  display: grid;
  gap: 28px;
  width: 100%;
  margin-top: 60px;
}

.benefit-column {
  padding: 28px 0 0;
  text-align: left;
  border-top: 1px solid var(--line);
}

.benefit-column h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.benefit-column p {
  max-width: 22rem;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.waitlist-frame {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 80px 0;
  text-align: center;
}

.waitlist-intro {
  max-width: 40rem;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.form-card {
  width: min(860px, 100%);
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(29, 36, 31, 0.12);
  border-radius: var(--radius-lg);
  background: var(--cream-strong);
  box-shadow: var(--shadow);
  text-align: left;
}

.form-card-destination {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.form-status {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(41, 71, 59, 0.08);
  color: var(--forest);
  font-weight: 700;
}

.waitlist-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(29, 36, 31, 0.12);
  border-radius: 14px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 118px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(98, 93, 84, 0.72);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(41, 71, 59, 0.34);
  box-shadow: 0 0 0 4px rgba(41, 71, 59, 0.1);
  background: rgba(255, 255, 255, 0.96);
}

.field-full {
  grid-column: 1 / -1;
}

.field-section-title {
  margin: 6px 0 -2px;
  font-size: 0.94rem;
  font-weight: 700;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(29, 36, 31, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  line-height: 1.3;
}

.checkbox-grid input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--forest);
}

.form-note,
.microcopy {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.form-note {
  padding: 14px 16px;
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
}

.form-actions {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease;
}

.button:hover,
.hero-cta:hover,
.site-nav a:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--forest);
  background: transparent;
}

.button-solid {
  color: #f7f1e7;
  background: var(--forest);
  box-shadow: 0 12px 28px rgba(31, 52, 43, 0.18);
  font-weight: 700;
}

.survey-body {
  --survey-bg: #03570E;
  --survey-accent: #FFCD80;
  --survey-cream: #FBF6E7;
  --survey-soft: #FFE9A6;
  --survey-ink: #03570E;
  min-height: 100svh;
  color: var(--survey-accent);
  background: var(--survey-bg);
}

.survey-page {
  --survey-header-offset: 92px;
  position: relative;
  min-height: 100svh;
  overflow: visible;
  background: var(--survey-bg);
}

.survey-page [hidden] {
  display: none !important;
}

.survey-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4vw 18px;
  pointer-events: none;
}

.survey-logo {
  color: var(--survey-accent);
  font-family: "Syncopate", system-ui, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  pointer-events: auto;
}

.survey-progress {
  display: grid;
  justify-items: end;
  gap: 8px;
  width: min(198px, 22vw);
  padding-top: 3px;
}

.survey-progress-count {
  color: var(--survey-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.survey-progress-track {
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
}

.survey-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--survey-accent);
  transition: width 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.survey-form {
  min-height: calc(100svh - var(--survey-header-offset));
}

.survey-step {
  position: relative;
  display: none;
  min-height: calc(100svh - var(--survey-header-offset));
  padding: 42px 24px 92px;
}

.survey-step.is-active {
  display: grid;
}

.survey-centre,
.survey-panel,
.survey-thanks-layout {
  width: min(100%, 1000px);
  margin: auto;
}

.survey-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.survey-step[data-survey-step="intro"] .survey-centre {
  max-width: 800px;
}

.survey-step[data-survey-step="basics"] .survey-panel {
  max-width: 600px;
}

.survey-step[data-survey-step="vibe"] .survey-panel {
  max-width: 800px;
}

.survey-step[data-survey-step="needs"] .survey-panel {
  max-width: 600px;
}

.survey-step[data-survey-step="concept"] .survey-panel {
  max-width: 840px;
}

.survey-step[data-survey-step="contact"] .survey-panel {
  max-width: 600px;
}

.survey-centre {
  display: grid;
  justify-items: center;
  text-align: center;
}

.survey-intro-copy {
  max-width: 800px;
  transform: translateY(-28px);
}

.survey-intro-illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: 220px;
  height: 292px;
  margin: 0 0 -36px;
  object-fit: contain;
  object-position: center;
}

.survey-intro-copy h1,
.survey-panel h2,
.survey-thanks-copy h2 {
  margin: 0;
  color: var(--survey-accent);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.01em;
}

.survey-intro-copy h1 {
  position: relative;
  z-index: 2;
  font-size: 4.8rem;
}

.survey-intro-copy p {
  max-width: 800px;
  margin: 22px 0 0;
  color: var(--survey-soft);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.25;
}

.survey-intro-copy p + p {
  margin-top: 22px;
}

.survey-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 42px;
  padding: 0 28px;
  border: 1px solid var(--survey-accent);
  border-radius: 999px;
  color: var(--survey-ink);
  background: var(--survey-accent);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.survey-button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.survey-button:focus-visible,
.survey-field input:focus,
.survey-choice-card:focus-within,
.survey-list label:focus-within,
.survey-radio-pair label:focus-within,
.survey-logo:focus-visible {
  outline: none;
}

.survey-button-light {
  margin-top: 42px;
  color: var(--survey-ink);
  background: var(--survey-cream);
  border-color: var(--survey-cream);
}

.survey-button-outline {
  color: var(--survey-accent);
  background: var(--survey-bg);
  border-color: var(--survey-accent);
}

.survey-button-accent {
  color: var(--survey-ink);
  background: var(--survey-accent);
  border-color: var(--survey-accent);
}

.survey-panel {
  display: grid;
  align-content: center;
}

.survey-panel-narrow {
  max-width: 500px;
  justify-items: center;
  transform: translateY(-28px);
}

.survey-panel-narrow h2,
.survey-panel-contact h2 {
  text-align: center;
  font-size: clamp(2.9rem, 5vw, 4.3rem);
}

.survey-fields {
  display: grid;
  gap: 36px;
  width: 100%;
  margin-top: 82px;
}

.survey-field {
  display: grid;
  gap: 12px;
}

.survey-field > span,
.survey-question,
.survey-chat-field legend {
  color: var(--survey-soft);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.survey-field input {
  width: 100%;
  min-height: 51px;
  border: 1px solid var(--survey-cream);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--survey-ink);
  background: var(--survey-cream);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
}

.survey-field input::placeholder {
  color: var(--survey-ink);
  opacity: 0.58;
}

.survey-field input:focus {
  border-color: var(--survey-soft);
}

.survey-autocomplete {
  position: relative;
}

.survey-autocomplete-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 4;
  display: grid;
  gap: 8px;
  max-height: min(320px, 42vh);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid var(--survey-accent);
  border-radius: 10px;
  background: var(--survey-cream);
  box-shadow: 0 20px 36px rgba(3, 87, 14, 0.18);
}

.survey-autocomplete-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--survey-ink);
  background: transparent;
  font: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.survey-autocomplete-option:hover,
.survey-autocomplete-option.is-active {
  border-color: var(--survey-accent);
  background: var(--survey-soft);
}

.survey-autocomplete-option-title {
  font-weight: 500;
}

.survey-autocomplete-option-meta {
  color: rgba(3, 87, 14, 0.74);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.survey-panel-wide {
  max-width: 800px;
}

.survey-question {
  margin: 0 0 10px;
}

.survey-question-note {
  margin: -2px 0 14px;
  color: var(--survey-soft);
  font-size: 0.94rem;
  line-height: 1.15;
}

.survey-card-grid {
  display: grid;
  gap: 12px;
}

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

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

.survey-choice-card {
  position: relative;
  display: grid;
  min-height: 180px;
  overflow: hidden;
  border: 2px solid var(--survey-cream);
  border-radius: 10px;
  color: var(--survey-ink);
  background: var(--survey-cream);
  cursor: pointer;
  transform: translateY(12px);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.survey-step.is-active .survey-choice-card,
.survey-step.is-active .survey-list label,
.survey-step.is-active .survey-radio-pair label {
  animation: survey-option-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.survey-step.is-active .survey-choice-card:nth-child(2),
.survey-step.is-active .survey-list label:nth-child(2),
.survey-step.is-active .survey-radio-pair label:nth-child(2) {
  animation-delay: 45ms;
}

.survey-step.is-active .survey-choice-card:nth-child(3),
.survey-step.is-active .survey-list label:nth-child(3) {
  animation-delay: 90ms;
}

.survey-step.is-active .survey-choice-card:nth-child(4),
.survey-step.is-active .survey-list label:nth-child(4) {
  animation-delay: 135ms;
}

.survey-step.is-active .survey-choice-card:nth-child(5),
.survey-step.is-active .survey-list label:nth-child(5) {
  animation-delay: 180ms;
}

.survey-step.is-active .survey-choice-card:nth-child(6),
.survey-step.is-active .survey-list label:nth-child(6) {
  animation-delay: 225ms;
}

.survey-step.is-active .survey-choice-card:nth-child(7),
.survey-step.is-active .survey-list label:nth-child(7) {
  animation-delay: 270ms;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.survey-choice-card:hover {
  transform: translateY(-3px);
}

.survey-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.survey-choice-card:has(input:checked) {
  border-color: var(--survey-accent);
  background: var(--survey-cream);
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(3, 87, 14, 0.28);
}

.survey-choice-card:has(input:checked):focus-within {
  outline: none;
}

.survey-choice-card:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: var(--survey-ink);
  background: var(--survey-accent);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.survey-card-title {
  position: relative;
  z-index: 2;
  display: block;
  padding: 14px 18px 0;
  color: var(--survey-ink);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15;
}

.survey-choice-card img {
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 1;
  width: 70%;
  height: 72%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  transform-origin: center bottom;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.survey-vibe-card img {
  left: 50%;
  right: auto;
  bottom: -10px;
  width: auto;
  height: auto;
}

.survey-vibe-social-butterfly img {
  bottom: -55px !important;
  width: 244px;
  height: 244px;
}

.survey-vibe-nervous-sweetheart img {
  bottom: -32px;
  width: 200px;
  height: 200px;
}

.survey-vibe-velcro-dog img {
  bottom: -32px;
  width: 200px;
  height: 200px;
}

.survey-vibe-high-energy img {
  bottom: -58px;
  width: 223px;
  height: 223px;
}

.survey-vibe-senior-legend img {
  bottom: -94px;
  width: 259px;
  height: 259px;
}

.survey-vibe-puppy-tornado img {
  bottom: -69px;
  width: 236px;
  height: 236px;
}

.survey-vibe-independent-operator img {
  bottom: -51px;
  width: 213px;
  height: 213px;
}

.survey-vibe-tiny-boss img {
  bottom: -22px;
  width: 197px;
  height: 197px;
}

.survey-choice-card:hover img {
  transform: translateX(-50%) translateY(-2px);
}

.survey-choice-card.is-missing-image .survey-image-placeholder,
.survey-thanks-photo.is-missing-image .survey-photo-placeholder {
  display: block;
}

.survey-image-placeholder,
.survey-photo-placeholder {
  display: none;
  position: absolute;
  inset: auto 18px 14px auto;
  width: 54%;
  height: 58%;
  border: 1px solid var(--survey-accent);
  border-radius: 999px;
  opacity: 0.28;
}

.survey-panel-list {
  max-width: 500px;
  transform: translateY(-10px);
}

.survey-panel-list-wide {
  max-width: 600px;
}

.survey-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.survey-list label,
.survey-radio-pair label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 2px solid var(--survey-cream);
  border-radius: 10px;
  padding: 0 16px;
  color: var(--survey-ink);
  background: var(--survey-cream);
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.survey-list input,
.survey-radio-pair input {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: var(--survey-bg);
}

.survey-list label:has(input:checked),
.survey-radio-pair label:has(input:checked) {
  border-color: var(--survey-accent);
  background: var(--survey-soft);
}

.survey-concept-card {
  grid-template-columns: minmax(0, 1fr) minmax(130px, 44%);
  min-height: 190px;
  align-items: start;
}

.survey-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 16px 20px;
  color: var(--survey-ink);
  font-size: 1rem;
  line-height: 1.3;
}

.survey-card-copy .survey-card-title {
  padding: 0;
  font-size: clamp(1.18rem, 2vw, 1.35rem);
}

.survey-concept-card img {
  right: -6px;
  bottom: -6px;
  width: 56%;
  height: 92%;
}

.survey-concept-social-club img {
  right: -10px;
  width: 56%;
}

.survey-concept-care-club img {
  right: -8px;
  width: 54%;
}

.survey-concept-concierge img {
  right: -6px;
  width: 53%;
}

.survey-concept-local-guide img {
  right: -6px;
  width: 52%;
}

.survey-panel-contact {
  max-width: 600px;
  transform: translateY(-22px);
}

.survey-panel-contact h2 {
  max-width: 560px;
  justify-self: center;
}

.survey-chat-field {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
  padding: 0;
  border: 0;
}

.survey-chat-field legend {
  margin-bottom: 12px;
}

.survey-radio-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.survey-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--survey-soft);
  font-weight: 700;
  text-align: center;
}

.survey-floating-status {
  position: fixed;
  right: 24px;
  bottom: 78px;
  left: 24px;
  z-index: 13;
  margin: 0;
  pointer-events: none;
}

.survey-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 44px 0 0;
}

.survey-nav [data-survey-prev] {
  order: 1;
}

.survey-nav [data-survey-next] {
  order: 2;
}

.survey-nav [data-survey-submit] {
  order: 3;
}

.survey-nav .survey-button {
  pointer-events: auto;
}

.survey-thanks-layout {
  display: grid;
  grid-template-columns: minmax(620px, 1.5fr) minmax(220px, 300px);
  align-items: center;
  gap: 44px;
  max-width: 1040px;
}

.survey-thanks-copy h2 {
  max-width: 800px;
  font-size: clamp(3.05rem, 5vw, 4.45rem);
}

.survey-thanks-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--survey-soft);
  font-size: 1.1rem;
  line-height: 1.25;
}

.survey-thanks-caption {
  margin-top: 16px;
  color: rgba(255, 233, 166, 0.84);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.3;
}

.survey-thanks-copy .survey-button {
  margin-top: 46px;
}

.survey-thanks-photo {
  position: relative;
  min-height: 320px;
  transform: rotate(8deg);
}

.survey-thanks-photo-frame {
  position: absolute;
  inset: 0;
  width: 92%;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 12px;
}

.survey-thanks-photo::before {
  content: "";
  position: absolute;
  inset: 38px -22px auto auto;
  width: 80%;
  aspect-ratio: 0.78;
  border-radius: 12px;
  background: var(--survey-ink);
  opacity: 0.36;
  transform: rotate(9deg);
}

.survey-thanks-photo img,
.survey-photo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.survey-thanks-photo img {
  z-index: 2;
  object-fit: cover;
  object-position: 54% 12%;
  transform: scale(1.34);
  transform-origin: 54% 12%;
  background: var(--survey-cream);
}

.survey-photo-placeholder {
  inset: 0;
  z-index: 1;
  border: 2px solid var(--survey-accent);
  background: var(--survey-cream);
  opacity: 1;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: 34px;
  border: 1px solid rgba(29, 36, 31, 0.12);
  border-radius: var(--radius-lg);
  background: var(--cream-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card h1 {
  margin: 14px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.lede {
  max-width: 42rem;
  margin: 16px auto 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.thank-you-meta {
  display: grid;
  gap: 14px;
  margin: 24px auto 0;
  text-align: left;
}

.thank-you-meta > div {
  padding: 16px;
  border: 1px solid rgba(29, 36, 31, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.thank-you-meta span {
  color: var(--ink-soft);
}

.thank-you-meta strong {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .benefit-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
  }

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

@media (max-width: 899px) {
  .site-header {
    width: calc(100% - 32px);
    padding-top: 20px;
  }

  .hero-centre,
  .section-frame {
    width: calc(100% - 32px);
  }

  .hero-centre {
    padding-bottom: 110px;
  }

  .hero-screen h1 {
    max-width: 12ch;
  }

  .image-screen-caption {
    right: 20px;
    bottom: 20px;
    max-width: 22rem;
  }

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

  .form-card {
    padding: 22px;
  }

  .survey-header {
    padding: 18px 18px 14px;
  }

  .survey-progress {
    width: min(168px, 34vw);
  }

  .survey-page {
    --survey-header-offset: 78px;
  }

  .survey-step {
    padding: 34px 18px 96px;
  }

  .survey-panel-narrow,
  .survey-panel-list,
  .survey-panel-contact,
  .survey-intro-copy {
    transform: none;
  }

  .survey-fields {
    margin-top: 44px;
  }

  .survey-card-grid-vibes,
  .survey-card-grid-concepts {
    grid-template-columns: 1fr;
  }

  .survey-choice-card,
  .survey-concept-card {
    min-height: 170px;
  }

  .survey-thanks-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .survey-thanks-photo {
    width: min(260px, 70vw);
    min-height: 330px;
    justify-self: center;
  }
}

@media (min-width: 641px) and (max-width: 899px) {
  .survey-step[data-survey-step="vibe"] .survey-panel {
    max-width: 620px;
  }

  .survey-thanks-layout {
    max-width: 700px;
    gap: 28px;
    justify-items: center;
  }

  .survey-thanks-photo {
    order: -1;
    width: min(220px, 34vw);
    min-height: 280px;
  }

  .survey-thanks-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .survey-thanks-copy h2 {
    max-width: 11ch;
    text-align: center;
  }

  .survey-thanks-copy p,
  .survey-thanks-caption {
    max-width: 32rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
  }

  .site-logo,
  .site-nav a,
  .hero-kicker,
  .section-kicker,
  .suburb-ticker-track {
    letter-spacing: 0.12em;
  }

  .hero-screen h1 {
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .benefits-frame h2,
  .waitlist-frame h2 {
    font-size: clamp(2.3rem, 10vw, 3.7rem);
  }

  .form-card {
    padding: 18px;
    border-radius: 18px;
  }

  .button,
  .button-solid {
    width: 100%;
  }

  .survey-logo {
    font-size: 1rem;
    letter-spacing: 0.14em;
  }

  .survey-progress {
    width: 112px;
  }

  .survey-intro-copy h1,
  .survey-thanks-copy h2 {
    font-size: clamp(3rem, 15vw, 4.45rem);
  }

  .survey-intro-copy p {
    line-height: 1.35;
  }

  .survey-intro-illustration {
    width: min(220px, 56vw);
    height: auto;
    margin-bottom: -22px;
  }

  .survey-panel-narrow h2,
  .survey-panel-contact h2 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }

  .survey-radio-pair {
    grid-template-columns: 1fr;
  }

  .survey-nav .survey-button {
    width: 100%;
    min-width: 0;
  }

  .survey-nav [data-survey-prev],
  .survey-nav [data-survey-next],
  .survey-nav [data-survey-submit] {
    flex: 1 1 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .survey-progress-bar,
  .survey-step,
  .survey-button,
  .survey-choice-card,
  .survey-step.is-active .survey-choice-card,
  .survey-step.is-active .survey-list label,
  .survey-step.is-active .survey-radio-pair label {
    animation: none;
    transition: none;
  }
}
