/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero-contact {
  background: var(--warm-white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 71px,
    rgba(0,0,0,.022) 71px,
    rgba(0,0,0,.022) 72px
  );
  pointer-events: none;
}
.hero-contact-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-contact .hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-contact .hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.hero-contact h1 {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-contact .hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-contact .hero-micro {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .06em;
}

/* ═══════════════════════════════════════════
   CONTACT SECTION — two-column
═══════════════════════════════════════════ */
.contact-section {
  background: var(--surface);
  padding: 88px 0;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.contact-form-heading {
  font-size: clamp(1.4rem, 2.2vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
  line-height: 1.3;
}
.form-field label .optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 12px;
  margin-left: 4px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--warm-white);
  transition: border-color .18s, outline-color .18s;
  outline: 2px solid transparent;
  outline-offset: 0;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(45,95,138,.25);
  outline-offset: 0;
}
.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--blue);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 26px;
  font-size: 15px;
}
.form-submit-micro {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .06em;
  margin-top: 10px;
  text-align: center;
}

/* ─── Info Panel ─── */
.info-block {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-lt);
}
.info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.info-block-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.info-block-email {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -.01em;
  transition: color .18s;
  display: inline-block;
}
.info-block-email:hover { color: var(--blue-dark); }
.info-block-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.info-block-text strong {
  color: var(--text-2);
  font-weight: 600;
}
.include-list {
  list-style: none;
  margin-top: 10px;
}
.include-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.include-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
  font-size: 12px;
  line-height: 1.65;
}
.info-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 14px;
  border-left: 2px solid var(--border-lt);
  font-style: italic;
}
/* ═══════════════════════════════════════════
   CHOOSING STATE — 3-column intent layout
═══════════════════════════════════════════ */
.contact-section--choosing .contact-grid {
  display: block;
}
.contact-section--choosing .contact-info {
  display: none;
}
.contact-section--choosing .contact-form-wrap {
  max-width: 860px;
}
.contact-section--choosing .intent-cards {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Booking card (third intent option) ── */
.intent-card--book {
  background: transparent;
  border-style: dashed;
  border-color: var(--border);
}
.intent-card--book:hover {
  background: var(--warm-white);
  border-style: solid;
  border-color: var(--blue);
}
.intent-card--book .intent-card-eyebrow {
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════════ */
.map-section {
  background: var(--warm-white);
  border-top: 1px solid var(--border-lt);
}
.map-header {
  padding: 52px 0 32px;
}
.map-address {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: normal;
  margin-top: 4px;
}
.map-address strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.map-frame {
  width: 100%;
  height: 360px;
  border-top: 1px solid var(--border-lt);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.02);
}

/* ═══════════════════════════════════════════
   WHAT HAPPENS NEXT
═══════════════════════════════════════════ */
.next-steps {
  background: var(--warm-white);
  padding: 88px 0;
}
.next-intro {
  max-width: 560px;
  margin-bottom: 52px;
}
.next-intro h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.step-card {
  background: var(--warm-white);
  padding: 32px 28px;
}
.step-card:first-child {
  border-left: 3px solid var(--blue);
}
.step-card-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CLARITY SCAN ENTRY POINT
═══════════════════════════════════════════ */
.scan-entry {
  background: var(--surface);
  padding: 88px 0;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.scan-entry-inner {
  max-width: 640px;
}
.scan-entry-inner h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.scan-entry-inner > p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 28px;
}
.scan-entry-inner .btn-primary {
  margin-bottom: 20px;
}
.scan-facts-strip {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 6px;
}
.scan-facts-strip span {
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.scan-facts-strip span:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

/* ═══════════════════════════════════════════
   INTENT CARDS
═══════════════════════════════════════════ */
.intent-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.intent-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s;
  font-family: var(--font);
}
.intent-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(45,95,138,.1);
}
.intent-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.intent-card-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.intent-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.intent-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-step-intro {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   TWO-STEP FORM
═══════════════════════════════════════════ */
.form-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.form-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.form-step-dot.active {
  background: var(--blue);
  transform: scale(1.25);
}
.form-step-dot.done {
  background: var(--blue);
  opacity: .45;
}
.form-progress-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 4px;
}
.form-step {
  transition: opacity .22s, transform .22s;
}
.form-step.hidden,
.form-progress.hidden {
  display: none;
}
.form-next-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 2px 8px rgba(45,95,138,.25), 0 1px 2px rgba(45,95,138,.15);
  margin-top: 4px;
}
.form-next-btn:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(45,95,138,.3);
}
.form-back-link {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: 20px;
  text-decoration: none;
  transition: color .15s;
}
.form-back-link:hover { color: var(--text); }
.form-step-2-intro {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   CAL.COM BUTTON
═══════════════════════════════════════════ */
.btn-cal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background .18s, color .18s;
  margin-top: 4px;
  text-decoration: none;
}
.btn-cal:hover { background: var(--blue); color: white; }
.btn-cal:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

