﻿/* =========================================================
   Dentystka Monika Gerc - Piaseczno
   Paleta kolorów inspirowana logo (różowy motyl)
   ========================================================= */

:root {
  /* Paleta główna */
  --pink-primary: #E6007E;       /* Główny różowy z logo */
  --pink-deep: #C4006B;          /* Ciemniejszy różowy */
  --pink-soft: #FFE4F1;          /* Delikatny pudrowy róż */
  --pink-mist: #FFF5FB;          /* Tło sekcji */
  --purple-accent: #8E2A8E;      /* Fioletowy akcent */
  --lavender: #F3E5F5;           /* Lawendowe tło */
  --gold: #D4AF37;               /* Złoty akcent (nagrody) */
  --ink: #2B0F2B;                /* Tekst główny */
  --ink-soft: #5A3D5A;           /* Tekst drugorzędny */
  --white: #FFFFFF;
  --cream: #FFF9FC;
  --border: #F0D6E5;

  /* Cienie */
  --shadow-sm: 0 2px 8px rgba(230, 0, 126, 0.08);
  --shadow-md: 0 8px 24px rgba(230, 0, 126, 0.12);
  --shadow-lg: 0 20px 60px rgba(230, 0, 126, 0.18);
  --shadow-glow: 0 0 40px rgba(230, 0, 126, 0.25);

  /* Typografia */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Layout */
  --max-width: 1240px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--pink-primary); color: var(--white); }

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  min-height: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); letter-spacing: 0; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: 0; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { color: var(--ink-soft); font-size: 1.02rem; }

a { color: var(--pink-primary); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--pink-deep); }

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

.accent-gradient {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
  padding-right: 0.18em;
  padding-bottom: 0.12em;
  margin-right: -0.05em;
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform .2s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
  color: var(--white);
}

:where(a, button, input, select, textarea, .btn, .nav-toggle, .faq-q, .service-card):focus-visible {
  outline: 3px solid rgba(230, 0, 126, 0.42);
  outline-offset: 4px;
}

