/* Heallmay — premium medical wellness */
:root {
  --bg: #ffffff;
  --alt-bg: #f7eff1;
  --highlight-bg: #f3e4e8;
  --pink: #e7a9b4;
  --btn: #1f5e5b;
  --btn-hover: #174947;
  --text: #2b2b2b;
  --text-muted: #6d6d6d;
  --radius-pill: 50px;
  --shadow-soft: 0 18px 48px rgba(43, 43, 43, 0.08);
  --shadow-card: 0 12px 40px rgba(231, 169, 180, 0.18);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-logo: "Great Vibes", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Wave backgrounds */
.wave-bg {
  position: relative;
  overflow: hidden;
}

.wave-bg::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(231, 169, 180, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 30%, rgba(243, 228, 232, 0.9), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.wave-bg > .container,
.wave-bg > .container-fluid {
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--alt-bg);
}

.section-highlight {
  background: var(--highlight-bg);
}

.section-padding {
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

/* Header */
.site-header {
  z-index: 1040;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 169, 180, 0.18);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.navbar-heallmay .container-fluid {
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .navbar-heallmay .container-fluid {
    flex-wrap: nowrap;
  }

  .navbar-heallmay #mainNav {
    flex: 1 1 auto;
    justify-content: center !important;
  }

  .btn-header-cta {
    margin-left: 0.5rem;
  }
}

.logo-heallmay {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--text) !important;
  line-height: 1;
  padding-top: 0.15rem;
}

.logo-heallmay--footer {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: #fff !important;
}

.nav-link-mock {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text) !important;
  padding: 0.5rem 0.6rem !important;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-link-mock:hover,
.nav-link-mock:focus {
  color: var(--btn) !important;
}

.nav-link-mock.dropdown-toggle::after {
  margin-left: 0.25rem;
  vertical-align: 0.15em;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(43, 43, 43, 0.06);
}

.nav-link-custom {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 0.5rem 0.65rem !important;
  transition: color 0.25s ease;
}

.nav-link-custom:hover,
.nav-link-custom:focus {
  color: var(--btn) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background: var(--highlight-bg);
  color: var(--btn);
}

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-pill-primary {
  background: var(--btn);
  border: 2px solid var(--btn);
  color: #fff;
}

.btn-pill-primary:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31, 94, 91, 0.28);
}

.btn-pill-outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
}

.btn-pill-outline:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
}

.btn-pill-ghost {
  background: #fff;
  border: 2px solid rgba(43, 43, 43, 0.15);
  color: var(--text);
}

.btn-pill-ghost:hover {
  border-color: var(--btn);
  color: var(--btn);
  transform: translateY(-2px);
}

.btn-pill-outline-light {
  background: #fff;
  border: 2px solid rgba(43, 43, 43, 0.22);
  color: var(--text);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-pill-outline-light:hover {
  border-color: var(--text);
  background: #fff;
  color: var(--text);
  transform: translateY(-2px);
}

.btn-see-more {
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.btn-see-more-ghost {
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 600;
  background: #fff !important;
  border: 2px solid rgba(43, 43, 43, 0.18) !important;
  color: var(--text) !important;
}

.btn-see-more-ghost:hover {
  border-color: var(--btn) !important;
  color: var(--btn) !important;
  background: #fff !important;
}

/* Hero — mock layout */
.hero-mock {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fdfbfc;
  overflow: hidden;
}

.z-hero {
  z-index: 2;
}

.hero-mock-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  /* Full-width mauve / blush wash (edge to edge) + organic wave art */
  background-color: #f9f4f7;
  background-image: linear-gradient(
      105deg,
      rgba(250, 245, 248, 0.98) 0%,
      rgba(241, 228, 236, 0.92) 12%,
      rgba(235, 214, 228, 0.78) 32%,
      rgba(232, 204, 218, 0.55) 52%,
      rgba(238, 218, 226, 0.65) 72%,
      rgba(252, 248, 250, 0.95) 100%
    ),
    url("../img/waves.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, cover;
  background-position: 0 0, 50% 35%;
  pointer-events: none;
}

.hero-mock-waves::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 85% at 0% 45%, rgba(232, 210, 224, 0.55), transparent 48%),
    radial-gradient(ellipse 90% 70% at 18% 70%, rgba(243, 228, 232, 0.5), transparent 50%),
    radial-gradient(ellipse 75% 60% at 100% 35%, rgba(231, 169, 180, 0.38), transparent 52%),
    radial-gradient(ellipse 55% 45% at 62% 88%, rgba(237, 220, 230, 0.4), transparent 48%);
  pointer-events: none;
}

