/* =========================================================
   Home Care Specialist Template
   Scoped to current page: Hero / Filter / Providers / Footer / Modal
   All classes prefixed with hc-
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&display=swap");

.hc-page {
  --hc-white: #ffffff;
  --hc-cream: #f9f4f0;          /* 更暖一点的奶油白 */
  --hc-beige: #f0e6e0;          /* 柔和粉米色 */
  --hc-sand: #e4d5cc;           /* 略带粉的沙色 */
  --hc-ink: #2c2426;            /* 深暖灰（偏玫瑰黑） */
  --hc-ink-soft: #5c4f52;       /* 柔和深灰粉 */
  --hc-muted: #9a8b8e;          /* 低饱和灰粉 */
  --hc-line: rgba(44, 36, 38, 0.1);

  /* 主色换成暧昧的玫瑰调 */
  --hc-teal: #b87a7e;           /* 柔和玫瑰粉（主强调色） */
  --hc-teal-dark: #9a5f64;      /* 深一点的玫瑰 */
  --hc-teal-soft: #f7ecec;      /* 极浅的粉白背景 */

  /* Status theme tokens (semantic — not person-specific) */
  --hc-status-available-bg: rgba(255, 255, 255, 0.92);
  --hc-status-available-text: #00b100;
  --hc-status-busy-bg: rgba(255, 255, 255, 0.92);
  --hc-status-busy-text: #c9a227;
  --hc-status-away-bg: rgba(255, 255, 255, 0.92);
  --hc-status-away-text: #3b82f6;
  --hc-status-off-duty-bg: rgba(255, 255, 255, 0.92);
  --hc-status-off-duty-text: #8a7f82;
  --hc-card-accent: var(--hc-teal);

  --hc-radius: 28px;
  --hc-radius-sm: 16px;
  --hc-radius-pill: 999px;
  --hc-shadow: 0 18px 50px rgba(44, 36, 38, 0.08);
  --hc-shadow-soft: 0 10px 30px rgba(44, 36, 38, 0.06);
  --hc-font-display: "Cormorant Garamond", Georgia, serif;
  --hc-font-body: "Manrope", "Segoe UI", sans-serif;
  --hc-max: 1180px;
  --hc-ease: cubic-bezier(0.22, 1, 0.36, 1);

  box-sizing: border-box;
  color: var(--hc-ink);
  font-family: var(--hc-font-body);
  font-size: 16px;
  line-height: 1.65;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(184, 122, 126, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(228, 213, 204, 0.6), transparent 50%),
    linear-gradient(180deg, var(--hc-cream) 0%, var(--hc-white) 28%, var(--hc-cream) 100%);
  -webkit-font-smoothing: antialiased;
}

.hc-page *,
.hc-page *::before,
.hc-page *::after {
  box-sizing: border-box;
}

.hc-page img {
  max-width: 100%;
  display: block;
}

.hc-page a {
  color: inherit;
  text-decoration: none;
}

.hc-page button,
.hc-page input,
.hc-page select {
  font: inherit;
}

.hc-shell {
  width: min(100% - 2.5rem, var(--hc-max));
  margin-inline: auto;
}

.hc-eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--hc-teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hc-title {
  margin: 0;
  font-family: var(--hc-font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--hc-ink);
}