/* ===================== NAVBAR ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 5px 32px;
  background: rgba(255, 249, 252, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(230, 0, 126, 0.08);
  transition: padding .3s ease, box-shadow .3s ease;
}
.nav.scrolled { padding: 4px 32px; box-shadow: var(--shadow-sm); }

.nav-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 232px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s ease;
}
.nav-brand .logo-img {
  height: 78px;
  width: auto;
  max-width: 265px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition: transform 0.3s ease;
  filter: none;
}
.nav-brand:hover .logo-img {
  transform: scale(1.008);
}
@media (max-width: 768px) {
  .nav-brand { min-width: 160px; }
  .nav-brand .logo-img { height: 58px; max-width: 196px; }
}

.nav-menu {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-menu-cta { display: none; }
.nav-menu a {
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 100px;
  transition: all .25s ease;
  position: relative;
}
.nav-menu a:hover { background: var(--pink-soft); color: var(--pink-primary); }
.nav-menu a.active { background: var(--pink-primary); color: var(--white); }

.nav-cta {
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--pink-primary);
  border: 2px solid var(--pink-primary);
}
.btn-outline:hover { background: var(--pink-primary); color: var(--white); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--pink-primary); color: var(--pink-primary); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 80px;
  overflow: visible;
  background:
    radial-gradient(ellipse at top right, var(--pink-soft) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, var(--lavender) 0%, transparent 55%),
    var(--cream);
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text {
  grid-column: 1;
  grid-row: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pink-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--pink-primary); box-shadow: 0 0 0 4px rgba(230,0,126,0.15); animation: pulse 2s infinite; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  line-height: 1.08;
  margin-bottom: 24px;
  overflow: visible;
}
.hero h1 .accent {
  display: inline;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.08;
  padding-right: 0.18em;
  margin-right: -0.05em;
  color: var(--pink-primary);
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 24px;
  margin-top: -28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.7vw, 1.45rem);
  font-weight: 700;
  color: var(--pink-primary);
  line-height: 1.15;
  white-space: nowrap;
}
.hero-stat .label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  aspect-ratio: 1;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 0, 126, 0.9), rgba(142, 42, 142, 0.86));
  border-radius: 55% 45% 45% 55% / 55% 45% 55% 45%;
  box-shadow: var(--shadow-glow);
}
@keyframes morph {
  0%,100% { border-radius: 55% 45% 45% 55% / 55% 45% 55% 45%; }
  50%     { border-radius: 45% 55% 55% 45% / 40% 60% 40% 60%; }
}
.hero-visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(75, 22, 74, 0.13);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.hero-visual-card.c1 { top: 8%; left: -6%; animation-delay: 0s; max-width: 210px; }
.hero-visual-card.c2 { top: 60%; right: -6%; bottom: auto; animation-delay: 2s; max-width: 198px; }
.hero-visual-card.c3 { top: auto; left: -2%; bottom: 6%; animation-delay: 4s; max-width: 220px; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.hero-visual-card .icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 228, 241, 0.9);
  display: grid; place-items: center;
  color: var(--pink-primary);
  flex-shrink: 0;
}
.hero-visual-card .txt { font-size: 0.8rem; line-height: 1.45; }
.hero-visual-card .txt strong { display: block; font-size: 0.92rem; color: var(--ink); font-weight: 700; }

/* Floating butterflies */
.butterfly-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
  animation: butterflyFloat 14s ease-in-out infinite;
}
@keyframes butterflyFloat {
  0%   { transform: translate(0, 0) rotate(-8deg); }
  25%  { transform: translate(40px, -30px) rotate(12deg); }
  50%  { transform: translate(-20px, 40px) rotate(-15deg); }
  75%  { transform: translate(30px, 20px) rotate(8deg); }
  100% { transform: translate(0, 0) rotate(-8deg); }
}
.butterfly-wings { animation: wingFlap 1.2s ease-in-out infinite; transform-origin: center; }
@keyframes wingFlap {
  0%,100% { transform: scaleX(1); }
  50%     { transform: scaleX(0.4); }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 110px 32px;
  position: relative;
}
.section-sm { padding: 70px 32px; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.75); }
.section-tinted { background: var(--pink-mist); }
.section-lavender {
  background: linear-gradient(180deg, var(--cream) 0%, var(--lavender) 100%);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--pink-primary);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.08rem; }

