/* ============ JOURNEY TIMELINE ============ */
.journey-timeline {
  background: var(--bg-base);
  padding: var(--pad-y) var(--pad-x);
}

.jt-container {
  max-width: var(--max-width);
  margin-inline: auto;
}

.jt-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.jt-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0;
}

.jt-intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.jt-steps {
  display: grid;
  gap: 20px;
  position: relative;
}

.jt-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--surface-tint);
  border-radius: var(--r-card);
  align-items: start;
}

.jt-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent-gradient);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
}

.jt-step-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.jt-step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 720px) {
  .jt-header { grid-template-columns: 1fr; gap: 16px; }
  .jt-step { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
}

/* ============ CONTACT FORM ============ */
.contact-form-section {
  background: var(--bg-base);
  padding: var(--pad-y) var(--pad-x);
}

.cf-container {
  max-width: var(--max-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.cf-info { display: flex; flex-direction: column; gap: 24px; }

.cf-info h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0;
}

.cf-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.cf-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-info-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}

.cf-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  color: #FFFFFF;
  border-radius: 50%;
}
.cf-info-icon .icon { width: var(--icon-sm); height: var(--icon-sm); }

.cf-info-list strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 2px;
}

.cf-info-list span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cf-form {
  background: var(--surface-tint);
  border-radius: var(--r-card);
  padding: 32px;
  display: grid;
  gap: 16px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field { display: flex; flex-direction: column; gap: 6px; }

.cf-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  padding: 14px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-input);
  font-size: 14px;
  font-family: inherit;
  background: var(--surface-card);
  outline: none;
  color: var(--text-body);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}

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

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

.cf-submit { width: fit-content; margin-top: 8px; }

@media (max-width: 900px) {
  .cf-container { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .cf-row { grid-template-columns: 1fr; }
  .cf-form { padding: 24px; }
}

/* ============ PAGE HERO VARIANT (no trust pill) ============ */
.hero-split-clean.hero-page .hero-image { aspect-ratio: 4 / 3; max-width: 520px; }
.hero-split-clean.hero-page .hero-trust { display: none; }

/* ============ EDUCATION DEEP-LINK TARGETS ============ */
/* Guide cards carry an id (e.g. #rhinoplasty) so deep links from the homepage
   and service pages land on them. Keep them clear of the sticky nav-pill. */
.bg-card[id] { scroll-margin-top: 96px; }

/* ============ CONTACT FORM: INVALID + STATUS ============ */
/* Visible invalid state — :user-invalid only flags a field after the user has
   interacted with or submitted it, so empty required fields aren't red on load.
   This makes the error state visible, not native-tooltip-only. */
.cf-form input:user-invalid,
.cf-form select:user-invalid,
.cf-form textarea:user-invalid {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}

/* Submission status: single live region carrying success OR error text. */
.cf-status { margin: 4px 0 0; font-size: 14px; line-height: 1.5; font-weight: 600; }
.cf-status:empty { display: none; }
.cf-status.is-success { color: var(--primary); }
.cf-status.is-error { color: var(--color-danger); }
