/* ── Design tokens ─────────────────────────────────────────── */

:root {
  --color-bg: #f5f5f7;
  --color-surface: #ffffff;
  --color-surface-muted: #f3f3f5;
  --color-accent: #1a1a1a;
  --color-accent-hover: #333333;
  --color-accent-subtle: #f0f0f2;
  --color-text: #1a1a1a;
  --color-text-muted: #6e6e73;
  --color-text-light: #aeaeb2;
  --color-border: #e5e5ea;
  --color-border-subtle: #f0f0f2;
  --color-star: #f59e0b;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1ebe57;

  --font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-photo: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-btn: 0 2px 8px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-btn-hover: 0 4px 16px rgba(0, 0, 0, 0.16), 0 2px 6px rgba(0, 0, 0, 0.08);

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.75rem;
  --space-3xl: 3.5rem;
  --space-4xl: 4.5rem;

  --max-width: 680px;
  --sticky-bar-height: 84px;
  --btn-height: 52px;
}

/* ── Reset & base ──────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body.profile-body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

/* ── Page layout ───────────────────────────────────────────── */

.profile-page {
  min-height: 100dvh;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-bg);
}

.profile-header {
  background: var(--color-surface);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
}

.profile-main {
  padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.profile-spacer {
  height: var(--sticky-bar-height);
}

/* ── Hero ──────────────────────────────────────────────────── */

.profile-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-hero__photo-wrap {
  margin-bottom: var(--space-xl);
}

.profile-hero__photo {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  border: 3px solid var(--color-surface);
  outline: 1px solid var(--color-border);
  background: var(--color-surface-muted);
}

.profile-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-hero__image--hidden {
  display: none;
}

.profile-hero__initials {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text-muted);
  background: var(--color-surface-muted);
}

.profile-hero__initials--visible {
  display: flex;
}

.profile-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.profile-hero__name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--color-text);
}

.profile-hero__specialty {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  letter-spacing: -0.01em;
}

.profile-hero__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.profile-hero__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--color-surface-muted);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-subtle);
}

.profile-hero__stars {
  display: flex;
  gap: 1px;
}

.profile-hero__star {
  width: 16px;
  height: 16px;
  color: var(--color-border);
}

.profile-hero__star--filled,
.profile-hero__star--partial {
  color: var(--color-star);
}

.profile-hero__rating-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.profile-hero__review-count {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
}

/* ── Contact buttons ───────────────────────────────────────── */

.contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.contact-bar--inline {
  margin-top: var(--space-2xl);
}

.contact-bar--sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-lg);
  padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.06);
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: var(--btn-height);
  padding: var(--space-sm) var(--space-xs);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.2s ease,
    border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.contact-bar__btn:active {
  transform: scale(0.97);
}

.contact-bar__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-bar__btn--call {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.contact-bar__btn--call:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-btn-hover);
}

.contact-bar__btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.28);
}

.contact-bar__btn--whatsapp:hover {
  background: var(--color-whatsapp-hover);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.36);
}

.contact-bar__btn--directions {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.contact-bar__btn--directions:hover {
  background: var(--color-surface-muted);
  border-color: #d1d1d6;
  box-shadow: var(--shadow-sm);
}

.contact-bar__btn--booking {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.contact-bar__btn--booking:hover {
  background: var(--color-surface-muted);
  border-color: #d1d1d6;
  box-shadow: var(--shadow-sm);
}

/* ── Sections ──────────────────────────────────────────────── */

.profile-section__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

/* ── About ─────────────────────────────────────────────────── */

.about-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
}

.about-card__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

/* ── Services ──────────────────────────────────────────────── */

.services-grid {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
  transition:
    box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card__body {
  width: 100%;
  min-width: 0;
}

.service-card__name {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.service-card__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15em;
  color: var(--color-accent);
}

.service-card__title {
  flex: 1;
  min-width: 0;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  padding-left: calc(18px + 0.625rem);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

/* ── Trust card ────────────────────────────────────────────── */

.trust-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
}

.trust-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.trust-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.trust-card__item {
  position: relative;
  padding-left: 1.125rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

.trust-card__item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-text-light);
}

/* ── Social presence ───────────────────────────────────────── */

.social-section .profile-section__title {
  margin-bottom: var(--space-md);
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.social-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md) var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
}