/* ===================== CARDS / SERVICES ===================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--purple-accent));
  opacity: 0.34;
  transition: opacity .3s ease, height .3s ease;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  border-color: rgba(230, 0, 126, 0.18);
  box-shadow: 0 18px 44px rgba(75, 22, 74, 0.12);
}
.service-card:hover::before { opacity: 1; height: 6px; }
.service-card:hover h3 { color: var(--ink); }
.service-card:hover p { color: var(--ink-soft); }
.service-card:hover .service-link { color: var(--pink-deep); }
.service-card:hover .service-icon {
  background: linear-gradient(145deg, #fff7fb 0%, #f8edf8 100%);
  color: var(--pink-deep);
  border-color: rgba(230, 0, 126, 0.18);
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffe5f2 0%, #f7d9fb 100%);
  display: grid; place-items: center;
  color: var(--pink-primary);
  margin-bottom: 24px;
  transition: all .3s ease;
  border: 1px solid rgba(230, 0, 126, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 24px rgba(230, 0, 126, 0.08);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 12px; transition: color .3s ease; }
.service-card p { font-size: 0.96rem; transition: color .3s ease; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--pink-primary);
  transition: color .3s ease;
}

/* ===================== FEATURES ===================== */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features-split .eyebrow {
  font-family: var(--font-script);
  color: var(--pink-primary);
  font-size: 1.3rem;
  margin-bottom: 8px;
  display: block;
}
.features-split h1 {
  overflow: visible;
}
.about-hero-title {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.2;
  margin-top: 12px;
  margin-bottom: 22px;
  padding-bottom: 0.12em;
  overflow: visible;
}
.features-list { margin-top: 32px; display: grid; gap: 20px; }
.feature-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.feature-item:hover {
  border-color: rgba(230, 0, 126, 0.24);
  box-shadow: 0 12px 30px rgba(75, 22, 74, 0.08);
}
.feature-item .check {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.feature-item strong { display: block; margin-bottom: 4px; color: var(--ink); }
.feature-item span { font-size: 0.94rem; color: var(--ink-soft); }

/* Artwork / illustration block */
.artwork-box {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.artwork-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}
.photo-story-card {
  background: var(--white);
  border: 1px solid rgba(230, 0, 126, 0.12);
  box-shadow: 0 22px 62px rgba(75, 22, 74, 0.14);
}
.photo-story-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(43, 15, 43, 0.5));
}
.photo-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.photo-story-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(43, 15, 43, 0.46);
}
.photo-story-card figcaption strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 6px;
}
.photo-story-card figcaption span {
  display: block;
  max-width: 360px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.section-title-offset { margin-top: 12px; }
.copy-spacing { margin-top: 18px; }
.copy-spacing-sm { margin-top: 14px; }
.copy-spacing-md { margin-top: 16px; }
.features-list-compact { margin-top: 28px; }

.media-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 60px rgba(230, 0, 126, 0.25);
}
.media-frame--purple {
  box-shadow: 0 20px 60px rgba(142, 42, 142, 0.25);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-frame--chair img { object-position: center 42%; }

.price-tag {
  margin-top: 14px;
  font-weight: 700;
  color: var(--pink-primary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.process-step { text-align: center; }
.process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E6007E, #8E2A8E);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}
.process-step p {
  font-size: 0.94rem;
  margin-top: 8px;
}

/* ===================== TRUST ===================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.trust-card {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.trust-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-primary), var(--purple-accent));
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 100px;
  background: var(--pink-mist);
  color: var(--pink-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.trust-card p {
  font-size: 0.96rem;
  margin-bottom: 20px;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 32px 30px;
  position: relative;
  overflow: hidden;
}
.footer-wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(230,0,126,0.4), transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(142,42,142,0.4), transparent 50%);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 50px;
}
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.05rem; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.78); font-size: 0.94rem; }
.footer-col a:hover { color: var(--pink-primary); }

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 8px 13px 8px 9px;
  border-radius: 24px;
  background: rgba(255, 249, 252, 0.94);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.09);
}
.footer-logo-img {
  width: auto;
  height: 56px;
  max-width: min(235px, 100%);
  object-fit: contain;
  display: block;
}
.footer-contact { display: grid; gap: 12px; font-size: 0.94rem; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item svg { flex-shrink: 0; color: var(--pink-primary); margin-top: 2px; }
.footer-contact-item span,
.footer-contact-item a { color: rgba(255,255,255,0.82); }
.footer-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.8);
  transition: all .3s ease;
}
.footer-socials a:hover { background: var(--pink-primary); color: var(--white); transform: translateY(-2px); }

/* ===================== MOBILE QUICK ACTIONS ===================== */
.mobile-action-bar {
  display: none;
}
.mobile-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
}
.mobile-action-call {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
}
.mobile-action-book {
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.mobile-action-book:hover,
.mobile-action-book:focus-visible {
  color: var(--white);
}
.mobile-action-call:hover,
.mobile-action-call:focus-visible {
  color: var(--pink-primary);
}

/* ===================== CTA STRIP ===================== */
.cta-strip {
  background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
  color: var(--white);
  padding: 70px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before,
.cta-strip::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-strip::before { top: -150px; left: -150px; }
.cta-strip::after { bottom: -150px; right: -150px; }
.cta-strip h2 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-strip p { color: rgba(255,255,255,0.9); margin-bottom: 26px; position: relative; z-index: 1; }
.cta-strip .btn {
  position: relative;
  z-index: 1;
  background: var(--white);
  color: var(--pink-primary);
}
.cta-strip .btn:hover { background: var(--ink); color: var(--white); }

/* ===================== PAGE HEADER ===================== */
.page-header {
  padding: 118px 32px 40px;
  text-align: center;
  background: transparent;
  position: relative;
  overflow: visible;
}
.page-header .eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--pink-primary);
  margin-bottom: 10px;
  display: inline-block;
}
.page-header h1 { margin-bottom: 20px; }
.page-header p { max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 18px;
}
.breadcrumb a:hover { color: var(--pink-primary); }

.page-header.page-header-media {
  padding: 116px 32px 20px;
  text-align: left;
}
.page-header-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.page-header-copy {
  max-width: 700px;
}
.page-header-copy p {
  margin: 0;
}
.page-header-copy .breadcrumb {
  justify-content: flex-start;
}
.page-header-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 32px;
  background: var(--pink-soft);
  border: 1px solid rgba(230, 0, 126, 0.12);
  box-shadow: 0 22px 62px rgba(75, 22, 74, 0.14);
}
.page-header-photo.is-portrait {
  aspect-ratio: 4 / 5;
  max-width: 340px;
  justify-self: end;
}
.page-header-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(43, 15, 43, 0.36));
}
.page-header-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.page-header-photo.is-portrait img {
  object-position: center 52%;
}
.page-header-photo figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 16px rgba(43, 15, 43, 0.45);
  max-width: min(92%, 330px);
}

