:root {
  --vdw-jungle: #1a2e25;
  --vdw-jungle-deep: #0f1c16;
  --vdw-oyster: #f9f8f6;
  --vdw-sand: #e5dfd3;
  --vdw-gold: #b8960c;
  --vdw-gold-light: #d4ae30;
  --vdw-ink: #1a1a1a;
  --vdw-muted: #6b6b5f;
  --vdw-error: #a54838;
  --vdw-focus: #866d00;
  --vdw-serif: "Cormorant Garamond", Georgia, serif;
  --vdw-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --vdw-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

.vdw-form-page {
  min-width: 280px;
  margin: 0;
  overflow-x: hidden;
  background: var(--vdw-oyster);
  color: var(--vdw-ink);
  font-family: var(--vdw-sans);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.vdw-form-page button,
.vdw-form-page input,
.vdw-form-page select,
.vdw-form-page textarea {
  font: inherit;
}

.vdw-form-page button,
.vdw-form-page label,
.vdw-form-page select {
  cursor: pointer;
}

.vdw-form-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) clamp(20px, 6vw, 64px) clamp(68px, 9vw, 120px);
}

.vdw-form-intro {
  position: relative;
  max-width: 700px;
  margin: 0 auto clamp(62px, 9vw, 96px);
  padding-bottom: 54px;
  text-align: center;
}

.vdw-form-intro::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 34px;
  background: var(--vdw-gold);
  content: "";
}