.hero-mock-copy {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

@media (min-width: 992px) {
  .hero-mock-copy {
    padding-right: 1.5rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title .accent {
  color: var(--pink);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  color: var(--text-muted);
  max-width: 28rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-mock-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .hero-mock-visual {
    justify-content: flex-end;
  }
}

.hero-portrait-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hero-portrait-stack {
    max-width: none;
    width: min(100%, 520px);
    margin-right: 0;
  }
}

.hero-portrait-glow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 88%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(231, 169, 180, 0.5), rgba(243, 228, 232, 0.2) 45%, transparent 70%);
  filter: blur(4px);
  z-index: 0;
}

.hero-portrait-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: min(78vh, 640px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 48px rgba(231, 169, 180, 0.35));
}

/* White studio background blends into hero gradient */
.hero-portrait-img--cutout {
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 40px rgba(43, 43, 43, 0.08));
}

.hero-visual {
  position: relative;
  z-index: 2;
}

/* Intro — mock (full-width lavender / blush waves) */
.section-intro-mock {
  position: relative;
  overflow: hidden;
  background: #fdfbfc;
}

.intro-wave-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  background-color: #f7f2f8;
  background-image: linear-gradient(
      115deg,
      rgba(252, 249, 252, 0.98) 0%,
      rgba(241, 232, 242, 0.88) 15%,
      rgba(236, 224, 236, 0.72) 38%,
      rgba(243, 232, 238, 0.8) 62%,
      rgba(248, 244, 250, 0.95) 100%
    ),
    url("../img/waves.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, cover;
  background-position: 0 0, 50% 55%;
  pointer-events: none;
}

.intro-wave-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 95% 80% at 5% 40%, rgba(230, 214, 232, 0.5), transparent 50%),
    radial-gradient(ellipse 80% 65% at 95% 65%, rgba(231, 169, 180, 0.28), transparent 52%),
    radial-gradient(ellipse 70% 55% at 48% 90%, rgba(243, 228, 232, 0.45), transparent 48%);
  pointer-events: none;
}

.intro-copy-block {
  max-width: 48rem;
}

.intro-mock-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--text);
}

.intro-mock-lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 40rem;
}

.intro-mock-row {
  min-height: 0;
}

.intro-card-mock {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
}

@media (min-width: 768px) {
  .intro-card-mock {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

.intro-card-mock img {
  border-radius: 14px;
}

.intro-signature-mock {
  font-family: var(--font-logo);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--pink);
  line-height: 1.2;
  margin-top: 1rem;
  text-align: left;
  padding-left: 0.25rem;
}

.intro-doc-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.intro-doc-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.intro-doc-role {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.intro-doc-bio {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-doc-highlights {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.intro-doc-highlights li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
}

.intro-doc-check {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--btn);
  box-shadow: 0 0 0 3px rgba(31, 94, 91, 0.15);
}

/* Intro */
.intro-card {
  background: #fff;
  border-radius: 20px;
  padding: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.intro-card img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--pink);
  opacity: 0.9;
  margin-top: 1rem;
  text-align: right;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Services — mock wave band */
.section-services-mock {
  background: #fff;
  overflow: hidden;
}

.services-wave-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/waves.svg");
  background-repeat: no-repeat;
  background-position: 50% 40%;
  background-size: min(125%, 1500px);
  opacity: 0.45;
  pointer-events: none;
}

.services-v1 .swiper-slide {
  height: auto;
}

.service-card-v1 {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card-mock {
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(231, 169, 180, 0.22);
}

.service-card-mock .card-body {
  padding: 1.5rem 1.65rem 1.75rem;
}

.service-card-mock h3 {
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
}

.service-card-mock .card-img {
  aspect-ratio: 16/10;
}

.service-card-v1:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(231, 169, 180, 0.28);
}

.service-card-v1 .card-img {
  aspect-ratio: 16/11;
  object-fit: cover;
  width: 100%;
}

.service-card-v1 .card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-v1 h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card-v1 p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* Services — Version B (horizontal split on md+) */
.service-card-v2 {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(231, 169, 180, 0.25);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

@media (min-width: 768px) {
  .service-card-v2 {
    flex-direction: row;
    align-items: stretch;
    min-height: 220px;
  }
}

.service-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 94, 91, 0.35);
}