@media (min-width: 961px) {
  .page-header:not(.page-header-media) + .section {
    padding-top: 44px;
  }

  .page-header.page-header-media + .section {
    padding-top: 44px;
  }

  .page-gallery .page-header + .section {
    padding-top: 34px;
  }
}

/* ===================== SERVICES DETAILED LIST ===================== */
.detail-list {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.detail-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.detail-item:hover {
  border-color: var(--pink-primary);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.detail-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--pink-soft);
  font-weight: 700;
  width: 60px;
}
.detail-item h4 { margin-bottom: 6px; font-size: 1.12rem; }
.detail-item p { font-size: 0.94rem; margin: 0; }
.detail-item .price {
  font-weight: 700;
  color: var(--pink-primary);
  font-size: 1.1rem;
  white-space: nowrap;
}

/* ===================== GALLERY ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender));
  cursor: zoom-in;
}
.gallery-item:hover,
.gallery-item:focus-within,
.gallery-item:focus-visible { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  text-align: center;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:nth-child(1) img,
.gallery-item:nth-child(5) img,
.gallery-item:nth-child(11) img {
  object-position: center 34%;
}
.gallery-item:nth-child(7) img,
.gallery-item:nth-child(9) img {
  object-position: center 30%;
}
.gallery-item:nth-child(8) img,
.gallery-item:nth-child(13) img {
  object-position: center 22%;
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,15,43,0) 52%, rgba(43,15,43,0.66) 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 1;
  transition: opacity .3s ease;
}
.gallery-item-overlay h4 { color: var(--white); }
.gallery-item-overlay p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-top: 4px; }
.section-note {
  text-align: center;
  margin-top: 50px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.section-note-compact {
  margin-top: 40px;
  font-size: 0.92rem;
}

.gallery-large {
  aspect-ratio: 16/10;
  grid-column: span 2;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  grid-template-columns: minmax(44px, 72px) minmax(0, 1fr) minmax(44px, 72px);
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(43, 15, 43, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}
.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-lightbox-frame {
  position: relative;
  justify-self: center;
  display: grid;
  gap: 14px;
  max-width: min(100%, 1180px);
}
.gallery-lightbox-image {
  max-width: min(100%, 1180px);
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  object-fit: contain;
  background: var(--cream);
}
.gallery-lightbox-caption {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.96rem;
}
.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  transform: translateY(-2px);
  background: var(--pink-primary);
  color: var(--white);
}
.gallery-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
}
.gallery-lightbox-prev,
.gallery-lightbox-next {
  width: 52px;
  height: 52px;
  justify-self: center;
  font-size: 1.9rem;
  line-height: 1;
}
body.lightbox-open { overflow: hidden; }

/* ===================== CONTACT FORM ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 252, 0.98)),
    var(--white);
  color: var(--ink);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(230, 0, 126, 0.12);
  box-shadow: 0 18px 46px rgba(75, 22, 74, 0.1);
  position: relative;
  overflow: hidden;
}
.contact-info-box::after {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(230, 0, 126, 0.06);
  bottom: -100px; right: -100px;
}
.contact-info-box h3 { color: var(--ink); margin-bottom: 12px; }
.contact-info-box > p { color: var(--ink-soft); margin-bottom: 32px; }
.contact-info-list { display: grid; gap: 22px; position: relative; z-index: 1; }
.contact-info-list-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list-item .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffeaf4 0%, #f8edf8 100%);
  color: var(--pink-primary);
  border: 1px solid rgba(230, 0, 126, 0.1);
  display: grid; place-items: center;
}
.contact-info-list-item strong { display: block; color: var(--ink); margin-bottom: 4px; }
.contact-info-list-item span, .contact-info-list-item a { color: var(--ink-soft); font-size: 0.95rem; }
.contact-info-list-item a:hover { color: var(--pink-primary); }

.form {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-title {
  margin-bottom: 10px;
}
.contact-form-intro {
  color: var(--ink-soft);
  margin-bottom: 26px;
  font-size: 0.98rem;
}
.form-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}
.assurance-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(230, 0, 126, 0.12);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}
.assurance-pill svg {
  flex: 0 0 auto;
  color: var(--pink-primary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}
.form-group label .req { color: var(--pink-primary); }
.form-hint {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}
.form-consent {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all .25s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(230, 0, 126, 0.1);
}
.form-group textarea { min-height: 112px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; }
.contact-fallback-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 24px;
}
.mini-contact-pill {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(230, 0, 126, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 252, 0.96));
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.mini-contact-pill svg {
  color: var(--pink-primary);
  flex-shrink: 0;
}
.mini-contact-pill:hover {
  border-color: rgba(230, 0, 126, 0.32);
  color: var(--pink-deep);
  box-shadow: 0 10px 24px rgba(75, 22, 74, 0.08);
  transform: translateY(-1px);
}
.form-success {
  display: none;
  background: var(--pink-soft);
  color: var(--pink-deep);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  margin-top: 14px;
}
.form-success.show { display: block; }

/* ===================== OPEN HOURS ===================== */
.hours-grid {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.hours-grid-tight {
  margin-top: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.94rem;
}
.hours-row span:last-child { text-align: right; }
.hours-row:last-child { border-bottom: none; }
.hours-row.closed { opacity: 0.6; }
.hours-row.today { color: var(--white); font-weight: 700; }

/* ===================== MAP ===================== */
.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  height: 440px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(1.1); }
.contact-action-card {
  text-align: center;
}
.contact-action-card .service-icon {
  margin: 0 auto 20px;
}

