.contact-page {
  padding-top: 52px;
}
.landing-contact {
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 90px;
}
.contact-intro > p:not(.eyebrow) {
  margin-top: 24px;
  max-width: 380px;
}
.contact-details {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.contact-details h2 {
  font-size: 1.15rem;
}
.contact-details p {
  margin-top: 12px;
}
.contact-expectation {
  font-size: 0.9rem;
}
.form-panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.form-panel h2 {
  font-size: 1.7rem;
}
.form-intro {
  margin-top: 12px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}
.field label span {
  color: var(--text);
  font-weight: 400;
}
.field input,
.field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid #bcc8d1;
  border-radius: 6px;
  color: var(--ink);
  background: white;
  font-size: 1rem;
  line-height: 1.5;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field-row > .field {
  min-width: 0;
}
.choice-group {
  min-width: 0;
  padding: 0;
  margin: 0 0 24px;
  border: 0;
}
.choice-group legend {
  padding: 0;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.choice-group legend > span,
.choice-hint {
  color: var(--text);
  font-weight: 400;
}
.choice-hint {
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.choice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}
.choice-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  font-size: 0.9rem;
  cursor: pointer;
}
.choice-option:has(input:checked) {
  border-color: var(--blue);
  background: #edf3fb;
}
.choice-option input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
  accent-color: var(--blue);
}
.other-field {
  margin-top: 14px;
  margin-bottom: 0;
}
.form-note,
.form-privacy {
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.6;
}
.form-submit {
  width: 100%;
  margin-top: 22px;
}
.form-privacy {
  margin-top: 16px;
}
.honeypot {
  display: none;
}
.form-status {
  font-size: 0.9rem;
  line-height: 1.6;
}
.form-status:empty {
  display: none;
}
.form-status:not(:empty) {
  padding: 16px;
  margin-top: 22px;
  border: 1px solid #c8d7e9;
  border-radius: 6px;
  background: #edf3fb;
}
.form-status[data-state='success'] {
  background: #eff8ee;
  color: #234b29;
  border-color: #bad5bc;
}
.form-status[data-state='error'] {
  background: #fff3ef;
  color: #7f3221;
  border-color: #e1b6a9;
}
@media (max-width: 999px) {
  .contact-grid {
    gap: 42px;
  }
  .form-panel {
    padding: 28px;
  }
}
@media (max-width: 760px) {
  .contact-page {
    padding-top: 36px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-details {
    margin-top: 28px;
  }
  .form-panel {
    padding: 24px;
  }
  body:has(.contact-page) .mobile-booking {
    display: none;
  }
  body:has(.contact-page) .footer-bottom {
    padding-bottom: 30px;
  }
}
@media (max-width: 400px) {
  .field-row,
  .choice-options {
    grid-template-columns: 1fr;
  }
  .field-row {
    gap: 0;
  }
}