.service-card-v2 .v2-img {
  flex: 0 0 42%;
  min-height: 200px;
}

.service-card-v2 .v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-v2 .v2-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.service-card-v2 h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card-v2 p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.swiper-nav-custom {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.swiper-nav-custom .swiper-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--btn);
  background: #fff;
  color: var(--btn);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.swiper-nav-custom .swiper-btn:hover {
  background: var(--btn);
  color: #fff;
  transform: scale(1.05);
}

.swiper-nav-custom .swiper-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Before / After — split section */
.section-ba-split {
  position: relative;
  overflow: hidden;
}

.section-ba-split::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(231, 169, 180, 0.14), transparent 65%);
  pointer-events: none;
}

.ba-split-copy {
  position: relative;
  z-index: 1;
  max-width: 32rem;
}

@media (min-width: 992px) {
  .ba-split-copy {
    padding-right: 0.5rem;
  }
}

.ba-split-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.ba-split-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ba-split-list {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.ba-split-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.ba-split-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--btn);
  box-shadow: 0 0 0 3px rgba(31, 94, 91, 0.12);
}

.ba-split-visual {
  position: relative;
  z-index: 1;
}

.ba-split-frame {
  background: #fff;
  border-radius: 24px;
  padding: 0.65rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(231, 169, 180, 0.2);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .ba-split-frame {
    margin-right: 0;
    margin-left: auto;
    max-width: 420px;
  }

  .ba-split-hint {
    max-width: 420px;
  }
}

.ba-split-hint {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .ba-split-hint {
    margin-right: 0;
  }
}

/* Before / After slider */
.ba-wrap {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(231, 169, 180, 0.15);
  user-select: none;
}

.ba-inner {
  position: relative;
  aspect-ratio: 2 / 3;
  background: var(--highlight-bg);
  touch-action: none;
  cursor: ew-resize;
}

.ba-layer {
  position: absolute;
  inset: 0;
}

.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.ba-before-clip {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid #fff;
  z-index: 2;
}

.ba-before-clip img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--ba-full-w, 100%);
  max-width: none;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  background: transparent;
  z-index: 4;
  cursor: ew-resize;
  touch-action: none;
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--btn);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(31, 94, 91, 0.35);
  pointer-events: none;
  z-index: 1;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ba-labels .before {
  color: var(--text-muted);
}

.ba-labels .after {
  color: var(--btn);
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border: 1px solid rgba(231, 169, 180, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(231, 169, 180, 0.2);
}

.testimonial-stars {
  color: var(--pink);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--highlight-bg);
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Testimonials — horizontal scrollbar (Swiper) */
.swiper-testimonials .swiper-wrapper {
  align-items: stretch;
}

.swiper-testimonials .swiper-slide {
  height: auto;
  display: flex;
}

.swiper-testimonials .swiper-slide > .testimonial-card {
  flex: 1;
  width: 100%;
}

.swiper-testimonials {
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.swiper-testimonials .swiper-scrollbar.swiper-testimonials-scrollbar {
  position: relative;
  margin-top: 1.75rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: rgba(231, 169, 180, 0.22);
}

.swiper-testimonials .swiper-scrollbar-drag {
  border-radius: 100px;
  background: var(--btn);
  cursor: grab;
}

.swiper-testimonials .swiper-scrollbar-drag:active {
  cursor: grabbing;
  background: var(--btn-hover);
}

/* FAQ */
.accordion-item {
  border: none;
  margin-bottom: 0.75rem;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(43, 43, 43, 0.05);
}

.accordion-button {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  color: var(--text);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--highlight-bg);
  color: var(--btn);
}

.accordion-button::after {
  filter: brightness(0.4);
}

.accordion-body {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  background: #fff;
}

/* Contact */
.contact-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 320px;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 0.2rem rgba(231, 169, 180, 0.2);
}

/* Blog */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(231, 169, 180, 0.22);
}