/* ===================== AWARDS RIBBON ===================== */
.awards-strip {
  padding: 50px 32px;
  background: var(--lavender);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.awards-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.award-item {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.award-item .medal {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #F4C430);
  display: grid; place-items: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ===================== TEAM ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender));
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.team-photo--doctor img {
  object-position: center 68%;
}
.team-photo--group {
  background:
    linear-gradient(135deg, rgba(255, 228, 241, 0.78), rgba(246, 224, 255, 0.72)),
    var(--pink-mist);
}
.team-photo--group::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: url("../assets/photos/team-2.jpg") center 36% / cover no-repeat;
  filter: blur(18px);
  opacity: 0.26;
  transform: scale(1.06);
}
.team-photo--group img {
  object-fit: contain;
  object-position: center center;
  z-index: 1;
}
.team-info { padding: 24px; text-align: center; }
.team-info h3 { margin-bottom: 4px; font-size: 1.2rem; }
.team-info .role {
  font-family: var(--font-script);
  color: var(--pink-primary);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.team-info p { font-size: 0.92rem; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item.open { border-color: var(--pink-primary); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
  text-align: left;
}
.faq-q .plus {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-primary);
  display: grid; place-items: center;
  font-size: 1.2rem;
  transition: transform .3s ease;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--pink-primary); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 26px 22px; }