/* ═══════════════════════════════════════════
   FORM STATE
═══════════════════════════════════════════ */
.form-error-msg {
  display: none;
  background: #fdf0ef;
  border: 1px solid #e8a49d;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  color: #c0392b;
  margin-top: 12px;
}
.form-submit-btn-wrap { display: flex; flex-direction: column; gap: 0; }

/* ═══════════════════════════════════════════
   THANK-YOU PAGE
═══════════════════════════════════════════ */
.thankyou-hero {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-lt);
  background: var(--warm-white);
}
.thankyou-hero .check-circle {
  width: 56px; height: 56px;
  background: var(--blue-tint);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--blue);
}
.thankyou-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -.03em;
  color: var(--text-2); margin-bottom: 12px;
}
.thankyou-hero p {
  font-size: 16px; color: var(--text-mid);
  max-width: 480px; margin: 0 auto; line-height: 1.65;
}
.thankyou-next {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-lt);
}
.thankyou-next h2 {
  font-size: 14px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; font-family: var(--mono);
  color: var(--text-muted); margin-bottom: 20px;
}
.thankyou-steps { display: flex; gap: 0; flex-direction: column; }
.thankyou-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid var(--border-lt);
}
.thankyou-step-num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: white; background: var(--blue);
  border-radius: 50%; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.thankyou-step p { font-size: 14px; color: var(--text-mid); margin: 0; line-height: 1.6; }
.thankyou-step strong { color: var(--text-2); display: block; margin-bottom: 2px; font-size: 14px; }
.thankyou-cal-section { padding: 72px 0 80px; background: var(--surface); }
.thankyou-cal-intro { text-align: center; margin-bottom: 40px; }
.thankyou-cal-intro .section-label { margin-bottom: 10px; }
.thankyou-cal-intro h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700; letter-spacing: -.03em;
  color: var(--text-2); margin-bottom: 8px;
}
.thankyou-cal-intro p { font-size: 14px; color: var(--text-muted); }
.cal-embed-wrap {
  background: white; border: 1px solid var(--border-lt);
  border-radius: var(--radius-md); overflow: hidden; min-height: 600px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .contact-grid { gap: 3.5rem; }
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .steps-row { grid-template-columns: 1fr; }
  .step-card:first-child { border-left: 3px solid var(--blue); }
}
@media (max-width: 660px) {
  .hero-contact { padding: 64px 0 56px; }
  .contact-section,
  .next-steps,
  .scan-entry { padding: 64px 0; }
  .nav-links { display: none; }
  .lang-toggle { display: none; }
  .btn-nav { display: none; }
  .intent-cards,
  .contact-section--choosing .intent-cards { grid-template-columns: 1fr; }
  .scan-facts-strip { flex-direction: column; align-items: flex-start; gap: 6px; }
  .scan-facts-strip span { border-right: none; padding-right: 0; margin-right: 0; }
}