.hc-title--xl {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.hc-title--lg {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.hc-title--md {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.hc-lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--hc-ink-soft);
  font-size: 1.05rem;
}

.hc-section {
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
}

.hc-section--tight {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.hc-section__head {
  max-width: 40rem;
  margin-bottom: clamp(1.15rem, 2.5vw, 1.75rem);
}

.hc-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.hc-section__head--center .hc-lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.hc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  border-radius: var(--hc-radius-pill);
  background: var(--hc-teal);
  color: var(--hc-white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 0.28s var(--hc-ease),
    transform 0.28s var(--hc-ease),
    box-shadow 0.28s var(--hc-ease),
    border-color 0.28s var(--hc-ease),
    color 0.28s var(--hc-ease);
  box-shadow: 0 12px 28px rgba(184, 122, 126, 0.28);
}

.hc-button:hover {
  background: var(--hc-teal-dark);
  transform: translateY(-2px);
}

.hc-button:focus-visible {
  outline: 2px solid var(--hc-teal);
  outline-offset: 3px;
}

.hc-button--ghost {
  background: transparent;
  color: var(--hc-ink);
  border-color: var(--hc-line);
  box-shadow: none;
}

.hc-button--ghost:hover {
  background: var(--hc-white);
  border-color: var(--hc-sand);
  color: var(--hc-ink);
}

.hc-button--sm {
  min-height: 2.65rem;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}

.hc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ---------- Hero / logo bar ---------- */
.hc-hero {
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.hc-hero--bar {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hc-line);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.hc-hero__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
}

.hc-logo {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.hc-logo__brand {
  font-family: var(--hc-font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  font-style: italic;
  color: var(--hc-teal);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.hc-logo__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hc-muted);
}

.hc-hero__nav {
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-shrink: 0;
}

.hc-hero__link {
  color: var(--hc-ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hc-hero__link:hover {
  color: var(--hc-teal-dark);
}

.hc-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hc-hero__copy {
  animation: hc-rise 0.9s var(--hc-ease) both;
}

.hc-hero__title span {
  display: block;
  color: var(--hc-teal);
  font-style: italic;
  font-weight: 500;
}

.hc-hero__visual {
  position: relative;
  min-height: clamp(22rem, 48vw, 34rem);
  border-radius: calc(var(--hc-radius) + 8px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(184, 122, 126, 0.18), transparent 42%),
    linear-gradient(180deg, #e4d5cc 0%, #c9b0b2 100%);
  box-shadow: var(--hc-shadow);
  animation: hc-rise 1s var(--hc-ease) 0.12s both;
}

.hc-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.2s var(--hc-ease);
}

.hc-hero__visual:hover img {
  transform: scale(1.04);
}

.hc-hero__visual-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 2rem;
  color: var(--hc-white);
  background:
    linear-gradient(180deg, transparent 35%, rgba(44, 36, 38, 0.55)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.25), transparent 40%),
    linear-gradient(135deg, #c9a8ab, #9a6f73 45%, #6d4a4e);
}

.hc-hero__visual-fallback strong {
  font-family: var(--hc-font-display);
  font-size: clamp(1.85rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.15;
}

.hc-hero__visual-fallback span {
  display: block;
  margin-top: 0.75rem;
  opacity: 0.9;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ---------- Section spacing ---------- */
#hc-providers {
  padding-top: 0.85rem;
  padding-bottom: 2rem;
}

#hc-how-it-works {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#hc-app {
  padding-top: 2rem;
  padding-bottom: 2.25rem;
}

/* ---------- Specialists layout + Expertise nav ---------- */
.hc-specialists-layout {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.hc-expertise {
  flex: 0 0 240px;
  width: 240px;
  position: sticky;
  top: 1.25rem;
  padding: 1.15rem 1rem;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hc-shadow-soft);
}

.hc-expertise__title {
  margin: 0 0 0.95rem;
  padding: 0 0.35rem;
  font-family: var(--hc-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--hc-ink);
}

.hc-expertise-menu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hc-expertise-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--hc-ink-soft);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.25s var(--hc-ease),
    color 0.25s var(--hc-ease),
    border-color 0.25s var(--hc-ease),
    box-shadow 0.25s var(--hc-ease);
}

.hc-expertise-item:hover {
  background: var(--hc-cream);
  color: var(--hc-ink);
}

.hc-expertise-item.is-active {
  background: var(--hc-teal-soft);
  border-color: rgba(184, 122, 126, 0.18);
  color: var(--hc-teal-dark);
  box-shadow: inset 0 0 0 1px rgba(184, 122, 126, 0.08);
  font-weight: 600;
}

.hc-expertise-item:focus-visible {
  outline: 2px solid var(--hc-teal);
  outline-offset: 2px;
}

.hc-expertise-item__icon {
  flex: 0 0 auto;
  font-size: 1rem;
  line-height: 1;
}

.hc-expertise-item__icon-img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
  display: block;
}

.hc-expertise-item__icon--svg svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.hc-expertise-item__label {
  font-size: 0.92rem;
  line-height: 1.3;
}

.hc-expertise-item__label--mobile {
  display: none;
}

.hc-specialists-main {
  flex: 1;
  min-width: 0;
}

.hc-specialists-status {
  margin: 0 0 0.85rem;
  color: var(--hc-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- Provider cards (V10 natural height) ---------- */
.hc-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.hc-provider-card {
  display: flex;
  flex-direction: column;
  height: auto;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: var(--hc-white);
  overflow: hidden;
  box-shadow: var(--hc-shadow-soft);
  transition:
    transform 0.35s var(--hc-ease),
    box-shadow 0.35s var(--hc-ease);
  animation: hc-rise 0.7s var(--hc-ease) both;
}

.hc-provider-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hc-shadow);
}

.hc-provider-image {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: linear-gradient(160deg, #e4d5cc, #c9b0b2);
}

.hc-provider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hc-provider-image__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--hc-font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(145deg, #c9a8ab, #9a6f73);
}

.hc-provider-image img + .hc-provider-image__fallback {
  display: none;
}

.hc-provider-card[data-status="available"] {
  --hc-card-accent: var(--hc-status-available-text);
}

.hc-provider-card[data-status="busy"] {
  --hc-card-accent: var(--hc-status-busy-text);
}

.hc-provider-card[data-status="away"] {
  --hc-card-accent: var(--hc-status-away-text);
}

.hc-provider-card[data-status="off-duty"] {
  --hc-card-accent: var(--hc-status-off-duty-text);
}

.hc-provider-image__status {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: auto;
  max-width: calc(100% - 1.4rem);
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(44, 36, 38, 0.16);
  pointer-events: none;
  background: var(--hc-status-available-bg);
  color: var(--hc-status-available-text);
}

.hc-provider-image__status-line,
.hc-provider-image__status-sub {
  display: block;
  font-family: var(--hc-font-body);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-provider-image__status-sub {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.9;
}

.hc-provider-image__status[data-status="available"] {
  background: var(--hc-status-available-bg);
  color: var(--hc-status-available-text);
}

.hc-provider-image__status[data-status="busy"] {
  background: var(--hc-status-busy-bg);
  color: var(--hc-status-busy-text);
}

.hc-provider-image__status[data-status="away"] {
  background: var(--hc-status-away-bg);
  color: var(--hc-status-away-text);
}

.hc-provider-image__status[data-status="off-duty"] {
  background: var(--hc-status-off-duty-bg);
  color: var(--hc-status-off-duty-text);
}

.hc-provider-image__status-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.hc-status-icon,
.hc-status-plane {
  flex: 0 0 auto;
  display: block;
  width: 14px;
  height: 14px;
  color: inherit;
}

.hc-provider-image__status-route {
  min-width: 0;
}

.hc-provider-content {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.95rem 1rem 1.05rem;
}

.hc-provider-name-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  min-height: 2rem;
}

.hc-provider-card__name {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  font-family: var(--hc-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  max-width: 100%;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-family: var(--hc-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  white-space: nowrap;
  background: var(--hc-teal-soft);
  color: var(--hc-status-available-text);
}

.hc-status__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.hc-status[data-status="available"],
.hc-status.hc-status--available {
  background: var(--hc-teal-soft);
  color: var(--hc-status-available-text);
}

.hc-status[data-status="busy"],
.hc-status.hc-status--busy {
  background: #f7f1df;
  color: var(--hc-status-busy-text);
}

.hc-status[data-status="away"],
.hc-status.hc-status--away {
  background: #eef3fb;
  color: var(--hc-status-away-text);
}

.hc-status[data-status="off-duty"],
.hc-status.hc-status--off-duty {
  background: #eeebea;
  color: var(--hc-status-off-duty-text);
}

.hc-status-text[data-status="available"] {
  color: var(--hc-status-available-text);
}

.hc-status-text[data-status="busy"] {
  color: var(--hc-status-busy-text);
}

.hc-status-text[data-status="away"] {
  color: var(--hc-status-away-text);
}

.hc-status-text[data-status="off-duty"] {
  color: var(--hc-status-off-duty-text);
}

.hc-provider-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  color: var(--hc-ink-soft);
  font-size: 0.88rem;
}

.hc-provider-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-provider-card__meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  flex-shrink: 0;
}

.hc-reputation {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0;
}

.hc-reputation__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hc-reputation__stars {
  color: #b0893d;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hc-reputation__score {
  font-family: var(--hc-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--hc-ink);
  line-height: 1;
}

.hc-reputation__reviews {
  margin: 0;
  color: var(--hc-muted);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hc-provider-card__skills-label {
  margin: 0 0 0.4rem;
  color: var(--hc-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hc-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: var(--hc-radius-pill);
  background: var(--hc-teal-soft);
  color: var(--hc-teal-dark);
  font-size: 0.74rem;
  font-weight: 600;
}

.hc-tag--more {
  background: var(--hc-cream);
  color: var(--hc-muted);
}

.hc-provider-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.55rem;
  margin-top: 1rem;
  min-width: 0;
}

.hc-provider-footer > div:first-child {
  min-width: 0;
  flex: 1 1 auto;
}

.hc-provider-footer .hc-button {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-inline: 1rem;
}

.hc-provider-card__price-label {
  margin: 0 0 0.15rem;
  color: var(--hc-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.hc-provider-card__price {
  font-family: var(--hc-font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  font-weight: 600;
  color: var(--hc-ink);
  line-height: 1.15;
  white-space: nowrap;
}

.hc-empty {
  grid-column: 1 / -1;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--hc-sand);
  border-radius: var(--hc-radius);
  text-align: center;
  color: var(--hc-ink-soft);
  background: rgba(255, 255, 255, 0.55);
}

.hc-empty--app .hc-button {
  margin-top: 1rem;
}

/* ---------- Pagination ---------- */
.hc-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.hc-pagination[hidden] {
  display: none !important;
}

.hc-pagination__btn {
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--hc-line);
  border-radius: 999px;
  background: var(--hc-white);
  color: var(--hc-ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s var(--hc-ease),
    color 0.25s var(--hc-ease),
    border-color 0.25s var(--hc-ease);
}

.hc-pagination__btn:hover:not(:disabled):not(.is-active) {
  background: var(--hc-cream);
  color: var(--hc-ink);
  border-color: var(--hc-sand);
}

.hc-pagination__btn.is-active {
  background: var(--hc-teal);
  border-color: var(--hc-teal);
  color: var(--hc-white);
  cursor: default;
}

.hc-pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.hc-pagination__btn--nav {
  padding-inline: 1rem;
}

.hc-pagination__ellipsis {
  min-width: 1.5rem;
  text-align: center;
  color: var(--hc-muted);
  font-weight: 600;
}

/* ---------- How It Works ---------- */
.hc-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hc-how-card {
  padding: 1.45rem 1.3rem 1.5rem;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hc-shadow-soft);
}

.hc-how-card__step {
  margin: 0 0 0.7rem;
  font-family: var(--hc-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--hc-teal);
  line-height: 1;
}

.hc-how-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--hc-font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.hc-how-card > p {
  margin: 0;
  color: var(--hc-ink-soft);
  font-size: 0.95rem;
}

.hc-how-flow {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
  color: var(--hc-ink-soft);
  display: grid;
  gap: 0.45rem;
}

.hc-how-note {
  margin: 0.85rem 0 0 !important;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: var(--hc-cream);
  border: 1px solid var(--hc-line);
  color: var(--hc-ink-soft) !important;
  font-size: 0.9rem !important;
}

.hc-scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.hc-scope__label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-muted);
}

.hc-scope__list {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  color: var(--hc-ink-soft);
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.hc-scope__list--muted {
  color: var(--hc-muted);
}

.hc-how-more {
  margin: 1.15rem 0 0;
  text-align: center;
  color: var(--hc-muted);
  font-size: 0.92rem;
}

.hc-how-more a {
  color: var(--hc-teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- App features ---------- */
.hc-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.hc-app-card {
  padding: 1.35rem 1.2rem 1.45rem;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: var(--hc-white);
  box-shadow: var(--hc-shadow-soft);
}

.hc-app-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--hc-font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.hc-app-card p {
  margin: 0;
  color: var(--hc-ink-soft);
  font-size: 0.94rem;
}

.hc-app-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--hc-radius) + 4px);
  background:
    linear-gradient(135deg, rgba(184, 122, 126, 0.09), rgba(249, 244, 240, 0.9)),
    var(--hc-white);
  border: 1px solid var(--hc-line);
}

.hc-app-cta .hc-lead {
  margin-top: 0.45rem;
}

.hc-app-note {
  margin: 0.9rem 0 0;
  text-align: center;
  color: var(--hc-muted);
  font-size: 0.82rem;
}

/* Mobile sticky dock — hidden on desktop */
.hc-app-dock {
  display: none;
}

/* ---------- How-it-works page ---------- */
.hc-hero--simple {
  padding-bottom: 2rem;
}

.hc-hero--simple .hc-eyebrow a {
  color: var(--hc-teal);
}

.hc-rules {
  display: grid;
  gap: 1rem;
}

.hc-rules__block {
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hc-shadow-soft);
}

.hc-rules__block .hc-title {
  margin-bottom: 0.7rem;
}

.hc-rules__block > p {
  margin: 0;
  color: var(--hc-ink-soft);
}

/* ---------- Footer ---------- */
.hc-footer {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--hc-line);
}