.faq-a p { font-size: 0.96rem; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .52s cubic-bezier(.2,.8,.2,1), transform .52s cubic-bezier(.2,.8,.2,1);
}
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
html.js .reveal.delay-1 { transition-delay: 0.06s; }
html.js .reveal.delay-2 { transition-delay: 0.12s; }
html.js .reveal.delay-3 { transition-delay: 0.18s; }
html.js .reveal.delay-4 { transition-delay: 0.24s; }
html.js .page-gallery .gallery-item.reveal {
  opacity: 1;
  transform: none;
}

/* ===================== FLOATING BUTTERFLIES BG ===================== */
.butterflies-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.butterfly-bg-item {
  position: absolute;
  opacity: 0.22;
  filter: drop-shadow(0 5px 12px rgba(230, 0, 126, 0.12));
  animation: drift 36s linear infinite;
}
@keyframes drift {
  0%   { transform: translate(0, 0) rotate(0); }
  25%  { transform: translate(46px, -34px) rotate(14deg); }
  50%  { transform: translate(-34px, 48px) rotate(-12deg); }
  75%  { transform: translate(54px, 24px) rotate(10deg); }
  100% { transform: translate(0, 0) rotate(0); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1120px) {
  .nav {
    gap: 12px;
    padding: 12px 20px;
  }
  .nav-menu { display: none; }
  .nav > .nav-cta {
    display: inline-flex;
    flex-shrink: 0;
    margin-left: auto;
  }
  .nav-toggle {
    display: block;
    flex-shrink: 0;
  }
  body.mobile-menu-open::before {
    content: "";
    position: fixed;
    inset: 90px 0 0;
    z-index: 80;
    pointer-events: none;
    background: rgba(43, 15, 43, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .nav.mobile-open .nav-menu {
    display: flex;
    position: absolute;
    top: calc(100% + 10px); left: 16px; right: 16px;
    z-index: 101;
    flex-direction: column;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 252, 0.98)),
      var(--white);
    padding: 14px;
    gap: 6px;
    box-shadow: 0 22px 54px rgba(75, 22, 74, 0.16);
    border: 1px solid rgba(230, 0, 126, 0.12);
    border-radius: 24px;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }
  .nav.mobile-open .nav-cta { display: none; }
  .nav.mobile-open .nav-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 16px;
    padding: 13px 16px;
  }
  .nav.mobile-open .nav-menu-cta {
    display: block;
    margin-top: 8px;
  }
  .nav.mobile-open .nav-menu-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-accent));
    color: var(--white);
    box-shadow: var(--shadow-md);
  }

  .hero { padding: 130px 20px 60px; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-text,
  .hero-visual,
  .hero-stats {
    grid-column: 1;
    grid-row: auto;
  }
  .hero-visual {
    max-width: min(400px, 88vw);
    margin: -8px auto 0;
    justify-self: center;
  }
  .hero-visual-card.c1 { top: 5%; left: 2%; }
  .hero-visual-card.c2 { top: 62%; right: 0; bottom: auto; }
  .hero-visual-card.c3 { display: none; }
  .hero-stats { gap: 24px; margin-top: 0; }
  .hero-stat .num { font-size: 1rem; white-space: normal; }

  .section { padding: 70px 20px; }
  .features-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 30px; }
  .contact-info-box, .form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-large { grid-column: span 1; aspect-ratio: 4/5; }
  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 12px;
    padding: 18px;
  }
  .gallery-lightbox-frame {
    grid-column: 1 / -1;
    order: 1;
  }
  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    order: 2;
    width: 48px;
    height: 48px;
  }
  .gallery-lightbox-prev { justify-self: end; }
  .gallery-lightbox-next { justify-self: start; }
  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
  }
  .detail-item { grid-template-columns: 1fr; text-align: left; }
  .detail-item .num { font-size: 1.6rem; width: auto; }
  .page-header { padding: 116px 20px 48px; }
  .page-header.page-header-media {
    padding: 116px 20px 48px;
  }
  .page-header-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .page-header-copy {
    max-width: none;
  }
  .page-header-copy p {
    margin: 0 auto;
  }
  .page-header-copy .breadcrumb {
    justify-content: center;
  }
  .page-header-photo,
  .page-header-photo.is-portrait {
    width: min(430px, 88vw);
    max-width: 100%;
    aspect-ratio: 4 / 3;
    justify-self: center;
  }
}