.social-card__brand {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-card__brand--instagram {
  background: linear-gradient(135deg, #fdf497 0%, #fd5949 45%, #d6249f 75%, #285aeb 100%);
}

.social-card__brand--facebook {
  background: #1877f2;
}

.social-card__brand--linkedin {
  background: #0a66c2;
}

.social-card__brand--tiktok {
  background: #111111;
}

.social-card__icon {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.social-card__identity {
  flex: 1;
  min-width: 8rem;
}

.social-card__platform {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  line-height: 1.2;
}

.social-card__handle {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--color-text);
  margin-top: 0.125rem;
  line-height: 1.35;
}

.social-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #ffffff;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-btn);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.social-card__btn:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-btn-hover);
  color: #ffffff;
}

.social-card__btn:active {
  transform: scale(0.98);
}

/* ── Reviews ───────────────────────────────────────────────── */

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.review-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
}

.review-card__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 var(--space-md);
  align-items: center;
  margin-bottom: var(--space-lg);
}

.review-card__avatar {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-surface-muted);
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-subtle);
}

.review-card__author {
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.review-card__date {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 1px;
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__star {
  width: 14px;
  height: 14px;
  color: var(--color-star);
}

.review-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

/* ── Opening hours ─────────────────────────────────────────── */

.hours-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
}

.hours-list {
  list-style: none;
}

.hours-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-subtle);
  font-size: 1rem;
}

.hours-list__item:last-child {
  border-bottom: none;
  padding-bottom: var(--space-sm);
}

.hours-list__item:first-child {
  padding-top: var(--space-sm);
}

.hours-list__day {
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.hours-list__time {
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
  font-size: 0.9375rem;
}

.hours-list__item--closed .hours-list__time {
  color: var(--color-text-light);
}

/* ── Location ──────────────────────────────────────────────── */

.location-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
}

.location-card__address {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: var(--space-xl);
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.location-card__name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.location-card__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-surface-muted);
}

.location-card__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Desktop enhancements ──────────────────────────────────── */

