/* ============================================================
   KÚR Health Spa — Homepage Styles
   ============================================================ */

/* ─── Hero Enhancements ─── */
.hero-gold-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 1.6rem 0;
}
.hero-stats-luxury {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2.5rem;
  max-width: 680px;
  flex-wrap: wrap;
}
.hero-stat-lux {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-lux:first-child { padding-left: 0; }
.hero-stat-lux:last-child  { border-right: none; }
.hero-stat-lux-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stat-lux-num em {
  font-style: normal;
  font-size: 1rem;
  vertical-align: top;
  margin-top: 0.4rem;
  display: inline-block;
  color: var(--teal);
}
.hero-stat-lux-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  display: block;
}

/* ─── Trust Strip ─── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-right: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--warm-white); }
.trust-item-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-icon-teal   { background: rgba(69,182,73,0.12);  color: var(--teal-dark); }
.trust-icon-green  { background: rgba(120,196,59,0.12);  color: var(--green-dark); }
.trust-icon-orange { background: rgba(247,148,29,0.12);  color: var(--orange-dark); }
.trust-icon-gold   { background: rgba(251,184,19,0.12);  color: var(--gold); }
.trust-item-text strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.trust-item-text span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ─── Dark Quote ─── */
.quote-dark {
  background: linear-gradient(135deg, #080E1C 0%, #0D1224 60%, #0F172A 100%);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(69,182,73,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(251,184,19,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.quote-dark-mark {
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  line-height: 0.55;
  color: var(--gold);
  opacity: 0.18;
  display: block;
  margin-bottom: 1.2rem;
  user-select: none;
}
.quote-dark-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}
.quote-dark-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.q-orn-line {
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.q-orn-line.right { background: linear-gradient(90deg, var(--gold), transparent); }
.q-orn-diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.quote-dark-attr {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ─── Section Header — Luxury ─── */
.section-lux-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-lux-header .lux-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.section-lux-header h2 { margin-bottom: 0; }
.section-lux-header .lux-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.2rem auto 1.4rem;
}
.lux-orn-line {
  height: 1px;
  width: 55px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.lux-orn-line.r { background: linear-gradient(90deg, var(--gold), transparent); }
.lux-orn-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.section-lux-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
/* Dark variant */
.section-lux-header.dark .lux-eyebrow { color: var(--gold-light); }
.section-lux-header.dark h2          { color: #fff; }
.section-lux-header.dark p           { color: rgba(255,255,255,0.55); }

/* ─── Services — Editorial 2×2 ─── */
.services-section {
  background: var(--dark);
  padding: var(--section-pad) 0;
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(69,182,73,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.services-editorial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-editorial-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  height: 480px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.service-editorial-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-editorial-card:hover img { transform: scale(1.07); }
.service-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,13,26,0.96) 0%,
    rgba(7,13,26,0.55) 45%,
    rgba(7,13,26,0.12) 100%
  );
  transition: background 0.45s ease;
}
.service-editorial-card:hover .service-editorial-overlay {
  background: linear-gradient(
    to top,
    rgba(7,13,26,0.98) 0%,
    rgba(7,13,26,0.7)  50%,
    rgba(7,13,26,0.25) 100%
  );
}
.service-editorial-num {
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  user-select: none;
  z-index: 2;
}
.service-editorial-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  z-index: 3;
}
.service-editorial-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  border: 1px solid;
}
.ed-tag-teal   { background: rgba(69,182,73,0.15);  color: var(--teal-light);  border-color: rgba(69,182,73,0.3); }
.ed-tag-green  { background: rgba(120,196,59,0.15);  color: #b6e07c;            border-color: rgba(120,196,59,0.3); }
.ed-tag-orange { background: rgba(247,148,29,0.15);  color: #fbb55a;            border-color: rgba(247,148,29,0.3); }
.ed-tag-gold   { background: rgba(251,184,19,0.15);  color: var(--gold-light);  border-color: rgba(251,184,19,0.3); }

.service-editorial-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.service-editorial-price {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.9rem;
  font-weight: 500;
}
.service-editorial-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}
.service-editorial-card:hover .service-editorial-desc {
  max-height: 120px;
  opacity: 1;
}
.service-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
}
.service-editorial-link i { font-size: 0.7rem; }
.service-editorial-card:hover .service-editorial-link { gap: 0.9rem; color: #fff; }

/* Mobile: always show desc */
@media (max-width: 768px) {
  .service-editorial-desc { max-height: 120px; opacity: 1; }
}

/* ─── About Teaser Enhanced ─── */
.about-section {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}
.about-float {
  position: absolute;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.6rem;
  z-index: 4;
}
.about-float.bl {
  bottom: -1rem;
  left: -1.5rem;
}
.about-float.tr {
  top: 2.5rem;
  right: -1.5rem;
}
.about-float-chip {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.2rem;
}
.about-float-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.about-float-sub {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.15rem;
}
.about-float-stars { color: var(--gold); font-size: 0.85rem; }

.about-serif-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--teal);
  padding-left: 1.2rem;
}
.about-content-wrap { padding-left: 0.5rem; }