@media (max-width: 960px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .nav > .nav-cta {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 145;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(230, 0, 126, 0.14);
    border-radius: 999px;
    background: rgba(255, 249, 252, 0.92);
    box-shadow: 0 16px 42px rgba(43, 15, 43, 0.16);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
  }

  body.lightbox-open .mobile-action-bar {
    display: none;
  }

  body.mobile-menu-open .mobile-action-bar {
    display: none;
  }

  body.page-contact {
    padding-bottom: 0;
  }

  body.page-privacy {
    padding-bottom: 0;
  }

  body.page-contact .mobile-action-bar {
    display: none;
  }

  body.page-privacy .mobile-action-bar {
    display: none;
  }

  body.page-contact .butterflies-bg,
  body.page-privacy .butterflies-bg {
    opacity: 0.28;
  }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
  .hero {
    min-height: auto;
    padding: 112px 20px 38px;
  }
  .hero-container { gap: 28px; }
  .hero-eyebrow {
    font-size: 0.74rem;
    padding: 8px 14px;
    margin-bottom: 18px;
  }
  .hero h1 { margin-bottom: 18px; }
  .hero p.lead {
    font-size: 1.02rem;
    margin-bottom: 0;
  }
  .hero-cta-row {
    display: none;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 22px;
  }
  .hero-stat { flex: 1 1 100%; }
  .hero-stat .label { font-size: 0.72rem; }
  .hero-visual {
    max-width: min(292px, 78vw);
    margin: -2px auto 58px;
  }
  .hero-visual-card { display: none; }
  .contact-info-box,
  .form {
    padding: 28px 22px;
    border-radius: 26px;
  }
  .form-assurance {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }
  .contact-fallback-actions {
    grid-template-columns: 1fr;
  }
  .butterfly-bg-item {
    opacity: 0.12 !important;
    filter: none;
  }
  .butterfly-bg-item:nth-child(n+8) {
    display: none;
  }
  .gallery-lightbox-image {
    max-height: 72vh;
  }
}

/* ===================== HERO PHOTO ===================== */
.hero-photo {
  position: absolute;
  inset: 9%;
  border-radius: 55% 45% 45% 55% / 55% 45% 55% 45%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(230, 0, 126, 0.35), inset 0 0 0 6px rgba(255,255,255,0.5);
  z-index: 2;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(230, 0, 126, 0.15));
  pointer-events: none;
}