.vdw-form-kicker,
.vdw-form-eyebrow {
  margin: 0 0 20px;
  color: var(--vdw-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.vdw-form-heading {
  margin: 0 0 24px;
  color: var(--vdw-jungle);
  font-family: var(--vdw-serif);
  font-size: clamp(2.45rem, 7vw, 4.2rem);
  font-weight: 300;
  line-height: 1.04;
}

.vdw-form-heading em,
.vdw-form-step-title em,
.vdw-form-success h2 em {
  color: var(--vdw-gold);
  font-style: italic;
}

.vdw-form-intro-copy {
  max-width: 600px;
  margin: 0 auto 18px;
  color: var(--vdw-muted);
  line-height: 1.85;
}

.vdw-form-time {
  margin: 0;
  color: var(--vdw-gold);
  font-family: var(--vdw-serif);
  font-size: 15px;
  font-style: italic;
}

.vdw-form-progress {
  margin-bottom: clamp(54px, 8vw, 78px);
}

.vdw-form-progress-track {
  height: 2px;
  overflow: hidden;
  background: rgb(184 150 12 / 18%);
}

.vdw-form-progress-fill {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--vdw-gold);
  transition: width 500ms var(--vdw-ease);
}

.vdw-form-progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  color: var(--vdw-gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vdw-form-step[hidden],
.vdw-form[hidden],
.vdw-form-success[hidden],
.vdw-form-page [hidden] {
  display: none !important;
}

.vdw-form-step {
  animation: vdw-form-step-in 450ms var(--vdw-ease) both;
}

@keyframes vdw-form-step-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vdw-form-step-title {
  margin: 0 0 clamp(38px, 7vw, 56px);
  color: var(--vdw-jungle);
  font-family: var(--vdw-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  line-height: 1.14;
}

.vdw-form-grid {
  display: grid;
  gap: 34px;
}

.vdw-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.vdw-form-field,
.vdw-form-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.vdw-form-label {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  color: var(--vdw-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.vdw-form-field > input,
.vdw-form-field > select,
.vdw-form-field > textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(26 46 37 / 24%);
  border-radius: 0;
  outline: 0;
  background-color: transparent;
  color: var(--vdw-ink);
  padding: 13px 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  appearance: none;
}

.vdw-form-field > select {
  padding-right: 32px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--vdw-gold) 50%),
    linear-gradient(135deg, var(--vdw-gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px;
}

.vdw-form-field > textarea {
  min-height: 170px;
  resize: vertical;
  border: 1px solid rgb(26 46 37 / 22%);
  padding: 16px;
  line-height: 1.65;
}

.vdw-form-field > input::placeholder,
.vdw-form-field > textarea::placeholder {
  color: rgb(26 46 37 / 40%);
}

.vdw-form-field > input:hover,
.vdw-form-field > select:hover,
.vdw-form-field > textarea:hover {
  border-color: rgb(184 150 12 / 70%);
}

.vdw-form-page input[aria-invalid="true"],
.vdw-form-page select[aria-invalid="true"],
.vdw-form-page textarea[aria-invalid="true"],
.vdw-form-page fieldset[aria-invalid="true"] .vdw-form-destination,
.vdw-form-page fieldset[aria-invalid="true"] .vdw-form-service > span {
  border-color: var(--vdw-error);
}

.vdw-form-field-error {
  min-height: 1.4em;
  margin: 6px 0 0;
  color: var(--vdw-error);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.vdw-form-help {
  margin: 7px 0 0;
  color: var(--vdw-muted);
  font-size: 11px;
}

.vdw-form-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vdw-form-destination {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgb(26 46 37 / 18%);
  background: var(--vdw-oyster);
  transition: border-color 220ms ease, transform 220ms var(--vdw-ease);
}

.vdw-form-destination:hover {
  border-color: var(--vdw-gold);
  transform: translateY(-2px);
}

.vdw-form-destination > input,
.vdw-form-chip > input,
.vdw-form-choice > input,
.vdw-form-service > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.vdw-form-destination-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--vdw-sand);
}

.vdw-form-destination-image::after {
  position: absolute;
  inset: 0;
  background: rgb(26 46 37 / 0%);
  content: "";
  transition: background 220ms ease;
}

.vdw-form-destination-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--vdw-ease);
}

.vdw-form-destination:hover img {
  transform: scale(1.045);
}

.vdw-form-check {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 8px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  opacity: 0;
  background: var(--vdw-gold-light);
  color: var(--vdw-jungle-deep);
  font-size: 14px;
  font-weight: 600;
  transform: scale(0.6);
  transition: opacity 180ms ease, transform 220ms var(--vdw-ease);
}

.vdw-form-destination-label {
  display: block;
  padding: 11px 8px 12px;
  color: var(--vdw-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.vdw-form-destination > input:checked ~ .vdw-form-destination-image::after {
  background: rgb(26 46 37 / 34%);
}

.vdw-form-destination > input:checked ~ .vdw-form-destination-image .vdw-form-check {
  opacity: 1;
  transform: scale(1);
}

.vdw-form-destination > input:checked ~ .vdw-form-destination-label {
  background: var(--vdw-jungle);
  color: var(--vdw-gold-light);
}

.vdw-form-destination-open {
  min-height: 74px;
  justify-content: center;
  border-style: dashed;
}

.vdw-form-destination-open > input:checked + .vdw-form-destination-label {
  background: var(--vdw-jungle);
}

.vdw-form-choice-group,
.vdw-form-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vdw-form-choice,
.vdw-form-chip {
  position: relative;
  display: inline-flex;
}

.vdw-form-choice > span,
.vdw-form-chip > span {
  display: block;
  border: 1px solid rgb(26 46 37 / 20%);
  padding: 11px 18px;
  color: var(--vdw-ink);
  font-size: 11px;
  letter-spacing: 0.06em;
  transition: all 220ms var(--vdw-ease);
  user-select: none;
}

.vdw-form-chip > span {
  color: var(--vdw-muted);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vdw-form-choice:hover > span,
.vdw-form-chip:hover > span {
  border-color: var(--vdw-gold);
  color: var(--vdw-gold);
}

.vdw-form-choice > input:checked + span,
.vdw-form-chip > input:checked + span {
  border-color: var(--vdw-jungle);
  background: var(--vdw-jungle);
  color: var(--vdw-gold-light);
}

.vdw-form-meta {
  margin: 12px 0 0;
  color: var(--vdw-muted);
  font-family: var(--vdw-serif);
  font-size: 14px;
  font-style: italic;
}

.vdw-form-meta strong {
  color: var(--vdw-gold);
  font-family: var(--vdw-sans);
  font-size: 11px;
  font-style: normal;
}

.vdw-survey-question-list {
  display: grid;
  gap: 42px;
}

.vdw-survey-question {
  min-width: 0;
  margin: 0;
  padding: 0 0 36px;
  border: 0;
  border-bottom: 1px solid rgb(184 150 12 / 18%);
}

.vdw-survey-question:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.vdw-survey-question .vdw-form-label {
  margin-bottom: 18px;
  color: var(--vdw-jungle);
  font-family: var(--vdw-serif);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.32;
  text-transform: none;
}

.vdw-survey-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.vdw-survey-scale .vdw-form-chip {
  display: flex;
}

.vdw-survey-scale .vdw-form-chip > span {
  display: grid;
  width: 100%;
  min-height: 66px;
  place-items: center;
  padding: 12px 8px;
  text-align: center;
}

.vdw-survey-short-scale {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vdw-survey-optional {
  margin-left: 5px;
  color: var(--vdw-muted);
  font-family: var(--vdw-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vdw-form-service-grid {
  display: grid;
  gap: 10px;
}

.vdw-form-service {
  position: relative;
}

.vdw-form-service > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgb(26 46 37 / 20%);
  padding: 20px 24px;
  transition: all 240ms var(--vdw-ease);
}

.vdw-form-service strong {
  color: var(--vdw-jungle);
  font-family: var(--vdw-serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}

.vdw-form-service small {
  color: var(--vdw-muted);
  font-size: 11px;
  line-height: 1.6;
}

.vdw-form-service:hover > span {
  border-color: var(--vdw-gold);
}

.vdw-form-service > input:checked + span {
  border-color: var(--vdw-jungle);
  background: var(--vdw-jungle);
}

.vdw-form-service > input:checked + span strong {
  color: var(--vdw-gold-light);
}

.vdw-form-service > input:checked + span small {
  color: rgb(249 248 246 / 82%);
}

.vdw-form-fine-print {
  margin: 0;
  color: var(--vdw-muted);
  font-family: var(--vdw-serif);
  font-size: 14px;
  font-style: italic;
}

.vdw-form-consent {
  display: grid;
  gap: 16px;
  padding-top: 6px;
}

.vdw-form-consent-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.vdw-form-consent-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--vdw-jungle);
  cursor: pointer;
  flex-shrink: 0;
}

.vdw-form-consent-item > span {
  color: var(--vdw-muted);
  font-family: var(--vdw-serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.vdw-form-consent-item--optional > span {
  font-size: 13px;
}

.vdw-form-consent-item a {
  color: var(--vdw-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vdw-form-consent-item a:hover {
  color: var(--vdw-jungle);
}

.vdw-form-hcaptcha-wrap {
  min-height: 116px;
}

#vdw-hcaptcha {
  min-height: 78px;
  overflow-x: auto;
  overflow-y: hidden;
}

.vdw-form-noscript {
  color: var(--vdw-error);
}

.vdw-form-honeypot {
  position: absolute !important;
  top: auto !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.vdw-form-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: clamp(52px, 8vw, 72px);
  padding-top: 38px;
  border-top: 1px solid rgb(184 150 12 / 20%);
}

.vdw-form-back,
.vdw-form-button {
  min-height: 50px;
  border: 0;
  background: transparent;
}

.vdw-form-back {
  margin-right: auto;
  padding: 12px 0;
  color: var(--vdw-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vdw-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--vdw-gold);
  padding: 17px 34px;
  color: var(--vdw-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.vdw-form-button-large {
  padding-inline: 42px;
}

.vdw-form-button:hover:not(:disabled) {
  background: var(--vdw-gold);
  color: var(--vdw-jungle-deep);
}

.vdw-form-button:disabled,
.vdw-form-back:disabled {
  cursor: wait;
  opacity: 0.58;
}

.vdw-form-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgb(184 150 12 / 30%);
  border-top-color: currentcolor;
  border-radius: 50%;
  animation: vdw-form-spin 700ms linear infinite;
}

@keyframes vdw-form-spin {
  to {
    transform: rotate(360deg);
  }
}

.vdw-form-status {
  margin-top: 24px;
  border-left: 3px solid var(--vdw-error);
  background: rgb(165 72 56 / 10%);
  padding: 14px 17px;
  color: var(--vdw-error);
  font-size: 12px;
}

.vdw-form-success {
  max-width: 650px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) 0;
  text-align: center;
}

.vdw-form-success-symbol {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 34px;
  place-items: center;
  border: 1px solid var(--vdw-gold);
  border-radius: 50%;
  color: var(--vdw-gold);
  font-family: var(--vdw-serif);
  font-size: 32px;
}

.vdw-form-success h2 {
  margin: 0 0 24px;
  color: var(--vdw-jungle);
  font-family: var(--vdw-serif);
  font-size: clamp(2.15rem, 6vw, 3.25rem);
  font-weight: 300;
  line-height: 1.14;
}

.vdw-form-success > p:last-child {
  margin: 0;
  color: var(--vdw-muted);
  font-size: 14px;
  line-height: 1.85;
}

.vdw-form-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.vdw-form-page :focus-visible {
  outline: 3px solid var(--vdw-focus);
  outline-offset: 3px;
}

.vdw-form-field > input:focus-visible,
.vdw-form-field > select:focus-visible,
.vdw-form-field > textarea:focus-visible {
  outline: 0;
  border-color: var(--vdw-focus);
  box-shadow: 0 2px 0 var(--vdw-focus);
}

@media (max-width: 680px) {
  .vdw-form-row {
    grid-template-columns: 1fr;
  }

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

  .vdw-survey-scale,
  .vdw-survey-short-scale {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .vdw-form-shell {
    padding-inline: 16px;
  }

  .vdw-form-controls {
    flex-wrap: wrap;
  }

  .vdw-form-back {
    width: 100%;
    margin-right: 0;
  }

  .vdw-form-button {
    width: 100%;
  }

  .vdw-form-service > span {
    padding: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
