/* =============================================================================
   Static pages — about, contact, FAQ, login, treatment packages.
   ========================================================================== */

/* =============================================================================
   Login page.
   ========================================================================== */

/*
 * The sign-in screen fills whatever height is left under the header and centres
 * its card in it, so the form sits in the middle of the page on a tall desktop
 * monitor instead of clinging to the top. `--ho-header-h` is measured at
 * runtime, so this holds for both the tall desktop header and the short mobile
 * one.
 */
.ho-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--ho-header-h));
  min-height: calc(100svh - var(--ho-header-h));
  padding-block: var(--ho-8);
}
.ho-login > .container { width: 100%; }

.ho-login__grid {
  display: grid;
  gap: var(--ho-6);
  align-items: stretch;
}
@media (max-width: 899px) {
  .ho-login {
    padding-block: var(--ho-6);
  }
  .ho-login__form {
    margin-inline: auto;
    max-width: 440px;
  }
}
@media (min-width: 900px) {
  .ho-login__grid { grid-template-columns: 1fr 1fr; gap: var(--ho-10); }
}

.ho-login__form { display: flex; align-items: center; }
.ho-login__form > * { width: 100%; }

.ho-login__aside {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: var(--ho-4);
  padding: var(--ho-10);
  border-radius: var(--ho-r-lg);
}
@media (min-width: 900px) { .ho-login__aside { display: flex; } }

.ho-login__aside h2 { margin: 0; font-size: var(--ho-fs-xl); }

.ho-login__benefits { display: grid; gap: var(--ho-3); margin: 0; padding: 0; list-style: none; }
.ho-login__benefits li {
  display: flex;
  align-items: center;
  gap: var(--ho-2);
  font-size: var(--ho-fs-sm);
  font-weight: 600;
  color: var(--ho-ink-600);
}
.ho-login__benefits .ho-icon { flex: none; color: var(--ho-amber-500); }

/* =============================================================================
   About us.
   ========================================================================== */

.ho-about__hero {
  padding-block: var(--ho-12) var(--ho-8);
  background: linear-gradient(180deg, var(--ho-amber-50), var(--ho-bg));
  text-align: center;
}

.ho-about__title {
  max-width: 22ch;
  margin: var(--ho-4) auto var(--ho-4);
  font-size: clamp(24px, 5vw, var(--ho-fs-3xl));
  font-weight: 900;
  line-height: 1.6;
}

.ho-about__lead {
  max-width: 62ch;
  margin-inline: auto;
  font-size: var(--ho-fs-md);
  color: var(--ho-ink-500);
  line-height: 2.2;
}

.ho-about__grid {
  display: grid;
  gap: var(--ho-4);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .ho-about__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.ho-about__card {
  padding: var(--ho-6);
  border: 1px solid var(--ho-line-soft);
  border-radius: var(--ho-r-lg);
  background: var(--ho-surface);
}
.ho-about__card h2 { margin: var(--ho-3) 0 var(--ho-2); font-size: var(--ho-fs-lg); }
.ho-about__card p { margin: 0; font-size: var(--ho-fs-sm); color: var(--ho-ink-500); line-height: 2.1; }

.ho-about__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--ho-r-sm);
  background: var(--ho-amber-50);
  color: var(--ho-amber-600);
}

.ho-about__story {
  display: grid;
  gap: var(--ho-8);
  align-items: start;
}
@media (min-width: 992px) { .ho-about__story { grid-template-columns: 1.4fr 1fr; gap: var(--ho-12); } }

.ho-about__story-body h2 { margin: var(--ho-3) 0 var(--ho-4); font-size: var(--ho-fs-2xl); }
.ho-about__story-body p { font-size: var(--ho-fs-md); color: var(--ho-ink-600); line-height: 2.3; }

.ho-about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ho-3);
  margin: 0;
  padding: var(--ho-6);
  border-radius: var(--ho-r-lg);
  background: var(--ho-surface);
  box-shadow: var(--ho-shadow-sm);
}
.ho-about__stats dt { font-size: var(--ho-fs-xs); color: var(--ho-ink-400); }
.ho-about__stats dd {
  margin: 2px 0 0;
  font-size: var(--ho-fs-2xl);
  font-weight: 900;
  color: var(--ho-amber-600);
}

.ho-about__cta {
  display: grid;
  gap: var(--ho-5);
  align-items: center;
}
@media (min-width: 900px) { .ho-about__cta { grid-template-columns: 1.4fr 1fr; } }
.ho-about__cta h2 { margin: 0 0 var(--ho-2); font-size: var(--ho-fs-xl); }
.ho-about__cta p { margin: 0; color: var(--ho-ink-500); line-height: 2.1; }
.ho-about__cta-actions { display: flex; flex-wrap: wrap; gap: var(--ho-2); }