.hc-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--hc-muted);
  font-size: 0.92rem;
}

.hc-footer__brand {
  font-family: var(--hc-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--hc-ink);
}

.hc-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.hc-footer__links a {
  color: var(--hc-teal-dark);
}

.hc-footer__disclaimer {
  margin: 0.65rem 0 0;
  max-width: 38rem;
  color: var(--hc-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* ---------- DE compliance: age gate (entry card) ---------- */
/*
  Age gate is mounted on document.body (outside .hc-page) so that
  .hc-page can stay visibility:hidden. Design tokens must be redefined
  here — otherwise var(--hc-*) resolve empty and colors collapse.
*/
html.hc-age-pending,
html.hc-age-pending body {
  overflow: hidden;
}

html.hc-age-pending .hc-page {
  visibility: hidden;
}

.hc-age-gate {
  --hc-white: #ffffff;
  --hc-cream: #f9f4f0;
  --hc-beige: #f0e6e0;
  --hc-sand: #e4d5cc;
  --hc-ink: #2c2426;
  --hc-ink-soft: #5c4f52;
  --hc-muted: #9a8b8e;
  --hc-line: rgba(44, 36, 38, 0.1);
  --hc-teal: #b87a7e;
  --hc-teal-dark: #9a5f64;
  --hc-teal-soft: #f7ecec;
  --hc-radius: 28px;
  --hc-radius-sm: 16px;
  --hc-radius-pill: 999px;
  --hc-font-display: "Cormorant Garamond", Georgia, serif;
  --hc-font-body: "Manrope", "Segoe UI", sans-serif;
  --hc-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  color: var(--hc-ink);
  font-family: var(--hc-font-body);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184, 122, 126, 0.28), transparent 55%),
    linear-gradient(165deg, rgba(44, 36, 38, 0.78), rgba(44, 36, 38, 0.92));
  backdrop-filter: blur(12px);
}