/* ─── Therapy Stats Strip ─── */
.therapy-strip {
  background: linear-gradient(135deg, #0D1224 0%, #0F172A 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.therapy-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(69,182,73,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 50%, rgba(251,184,19,0.05) 0%, transparent 45%);
  pointer-events: none;
}
.therapy-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.therapy-strip-item {
  text-align: center;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.therapy-strip-item:last-child { border-right: none; }
.therapy-strip-item:hover { background: rgba(69,182,73,0.04); }
.ts-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.ts-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.ts-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  display: block;
}

/* ─── Reviews — Dark ─── */
.reviews-dark-section {
  background: linear-gradient(180deg, #070D1A 0%, #0D1224 100%);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.reviews-dark-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69,182,73,0.05) 0%, transparent 65%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.reviews-dark-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,184,19,0.04) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}
/* Override default review-tab styling for dark context */
.reviews-dark-section .reviews-tabs { margin-bottom: 2.5rem; }
.reviews-dark-section .review-tab {
  background: transparent;
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
}
.reviews-dark-section .review-tab.active,
.reviews-dark-section .review-tab:hover {
  background: rgba(69,182,73,0.12);
  border-color: var(--teal);
  color: var(--teal-light);
}
/* Override default review-card styling for dark context */
.reviews-dark-section .reviews-grid { gap: 1.5rem; }
.reviews-dark-section .review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid rgba(69,182,73,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.reviews-dark-section .review-card:hover {
  background: rgba(255,255,255,0.07);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.reviews-dark-section .reviewer-name  { color: #fff; }
.reviews-dark-section .review-text    { color: rgba(255,255,255,0.7); }
.reviews-dark-section .review-stars   { color: var(--gold); }
.reviews-dark-section .google-badge   { color: rgba(255,255,255,0.3); }
.reviews-dark-section .review-category-tag.tag-magnetic { background: rgba(251,184,19,0.12); color: var(--gold-light); }
.reviews-dark-section .review-category-tag.tag-massage  { background: rgba(120,196,59,0.12); color: #b6e07c; }
.reviews-dark-section .review-category-tag.tag-salt     { background: rgba(69,182,73,0.12); color: var(--teal-light); }
.reviews-dark-section .review-category-tag.tag-infrared { background: rgba(247,148,29,0.12); color: #fbb55a; }
.reviews-dark-section .review-category-tag.tag-general  { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45); }
.reviews-dark-section .reviewer-avatar {
  background: linear-gradient(135deg, rgba(69,182,73,0.3) 0%, rgba(69,182,73,0.15) 100%);
  border: 1px solid rgba(69,182,73,0.3);
}
.reviews-dark-section .aggregate-badge {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.reviews-dark-section .aggregate-badge .rating { color: #fff; }
.reviews-dark-section .aggregate-badge .count  { color: rgba(255,255,255,0.45); border-color: rgba(255,255,255,0.1); }

/* Review quote accent */
.reviews-dark-section .review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

/* ─── Packages Enhanced ─── */
.packages-section {
  background: var(--dark-mid);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.packages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(69,182,73,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(251,184,19,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.package-cards-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.package-card-luxury {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.2rem;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(12px);
}
.package-card-luxury:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.35); }
.package-card-luxury.featured {
  background: rgba(69,182,73,0.08);
  border-color: rgba(69,182,73,0.4);
  box-shadow: 0 0 0 1px rgba(69,182,73,0.15), 0 20px 50px rgba(0,0,0,0.3);
}
.package-card-luxury .package-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 0.3rem 1.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.pkg-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.4rem;
}
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}
.pkg-credits {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.8rem;
}
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pkg-price sup { font-size: 1.3rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.pkg-save {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  display: block;
}
.pkg-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 1.5rem 0;
}
.pkg-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.pkg-features li i { color: var(--teal); font-size: 0.65rem; flex-shrink: 0; }
.package-card-luxury .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ─── Inquiry Form ─── */
.inquiry-section {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.inquiry-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69,182,73,0.05) 0%, transparent 65%);
  top: -150px; left: -150px;
  pointer-events: none;
}
.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-card-lux {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card-lux:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}
.contact-icon-lux {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.ci-teal   { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.ci-green  { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.ci-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.contact-text-lux .ci-chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.15rem;
}
.contact-text-lux .ci-value {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  display: block;
}
.contact-text-lux .ci-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Map ─── */
.map-section { position: relative; }
.map-wrap-lux {
  position: relative;
  line-height: 0;
}
.map-wrap-lux iframe {
  display: block;
  width: 100%;
  border: none;
}
.map-info-card {
  position: absolute;
  top: 2rem; left: 2rem;
  background: rgba(15,23,42,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  z-index: 10;
  max-width: 270px;
}
.map-info-logo {
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 1.1rem;
}
.map-info-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.map-info-addr {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.map-info-hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.map-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.04em;
}
.map-directions-link:hover { color: var(--teal-light); }

/* ─── Responsive Additions ─── */
@media (max-width: 1024px) {
  .services-editorial { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner  { grid-template-columns: repeat(2,1fr); }
  .therapy-strip-grid { grid-template-columns: repeat(2,1fr); }
  .package-cards-luxury { max-width: 600px; }
  .about-img-wrap img { height: 440px; }
}
@media (max-width: 768px) {
  .services-editorial { grid-template-columns: 1fr; }
  .service-editorial-card { height: 380px; }
  .trust-strip-inner { grid-template-columns: repeat(2,1fr); }
  .trust-item { padding: 1.1rem 1rem; }
  .about-float.tr { display: none; }
  .about-float.bl { bottom: 1rem; left: 1rem; }
  .about-img-wrap img { height: 360px; }
  .therapy-strip-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .package-cards-luxury { grid-template-columns: 1fr; max-width: 420px; }
  .map-info-card { display: none; }
  .hero-stat-lux { min-width: 90px; padding: 0 1rem; }
  .hero-stat-lux-num { font-size: 1.7rem; }
  .quote-dark { padding: 5rem 0; }
  .quote-dark-mark { font-size: 6rem; }
}
@media (max-width: 480px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .trust-item:last-child { border-bottom: none; }
  .service-editorial-card { height: 320px; border-radius: var(--radius-lg); }
  .service-editorial-title { font-size: 1.45rem; }
  .service-editorial-content { padding: 1.5rem; }
  .hero-stats-luxury { gap: 0; }
  .hero-stat-lux { min-width: 80px; padding: 0 0.75rem; }
  .therapy-strip-grid { grid-template-columns: repeat(2,1fr); }
  .about-content-wrap { padding-left: 0; }
}