.blog-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #2b2b2b 0%, #1f1f1f 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3rem;
}

.instagram-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .instagram-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.instagram-strip a {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.instagram-strip a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.instagram-strip a:hover img {
  transform: scale(1.08);
}

.instagram-strip a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 94, 91, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
}

.instagram-strip a:hover::after {
  opacity: 1;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--pink);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: background 0.25s, transform 0.2s;
}

.social-row a:hover {
  background: var(--btn);
  transform: translateY(-2px);
}

/* GSAP initial state helper */
.fade-up-prep {
  opacity: 0;
  transform: translateY(36px);
}

/* Navbar toggler */
.navbar-toggler {
  border-color: rgba(31, 94, 91, 0.35);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 94, 91, 0.15);
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem 0;
    border-top: 1px solid rgba(231, 169, 180, 0.2);
    margin-top: 0.75rem;
  }

  .nav-link-custom {
    padding: 0.65rem 0 !important;
  }
}

/* —— Contact page —— */
.page-contact {
  background: var(--bg);
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  background: #fdfbfc;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.contact-page-hero .intro-wave-bg {
  opacity: 1;
}

.contact-breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
}

.contact-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.contact-breadcrumb a:hover {
  color: var(--btn);
}

.contact-breadcrumb .sep {
  margin: 0 0.35rem;
  color: var(--pink);
}

.contact-page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--text);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-page-lead {
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-top: 1rem;
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(231, 169, 180, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(231, 169, 180, 0.2);
}

.contact-info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(31, 94, 91, 0.22);
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.contact-info-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--btn);
  transition: color 0.2s;
}

.contact-info-card__link:hover {
  color: var(--btn-hover);
}

.contact-main-visual {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.contact-main-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.contact-map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(231, 169, 180, 0.2);
  background: var(--highlight-bg);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: min(320px, 45vw);
  min-height: 260px;
  border: 0;
}

.contact-form-panel {
  background: #fff;
  border-radius: 22px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(231, 169, 180, 0.12);
}

.contact-form-panel .form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-form-panel .form-control,
.contact-form-panel .form-select {
  border-radius: 14px;
  padding: 0.8rem 1rem;
}

.contact-form-panel .form-check-input {
  border-color: rgba(43, 43, 43, 0.25);
}

.contact-form-panel .form-check-input:checked {
  background-color: var(--btn);
  border-color: var(--btn);
}

.contact-form-panel .form-check-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 0.2rem rgba(231, 169, 180, 0.25);
}

.contact-note-strip {
  border-radius: 20px;
  padding: 2rem 1.5rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(231, 169, 180, 0.2);
}

.contact-note-strip h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-note-strip h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.contact-note-strip p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.nav-link-mock.active {
  color: var(--btn) !important;
}

/* —— E-book / newsletter (home) —— */
.section-ebook {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    100deg,
    #fefdfb 0%,
    #faf6f3 28%,
    #f2f8f6 58%,
    #e8f2ef 100%
  );
}

.section-ebook__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 15% 50%, rgba(231, 169, 180, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 92% 30%, rgba(31, 94, 91, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.ebook-visual {
  max-width: 520px;
}

.ebook-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(12px 24px 40px rgba(43, 43, 43, 0.12)) drop-shadow(0 8px 16px rgba(31, 94, 91, 0.08));
}

.ebook-panel {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .ebook-panel {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.5rem;
  }
}

.ebook-kicker {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9a8578;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 992px) {
  .ebook-kicker {
    text-align: left;
  }
}

.ebook-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-align: center;
}

@media (min-width: 992px) {
  .ebook-title {
    text-align: left;
  }
}

.ebook-lead {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  text-align: center;
}

@media (min-width: 992px) {
  .ebook-lead {
    text-align: left;
  }
}

.ebook-input {
  border-radius: 14px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  padding: 0.85rem 1.1rem;
  font-size: 0.9375rem;
  background: #fff;
}

.ebook-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 0.2rem rgba(231, 169, 180, 0.2);
}

.btn-ebook {
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text);
  background: #f0c4b8;
  border: 2px solid #e8b5a8;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-ebook:hover {
  background: #eab6a8;
  border-color: #e0a898;
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(224, 168, 152, 0.35);
}
