/* ===== CONSULTATION BOOKING PAGE ===== */

.consult-hero {
  position: relative;
  width: 100%;
  min-height: max(calc(100svh - var(--nav-h)), 140vw);
  overflow: hidden;
  text-align: center;
  color: var(--paper);
}
.consult-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.consult-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}
.consult-hero__inner {
  position: absolute;
  top: calc(100svh - var(--nav-h) - clamp(10rem, 16vw, 14rem));
  left: 0;
  right: 0;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.consult-hero .eyebrow {
  color: rgba(248, 229, 231, 0.6);
  margin-bottom: 1.8rem;
}
.consult-hero__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0;
}
.consult-hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(248, 229, 231, 0.82);
  max-width: 540px;
  margin: 0 auto;
}

/* What to Expect */
.consult-expect {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--paper-pure);
}
.consult-expect__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.consult-expect__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.consult-expect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 960px;
  margin: 0 auto;
}
.consult-expect__item {
  text-align: center;
}
.consult-expect__num {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.18);
  margin-bottom: 1.2rem;
}
.consult-expect__item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.consult-expect__item p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
}

/* Calendar Section */
.consult-calendar {
  padding: clamp(4rem, 8vw, 7rem) var(--pad) clamp(3rem, 6vw, 5rem);
}
.consult-calendar__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.consult-calendar .eyebrow {
  margin-bottom: 1rem;
}
.consult-calendar__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.consult-calendar__embed {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

@media (max-width: 768px) {
  .consult-expect__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 420px;
  }
}
