/* ---- page: contact ----
   Page-specific styles for contact.html. Loaded AFTER main.css.
   Reuses shared components (.field, .band-sage, .divided-cols, .step-num,
   .botanical, .section-head, .rule, .leaf-divider). Only adds what the
   contact layout needs beyond the shared system. */

/* centered hero */
.contact-hero { text-align: center; padding-block: clamp(48px, 7vw, 88px) clamp(36px, 5vw, 60px); }
.contact-hero .eyebrow { display: block; margin-bottom: 18px; }
.contact-hero h1 { max-width: 14ch; margin-inline: auto; }
.contact-hero .hero-sub {
  font-family: var(--serif); font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--body); margin-top: 20px; max-width: 42ch; margin-inline: auto;
}
.contact-hero .hero-actions {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 18px 26px; margin-top: 32px;
}
.contact-hero .hero-actions .text-link { font-size: 1.02rem; }

/* full-bleed photo band (straight edges) */
.photo-band { width: 100%; }
.photo-band img { width: 100%; height: clamp(240px, 34vw, 440px); object-fit: cover; }

/* centered statement with leaf divider */
.statement { text-align: center; }
.statement h2 { max-width: 18ch; margin-inline: auto; }
.statement p { max-width: 56ch; margin: 26px auto 0; }

/* main split: info column + intake form */
.connect-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(36px, 6vw, 84px); align-items: start; }
.connect-split .connect-info { position: relative; }
/* faint vertical divider between the two columns (desktop only) */
@media (min-width: 861px) {
  .connect-split .connect-info::after {
    content: ""; position: absolute; top: 6px; bottom: 6px; right: calc(clamp(36px, 6vw, 84px) / -2);
    width: 1px; background: var(--line);
  }
}
.connect-info h2 { margin-bottom: 4px; }
.connect-info .rule { margin: 18px 0 30px; }        /* left aligned */
.connect-info .confidential { margin-top: 30px; font-family: var(--serif); font-style: italic; color: var(--sage-deep); font-size: 1.02rem; }

/* icon info rows (Booking / Questions / We'll be in touch / Location ...) */
.info-row { display: grid; grid-template-columns: 34px 1fr; gap: 18px; align-items: start; }
.info-row + .info-row { margin-top: 26px; }
.info-row .info-ico { width: 30px; height: 30px; margin-top: 3px; }
.info-row .info-ico svg { width: 100%; height: 100%; fill: none; stroke: var(--sage-deep); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.info-row h3 { font-size: 1.22rem; color: var(--ink); margin-bottom: 5px; }
.info-row p { font-size: .95rem; line-height: 1.6; }
.info-row a { color: var(--sage-deep); }
.info-row a:hover { color: var(--ink); }

/* intake form card */
.intake-card {
  scroll-margin-top: 96px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 40px);
}
.intake-card .field:last-of-type { margin-bottom: 22px; }
/* sentence-case labels per rendering (scoped page override of shared uppercase) */
.intake-card .field label { text-transform: none; font-size: .95rem; letter-spacing: 0; color: var(--ink); font-weight: 500; }
.intake-card .field input,
.intake-card .field select,
.intake-card .field textarea { background: #fff; }
.intake-card .btn { width: 100%; padding: 16px 30px; font-size: 1rem; }
.intake-card .form-status { display: block; margin-top: 14px; font-size: .9rem; color: var(--sage-deep); }

/* "What happens next?" sage band steps */
.next-band .section-head h2, .next-band .section-head .eyebrow { color: var(--ivory); }
.next-steps { margin-top: clamp(32px, 4vw, 52px); }
.next-step { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; }
.next-step .step-num { margin: 0; flex: none; }
.next-step h3 { color: var(--ivory); font-size: 1.3rem; margin-bottom: 8px; }
.next-step p { color: rgba(251,248,241,.9); font-size: .95rem; line-height: 1.6; }

/* details split (photo + info rows) */
.details-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.details-split .details-photo { min-height: 100%; }
.details-split .details-photo img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.details-split .details-info {
  background: var(--linen);
  padding: clamp(40px, 5vw, 76px) clamp(24px, 4vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
}
.details-split .details-info .info-row + .info-row {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line);
}

/* closing CTA */
.schedule-cta { text-align: center; background: var(--linen-2); }
.schedule-cta h2 { margin-bottom: 8px; }
.schedule-cta .btn { margin-top: 24px; }

/* responsive */
@media (max-width: 860px) {
  .connect-split { grid-template-columns: 1fr; gap: 44px; }
  .details-split { grid-template-columns: 1fr; }
  .details-split .details-photo img { min-height: 260px; }
  .next-steps.divided-cols.cols-3 { grid-template-columns: 1fr; gap: 30px 0; }
  .next-steps.divided-cols > * { border-left: 0 !important; padding-inline: 0; }
}