.hc-age-gate__panel {
  width: min(100%, 28.5rem);
}

.hc-age-gate__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--hc-radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--hc-white);
  box-shadow:
    0 24px 48px rgba(20, 14, 16, 0.35),
    0 2px 0 rgba(255, 255, 255, 0.4) inset;
  text-align: left;
  max-height: min(92vh, 44rem);
}

.hc-age-gate__media {
  flex: 0 0 auto;
  margin: 0.85rem 0.85rem 0;
  overflow: hidden;
  border-radius: var(--hc-radius-sm);
  border: 1px solid var(--hc-line);
  background: var(--hc-cream);
  aspect-ratio: 16 / 10;
  max-height: 11.5rem;
}

.hc-age-gate__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.hc-age-gate__card-head {
  padding: 1.15rem 1.4rem 1rem;
  border-bottom: 1px solid var(--hc-line);
  background: linear-gradient(180deg, var(--hc-teal-soft), var(--hc-white));
}

.hc-age-gate__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--hc-teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hc-age-gate__title {
  margin: 0;
  font-family: var(--hc-font-display);
  font-size: clamp(1.55rem, 4vw, 1.95rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--hc-ink);
}

.hc-age-gate__lead {
  margin: 0.55rem 0 0;
  color: var(--hc-ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hc-age-gate__card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.4rem 0.35rem;
  background: var(--hc-white);
  min-height: 0;
  overflow: auto;
}

.hc-age-gate__disclaimer {
  padding: 0.9rem 0.95rem;
  border-radius: var(--hc-radius-sm);
  border: 1px solid var(--hc-line);
  background: var(--hc-cream);
}

.hc-age-gate__disclaimer-title {
  margin: 0 0 0.5rem;
  color: var(--hc-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hc-age-gate__disclaimer ul {
  margin: 0;
  padding: 0 0 0 1.05rem;
  color: var(--hc-ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hc-age-gate__disclaimer li + li {
  margin-top: 0.35rem;
}

.hc-age-gate__text {
  margin: 0;
  color: var(--hc-ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hc-age-gate__check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  padding: 0.85rem 0.9rem;
  border-radius: var(--hc-radius-sm);
  border: 1px solid var(--hc-line);
  background: var(--hc-teal-soft);
  color: var(--hc-ink);
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
}

.hc-age-gate__check input {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.12rem;
  accent-color: var(--hc-teal-dark);
  cursor: pointer;
}

.hc-age-gate__check span {
  min-width: 0;
}

.hc-age-gate__card-foot {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.1rem 1.4rem 1.4rem;
  background: var(--hc-white);
  border-top: 1px solid var(--hc-line);
}

.hc-age-gate__card-foot .hc-button {
  width: 100%;
  background: var(--hc-teal);
  color: var(--hc-white);
  border-color: transparent;
}

.hc-age-gate__card-foot .hc-button--ghost {
  background: transparent;
  color: var(--hc-ink);
  border-color: var(--hc-line);
  box-shadow: none;
}

.hc-age-gate__card-foot .hc-button.is-disabled,
.hc-age-gate__card-foot .hc-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
  background: var(--hc-sand);
  color: var(--hc-ink-soft);
}

body.hc-age-locked {
  overflow: hidden;
}

body.hc-age-locked .hc-page {
  visibility: hidden;
}

@media (max-width: 520px) {
  .hc-age-gate {
    padding: 0.85rem;
    align-items: flex-end;
  }

  .hc-age-gate__panel {
    width: 100%;
  }

  .hc-age-gate__card {
    max-height: min(94vh, 46rem);
  }

  .hc-age-gate__media {
    margin: 0.7rem 0.7rem 0;
    max-height: 9.5rem;
    aspect-ratio: 16 / 9;
  }

  .hc-age-gate__card-body {
    overflow: auto;
  }
}

/* ---------- Install guide (after APK download) ---------- */
.hc-install-guide {
  --hc-white: #ffffff;
  --hc-cream: #f9f4f0;
  --hc-beige: #f0e6e0;
  --hc-sand: #e4d5cc;
  --hc-ink: #2c2426;
  --hc-ink-soft: #5c4f52;
  --hc-muted: #9a8b8e;
  --hc-line: rgba(44, 36, 38, 0.1);
  --hc-teal: #b87a7e;
  --hc-teal-dark: #9a5f64;
  --hc-teal-soft: #f7ecec;
  --hc-radius: 28px;
  --hc-radius-sm: 16px;
  --hc-radius-pill: 999px;
  --hc-font-display: "Cormorant Garamond", Georgia, serif;
  --hc-font-body: "Manrope", "Segoe UI", sans-serif;

  position: fixed;
  inset: 0;
  z-index: 100050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  color: var(--hc-ink);
  font-family: var(--hc-font-body);
  background: rgba(44, 36, 38, 0.55);
  backdrop-filter: blur(8px);
}

.hc-install-guide__panel {
  width: min(100%, 26.5rem);
}

.hc-install-guide__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--hc-radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--hc-white);
  box-shadow: 0 22px 48px rgba(20, 14, 16, 0.28);
}

.hc-install-guide__head {
  padding: 1.35rem 1.35rem 1rem;
  border-bottom: 1px solid var(--hc-line);
  background: linear-gradient(180deg, var(--hc-teal-soft), var(--hc-white));
}

.hc-install-guide__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.7rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--hc-radius-pill);
  background: rgba(34, 160, 90, 0.12);
  color: #1f7a45;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hc-install-guide__title {
  margin: 0;
  font-family: var(--hc-font-display);
  font-size: clamp(1.35rem, 3.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--hc-ink);
}

.hc-install-guide__steps {
  list-style: none;
  margin: 0;
  padding: 1.1rem 1.35rem 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  max-height: min(48vh, 22rem);
  overflow: auto;
}

.hc-install-guide__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hc-install-guide__step-num {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--hc-teal);
  color: var(--hc-white);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.hc-install-guide__steps strong {
  display: block;
  color: var(--hc-ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.hc-install-guide__steps p {
  margin: 0.2rem 0 0;
  color: var(--hc-ink-soft);
  font-size: 0.84rem;
  line-height: 1.4;
}

.hc-install-guide__foot {
  padding: 1rem 1.35rem 1.35rem;
}

.hc-install-guide__foot .hc-button {
  width: 100%;
  background: var(--hc-teal);
  color: var(--hc-white);
  border-color: transparent;
}

body.hc-install-guide-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .hc-install-guide {
    padding: 0.85rem;
    align-items: flex-end;
  }

  .hc-install-guide__panel {
    width: 100%;
  }

  .hc-install-guide__steps {
    max-height: min(52vh, 24rem);
  }
}

/* ---------- Modal ---------- */
.hc-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.hc-modal.is-open {
  display: flex;
}

.hc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 38, 0.55);
  backdrop-filter: blur(4px);
}

