/* ============================================================
   what-to-expect.css  —  single page stylesheet
   (No section partials for this page; everything for the
    What to Expect page lives here, on the shared theme tokens.)
   ============================================================ */

/* ---- Banner (full-width, ~475px tall, responsive) -------- */
.expect-banner {
  position: relative; width: 100%;
  height: clamp(220px, 30vw, 475px);     /* ~475px at desktop, scales down */
  overflow: hidden; background: var(--brown-deep);
}
.expect-banner__bg { position: absolute; inset: 0; z-index: 0; }
.expect-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.expect-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,14,10,0.42) 0%, rgba(20,14,10,0.10) 30%, transparent 55%);
}

/* ---- Shared headings ------------------------------------- */
.expect-title {
  font-family: var(--font-display); font-weight: 400; line-height: 1.08;
  font-size: clamp(2.4rem, 5vw, 3.75rem); color: var(--brown-deep);
  font-variation-settings: "opsz" 144, "SOFT" 50; margin-bottom: 1.25rem;
}
.expect-h2 {
  font-family: var(--font-display); font-weight: 400; line-height: 1.1;
  font-size: var(--fs-h2); color: var(--brown-deep);
  font-variation-settings: "opsz" 96, "SOFT" 50; margin-bottom: 0.75rem;
}
.expect-h2--center { text-align: center; }
.expect-h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: var(--maroon); text-align: center;
  margin: clamp(2rem, 5vw, 2.75rem) 0 0.75rem;
}

/* ---- Intro ----------------------------------------------- */
.expect-intro__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.expect-intro p { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem); line-height: 1.8; color: var(--ink-soft); }
.expect-intro p + p { margin-top: 1.1rem; }

/* ---- Service: facts + order of service ------------------- */
.expect-facts { list-style: none; padding: 0; margin: 1.25rem auto 0; max-width: 560px; display: grid; gap: 0.6rem; }
.expect-facts li { position: relative; padding-left: 1.6rem; text-align: left; color: var(--ink); font-size: 1.05rem; }
.expect-facts li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 50%; background: var(--orange-red); }
.expect-facts strong { color: var(--brown-deep); }

.expect-order { list-style: none; counter-reset: order; max-width: 580px; margin: 1rem auto 0; padding: 0; }
.expect-order li {
  counter-increment: order; position: relative;
  padding: 0.7rem 0 0.7rem 3.25rem; border-bottom: 1px solid var(--line);
}
.expect-order li:last-child { border-bottom: none; }
.expect-order li::before {
  content: counter(order); position: absolute; left: 0; top: 0.55rem;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--maroon); color: var(--on-dark);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.92rem;
}
.expect-order__name { color: var(--ink); }
.expect-order__note { color: var(--ink-soft); font-size: 0.92em; }

/* ---- Feature blocks (image + text) ----------------------- */
.expect-feature { display: grid; grid-template-columns: 275px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.expect-feature--reverse .expect-feature__media { order: 2; }
.expect-feature__media img {
  width: 275px; max-width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover;
  border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 18px 42px -26px rgba(58, 36, 23, 0.5);
}
.expect-feature__body p { font-size: 1.08rem; line-height: 1.8; color: var(--ink-soft); }

.expect-list { list-style: none; padding-left: 0; margin-top: 0.9rem; display: grid; gap: 0.5rem; }
.expect-list li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); font-size: 1.05rem; }
.expect-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--orange-red); font-weight: 700; }

/* ---- Facility location: photo + address + map ------------ */
.expect-location { margin-top: clamp(2.5rem, 6vw, 4rem); }
.expect-location__top { display: grid; grid-template-columns: 281px 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: center; }
.expect-location__photo {
  width: 281px; max-width: 100%; aspect-ratio: 281 / 203; height: auto; object-fit: cover;
  border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 16px 36px -24px rgba(58, 36, 23, 0.5);
}
.expect-location__info p { font-size: 1.08rem; line-height: 1.7; color: var(--ink-soft); }
.expect-address { font-family: var(--font-display); font-size: 1.25rem; color: var(--brown-deep); margin-top: 0.5rem; }
.expect-map { margin-top: clamp(1.5rem, 4vw, 2.5rem); aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.expect-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 768px) {
  .expect-feature { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .expect-feature__media { order: -1; }
  .expect-feature__body { display: flex; flex-direction: column; align-items: center; }
  .expect-list { text-align: left; }
  .expect-location__top { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}
@media (min-width:601px) and (max-width: 2560px) {
    .expect-banner {
        aspect-ratio: 2521/624;
        height: auto;
        width: 100%;
        display: block;
    }
}
@media (max-width: 600px) {
    .expect-banner {
        aspect-ratio: 1086/1218;
        height: auto;
    }
}