/* ===================== BUTTERFLIES AROUND FLOATING CARDS ===================== */
.hero-visual-card {
  z-index: 5;
}
.hero-visual .card-butterfly {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 4px 10px rgba(230, 0, 126, 0.4));
}
.hero-visual .card-butterfly.cb1 {
  top: 2%;
  left: 14%;
  width: 42px;
  animation: cardBfFloat1 9s ease-in-out infinite;
}
.hero-visual .card-butterfly.cb2 {
  top: 36%;
  right: 2%;
  width: 38px;
  animation: cardBfFloat2 11s ease-in-out infinite;
}
.hero-visual .card-butterfly.cb3 {
  bottom: 20%;
  left: 32%;
  width: 44px;
  animation: cardBfFloat3 10s ease-in-out infinite;
}
.hero-visual .card-butterfly.cb4 {
  top: 50%;
  left: 6%;
  width: 34px;
  animation: cardBfFloat2 13s ease-in-out infinite;
  animation-delay: -2s;
}
.hero-visual .card-butterfly.cb5 {
  top: 18%;
  right: 28%;
  width: 36px;
  animation: cardBfFloat1 12s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes cardBfFloat1 {
  0%,100% { transform: translate(0,0) rotate(-8deg); }
  50%     { transform: translate(30px,-30px) rotate(18deg); }
}
@keyframes cardBfFloat2 {
  0%,100% { transform: translate(0,0) rotate(10deg); }
  50%     { transform: translate(-25px,25px) rotate(-16deg); }
}
@keyframes cardBfFloat3 {
  0%,100% { transform: translate(0,0) rotate(-12deg); }
  50%     { transform: translate(20px,-25px) rotate(20deg); }
}

/* ===================== BUTTERFLIES ON SERVICE CARDS ===================== */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card .card-bf {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity .4s ease;
  filter: drop-shadow(0 3px 8px rgba(230, 0, 126, 0.35));
}
.service-card:hover .card-bf { opacity: 0.95; }
.service-card .card-bf.bf-tl { top: -14px; right: 10px; width: 32px; animation: miniBf1 8s ease-in-out infinite; }
.service-card .card-bf.bf-br { bottom: 20%; right: -12px; width: 28px; animation: miniBf2 10s ease-in-out infinite; }
@keyframes miniBf1 {
  0%,100% { transform: translate(0,0) rotate(-10deg); }
  50%     { transform: translate(12px,-12px) rotate(15deg); }
}
@keyframes miniBf2 {
  0%,100% { transform: translate(0,0) rotate(8deg); }
  50%     { transform: translate(-14px,14px) rotate(-12deg); }
}
.service-card:hover .card-bf.bf-tl,
.service-card:hover .card-bf.bf-br { filter: drop-shadow(0 3px 8px rgba(255, 255, 255, 0.6)) brightness(1.2); }

/* ===================== PAGE HEADERS — invisible tile, butterflies via global bg ===================== */
/* Old static .bf-decor butterflies hidden — global .butterflies-bg drifts through naturally */
.page-header .bf-decor { display: none !important; }
.page-header > span,
.page-header > h1,
.page-header > p,
.page-header > .breadcrumb { position: relative; z-index: 2; }

/* ===================== PHOTO GALLERY CARDS ===================== */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--pink-soft);
  transition: transform .4s ease, box-shadow .4s ease;
}
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card .photo-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

/* Photo grid */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.photo-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}
@media (max-width: 960px) {
  .photo-grid-3, .photo-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .photo-grid-3, .photo-grid-4, .photo-grid-2 { grid-template-columns: 1fr; }
  .hero-visual-card { font-size: 0.75rem; padding: 10px 14px; max-width: 180px !important; }
  .hero-visual-card .icon { width: 32px; height: 32px; }
  .hero-visual-card .txt strong { font-size: 0.82rem; }
  .hero-visual-card .txt { font-size: 0.72rem; }
}

/* Portrait of Monika with butterfly wall */
.monika-portrait {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.monika-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.monika-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(230, 0, 126, 0.2));
}

@media screen and (prefers-reduced-motion: reduce), (update: slow) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .butterflies-bg,
  .hero-visual .card-butterfly,
  .service-card .card-bf {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .gallery-item:hover,
  .gallery-item:focus-within,
  .gallery-item:focus-visible {
    transform: none !important;
  }

  .gallery-lightbox,
  .gallery-lightbox * {
    transition: none !important;
  }
}