@media (min-width: 640px) {
  .profile-header {
    padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

  .profile-main {
    padding: var(--space-3xl) var(--space-xl) var(--space-4xl);
    gap: var(--space-4xl);
  }

  .profile-hero__photo-wrap {
    margin-bottom: var(--space-2xl);
  }

  .profile-hero__photo {
    width: 140px;
    height: 140px;
    border-width: 4px;
  }

  .profile-hero__initials {
    font-size: 2.75rem;
  }

  .profile-hero__name {
    font-size: 2.625rem;
  }

  .profile-hero__specialty {
    font-size: 1.1875rem;
    margin-top: var(--space-md);
  }

  .profile-hero__rating {
    margin-top: var(--space-xl);
  }

  .profile-section__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
  }

  .contact-bar--inline {
    margin-top: var(--space-3xl);
    gap: var(--space-md);
  }

  .contact-bar--inline .contact-bar__btn {
    flex-direction: row;
    font-size: 0.9375rem;
    min-height: 56px;
    padding: var(--space-md) var(--space-xl);
    gap: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .contact-bar--inline .contact-bar__icon {
    width: 20px;
    height: 20px;
  }

  .contact-bar--sticky {
    display: none;
  }

  .profile-spacer {
    display: none;
  }

  .about-card,
  .review-card,
  .trust-card {
    padding: var(--space-2xl);
  }

  .service-card {
    padding: var(--space-xl) var(--space-2xl);
  }

  .service-card__name {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .service-card__desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.625rem;
  }

  .trust-card__title {
    font-size: 1.375rem;
    margin-bottom: var(--space-xl);
  }

  .trust-card__item {
    font-size: 1.0625rem;
    line-height: 1.7;
  }

  .social-card {
    flex-wrap: nowrap;
    padding: var(--space-lg) var(--space-2xl);
  }

  .social-card__btn {
    width: auto;
    flex-shrink: 0;
  }

  .hours-card {
    padding: var(--space-lg) var(--space-2xl);
  }
}

@media (max-width: 639px) {
  .contact-bar--inline {
    display: none;
  }

  .contact-bar--sticky {
    gap: var(--space-sm);
  }

  .contact-bar--sticky .contact-bar__btn {
    min-height: 56px;
    font-size: 0.8125rem;
  }

  /* Stack review header: avatar + name on row 1, stars below, source label last */
  .review-card__header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: var(--space-md);
    row-gap: 0.375rem;
    align-items: center;
  }

  .review-card__avatar {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .review-card__meta {
    display: contents;
  }

  .review-card__author {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .review-card__stars {
    grid-column: 2;
    grid-row: 2;
  }

  .review-card__date {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0;
  }
}

/* ── Wellness theme (dietitian, lifestyle professionals) ─── */

.profile-page--wellness {
  --color-bg: #faf6f1;
  --color-surface: #fffdf9;
  --color-surface-muted: #f5f0ea;
  --color-accent: #5f7d63;
  --color-accent-hover: #4d6a51;
  --color-accent-subtle: #eef3eb;
  --color-accent-rose: #c9a99a;
  --color-accent-rose-subtle: #f7efeb;
  --color-text: #2a2826;
  --color-text-muted: #6f6a65;
  --color-text-light: #a39e98;
  --color-border: #ebe4dc;
  --color-border-subtle: #f2ece5;
  --shadow-photo: 0 8px 28px rgba(95, 125, 99, 0.12), 0 2px 8px rgba(196, 169, 154, 0.1);
  --shadow-btn: 0 2px 8px rgba(95, 125, 99, 0.2), 0 1px 3px rgba(95, 125, 99, 0.08);
  --shadow-btn-hover: 0 4px 14px rgba(95, 125, 99, 0.26), 0 2px 6px rgba(95, 125, 99, 0.1);
}

.profile-page--wellness .profile-header {
  background: linear-gradient(180deg, #fffdf9 0%, #f9f2eb 100%);
  box-shadow: 0 1px 0 rgba(196, 169, 154, 0.12);
}

.profile-page--wellness .profile-hero__name {
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #2a2826;
}

.profile-page--wellness .profile-hero__specialty {
  color: #5f7d63;
}

.profile-page--wellness .profile-hero__rating-badge {
  background: #ffffff;
  border-color: rgba(201, 169, 154, 0.35);
  box-shadow: var(--shadow-xs);
}

.profile-page--wellness .profile-hero__review-count {
  color: #8a827a;
}

.profile-page--wellness .profile-hero__photo {
  border-color: #fffdf9;
  outline-color: rgba(201, 169, 154, 0.3);
}

.profile-page--wellness .about-card,
.profile-page--wellness .service-card,
.profile-page--wellness .review-card,
.profile-page--wellness .hours-card,
.profile-page--wellness .location-card {
  background: #fffdfb;
  border-color: var(--color-border);
}

.profile-page--wellness .service-card__check {
  color: var(--color-accent);
}

.profile-page--wellness .trust-card {
  background: #fffdfb;
  border-color: var(--color-border);
}

.profile-page--wellness .social-card {
  background: #fffdfb;
  border-color: var(--color-border);
}

.profile-page--wellness .review-card__avatar {
  background: #ffffff;
  color: #2a2826;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  font-weight: 700;
}

/* Generated initial avatars: white initials on a colored background */
.review-card__avatar--initial,
.profile-page--wellness .review-card__avatar--initial {
  color: #ffffff;
  border-color: transparent;
  box-shadow: none;
}

/* Reviewer profile photos fill the avatar circle */
.review-card__avatar {
  overflow: hidden;
}

.review-card__avatar-img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.profile-page--wellness .contact-bar__btn--call {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}

.profile-page--wellness .contact-bar__btn--call:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-btn-hover);
}

.profile-page--wellness .contact-bar__btn--booking {
  background: #ffffff;
  color: #2a2826;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.profile-page--wellness .contact-bar__btn--booking:hover {
  background: var(--color-accent-subtle);
  border-color: rgba(95, 125, 99, 0.35);
  color: var(--color-accent-hover);
  box-shadow: var(--shadow-sm);
}

.profile-page--wellness .contact-bar--sticky {
  background: rgba(255, 253, 249, 0.94);
  border-top-color: var(--color-border);
  box-shadow: 0 -6px 24px rgba(42, 40, 38, 0.05);
}

.profile-page--wellness .contact-bar--sticky .contact-bar__btn {
  font-weight: 600;
  letter-spacing: -0.015em;
}

.profile-page--wellness .contact-bar--sticky .contact-bar__btn span {
  line-height: 1.2;
}

@media (max-width: 639px) {
  .profile-page--wellness .contact-bar--sticky .contact-bar__btn {
    font-size: 0.75rem;
    padding-inline: 0.25rem;
  }
}