/* =============================================================================
   Contact us.
   ========================================================================== */

.ho-contact { padding-block: var(--ho-8) var(--ho-12); }

.ho-contact__head { margin-bottom: var(--ho-6); }
.ho-contact__title { margin: 0 0 var(--ho-2); font-size: var(--ho-fs-2xl); font-weight: 900; }
.ho-contact__lead { max-width: 60ch; margin: 0; color: var(--ho-ink-500); line-height: 2.1; }

.ho-contact__grid {
  display: grid;
  gap: var(--ho-5);
  align-items: start;
}
@media (min-width: 992px) { .ho-contact__grid { grid-template-columns: 1fr 1.1fr; gap: var(--ho-8); } }

.ho-contact__cards {
  display: grid;
  gap: var(--ho-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 520px) { .ho-contact__cards { grid-template-columns: 1fr; } }

.ho-contact__card {
  display: grid;
  gap: 4px;
  padding: var(--ho-5);
  border: 1px solid var(--ho-line-soft);
  border-radius: var(--ho-r-md);
  background: var(--ho-surface);
}
.ho-contact__card h2 { margin: var(--ho-2) 0 2px; font-size: var(--ho-fs-sm); font-weight: 800; }
.ho-contact__card a,
.ho-contact__card p {
  margin: 0;
  font-size: var(--ho-fs-sm);
  color: var(--ho-ink-600);
  line-height: 2;
}
.ho-contact__card a { font-weight: 700; color: var(--ho-ink-800); }
.ho-contact__card a:hover { color: var(--ho-amber-600); }

.ho-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--ho-r-sm);
  background: var(--ho-amber-50);
  color: var(--ho-amber-600);
}

.ho-contact__form-wrap {
  padding: var(--ho-6);
  border: 1px solid var(--ho-line);
  border-radius: var(--ho-r-lg);
  background: var(--ho-surface);
  box-shadow: var(--ho-shadow-sm);
}
.ho-contact__form-title { margin: 0 0 4px; font-size: var(--ho-fs-lg); }
.ho-contact__form { margin-top: var(--ho-5); }

.ho-contact__result {
  margin: var(--ho-3) 0 0;
  padding: var(--ho-3);
  border-radius: var(--ho-r-sm);
  font-size: var(--ho-fs-sm);
  font-weight: 700;
  text-align: center;
}
.ho-contact__result[hidden] { display: none; }
.ho-contact__result.is-success { background: var(--ho-green-50); color: var(--ho-green-600); }
.ho-contact__result.is-error { background: var(--ho-danger-50); color: var(--ho-danger); }

.ho-contact__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ho-3);
  margin-top: var(--ho-6);
  padding: var(--ho-4);
  border-radius: var(--ho-r-md);
  background: var(--ho-cream-100);
  font-size: var(--ho-fs-sm);
  font-weight: 700;
  color: var(--ho-ink-600);
}
.ho-contact__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ho-surface);
  color: var(--ho-ink-600);
  transition: background var(--ho-fast), color var(--ho-fast);
}
.ho-contact__socials a:hover { background: var(--ho-amber-500); color: #fff; }

.ho-contact__map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  margin-top: var(--ho-5);
  border: 1px dashed var(--ho-line);
  border-radius: var(--ho-r-lg);
  background: var(--ho-cream-50);
  overflow: hidden;
}
.ho-contact__map iframe { width: 100%; min-height: 360px; border: 0; display: block; }

/* ----------------------------------------------------------------- page --- */

/* The plain page shell, also used by cart, checkout and the order-received
   screen, all of which load this sheet and not the blog one. */
/* --------------------------------------------------------------- page ---- */

.ho-page { padding-block: var(--ho-8) var(--ho-12); }

/* Cart, checkout, account and Elementor layouts bring their own spacing; the
   wrapper adding its own on top is where the empty band at the top came from. */
.ho-page--bare { padding-block: 0; }
.ho-page__title { margin: 0 0 var(--ho-5); font-size: var(--ho-fs-2xl); font-weight: 900; }
.ho-page__figure { margin: 0 0 var(--ho-6); border-radius: var(--ho-r-lg); overflow: hidden; }

/* ------------------------------------------------------------------ 404 --- */

.ho-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: var(--ho-16);
  text-align: center;
}
.ho-404 .container--narrow { display: grid; justify-items: center; gap: var(--ho-4); }
.ho-404__mark { opacity: .55; }
.ho-404__title { margin: 0; font-size: var(--ho-fs-2xl); }
.ho-404__text { margin: 0; color: var(--ho-ink-500); }
.ho-404__chips { justify-content: center; }