.hc-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-width: 100%;
  max-height: min(90vh, 760px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1.6rem;
  border-radius: calc(var(--hc-radius) + 4px);
  background: var(--hc-white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  animation: hc-modal-in 0.35s var(--hc-ease);
}

.hc-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--hc-line);
  border-radius: 50%;
  background: var(--hc-cream);
  color: var(--hc-ink);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.hc-modal__close:hover {
  background: var(--hc-beige);
}

.hc-modal__profile {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.35rem;
  max-width: 100%;
  overflow: hidden;
}

.hc-modal__profile-copy {
  min-width: 0;
}

.hc-profile-gallery {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -0.15rem;
  padding: 0 0.15rem 0.15rem;
}

.hc-profile-gallery::-webkit-scrollbar {
  display: none;
}

.hc-profile-gallery__track {
  display: flex;
  gap: 12px;
  width: max-content;
  max-width: none;
}

.hc-profile-gallery__item {
  flex: 0 0 auto;
  width: min(78vw, 300px);
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: start;
  background: linear-gradient(145deg, #e4d5cc, #b87a7e);
}

.hc-profile-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.hc-profile-gallery__fallback {
  display: grid;
  place-items: center;
  font-family: var(--hc-font-display);
  font-size: clamp(2.4rem, 8vw, 3.4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, #c9a8ab, #9a6f73);
}

.hc-modal__name {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--hc-font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}

.hc-modal__meta {
  margin: 0 0 0.75rem;
  color: var(--hc-ink-soft);
  font-size: 0.92rem;
}

.hc-modal__bio {
  margin: 0;
  color: var(--hc-ink-soft);
}

.hc-modal__skills-title {
  margin: 0 0 0.85rem;
  font-family: var(--hc-font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.hc-modal__history {
  margin: 0 0 1.35rem;
}

.hc-modal__availability {
  margin: 0 0 1.35rem;
}

.hc-history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.hc-availability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.hc-history-item {
  padding: 0.95rem 1rem;
  border-radius: var(--hc-radius-sm);
  background: var(--hc-cream);
  border: 1px solid var(--hc-line);
}

.hc-history-item__label {
  margin: 0 0 0.35rem;
  color: var(--hc-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hc-history-item__value {
  margin: 0;
  font-family: var(--hc-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--hc-ink);
}

.hc-history-item__value--sm {
  font-size: 1.05rem;
  line-height: 1.35;
  font-family: var(--hc-font-body);
  font-weight: 600;
}

.hc-skill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.hc-skill-card {
  padding: 0.95rem 1rem;
  border-radius: var(--hc-radius-sm);
  background: var(--hc-cream);
  border: 1px solid var(--hc-line);
  font-weight: 600;
  font-size: 0.92rem;
}

.hc-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

body.hc-modal-open {
  overflow: hidden;
}

/* ---------- Motion ---------- */
@keyframes hc-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hc-modal-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hc-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--hc-ease),
    transform 0.7s var(--hc-ease);
}

.hc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hc-provider-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
  }

  .hc-how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hc-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hc-hero__grid {
    grid-template-columns: 1fr;
  }

  .hc-specialists-layout {
    flex-direction: column;
    gap: 1rem;
  }

  .hc-expertise {
    position: static;
    flex: none;
    width: 100%;
    padding: 0.9rem 0.75rem 1rem;
  }

  .hc-expertise__title {
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
  }

  .hc-expertise-menu {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .hc-expertise-item {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: var(--hc-cream);
    border-color: var(--hc-line);
  }

  .hc-expertise-item.is-active {
    background: var(--hc-teal);
    border-color: var(--hc-teal);
    color: var(--hc-white);
    box-shadow: none;
  }

  .hc-expertise-item__label--desktop {
    display: none;
  }

  .hc-expertise-item__label--mobile {
    display: inline;
  }

  .hc-provider-grid {
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .hc-shell {
    width: min(100% - 1.4rem, var(--hc-max));
  }

  .hc-provider-grid,
  .hc-skill-grid,
  .hc-history-grid,
  .hc-availability-grid,
  .hc-how-grid,
  .hc-app-grid,
  .hc-scope {
    grid-template-columns: 1fr;
  }

  .hc-profile-gallery__item {
    width: min(78vw, 320px);
  }

  .hc-provider-grid {
    gap: 16px;
    align-items: start;
  }

  .hc-hero--bar {
    padding: 0.7rem 0;
  }

  .hc-logo__brand {
    font-size: 1.25rem;
  }

  .hc-hero__link {
    display: none;
  }

  .hc-app-cta--inline {
    display: none;
  }

  .hc-app-dock {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
  }

  .hc-app-dock__inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: var(--hc-max);
    margin: 0 auto;
    padding: 0.85rem 0.95rem;
    border-radius: 22px;
    border: 1px solid var(--hc-line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(44, 36, 38, 0.14);
    backdrop-filter: blur(12px);
  }

  .hc-app-dock__copy {
    min-width: 0;
    flex: 1;
  }

  .hc-app-dock__title {
    margin: 0;
    font-family: var(--hc-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--hc-ink);
  }

  .hc-app-dock__text {
    margin: 0.28rem 0 0;
    color: var(--hc-ink-soft);
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .hc-app-dock__btn {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .hc-page {
    padding-bottom: 6.5rem;
  }

  .hc-hero__visual {
    min-height: 18rem;
  }

  .hc-modal__dialog {
    padding: 1.25rem;
  }

  .hc-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hc-provider-footer {
    flex-direction: row;
    align-items: flex-end;
  }
}
