/* =============================================================
   Catherine The Plumber — Shared Stylesheet
   index.html · my-work.html · 404.html · coming-soon.html
   ============================================================= */

/* ── VARIABLES & RESET ──────────────────────────────────────── */
:root {
  --pink:       #f472b6;
  --pink-light: #fce7f3;
  --pink-mid:   #fbcfe8;
  --blue:       #7dd3fc;
  --blue-light: #e0f2fe;
  --blue-mid:   #bae6fd;
  --white:      #ffffff;
  --off-white:  #fdf8fc;
  --text:       #3b2a36;
  --muted:      #9d7a8e;
  --accent:     #e879a0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 5%;
  height: 70px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pink-mid);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2000;
}
.nav-logo em { font-style: italic; color: var(--accent); }
.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2rem;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent) !important; }

/* Hamburger — hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2000;
  padding: 0;
}
.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s;
}
.whatsapp-btn:hover { background: #1ebe5d; }
.whatsapp-btn svg { width: 1.3rem; height: 1.3rem; flex-shrink: 0; }

/* ── SHARED BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  background: var(--pink);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(244,114,182,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,114,182,0.5); }

.btn-secondary {
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  border: 2px solid var(--blue);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--blue-light); }

.btn-submit {
  width: 100%;
  background: linear-gradient(90deg, var(--pink), #c084fc);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 0.85rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── SHARED SECTION STYLES ──────────────────────────────────── */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 540px;
  font-weight: 500;
}

/* ── HERO (index) ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -8%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(125,211,252,0.25) 0%, transparent 65%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,114,182,0.2) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-text { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--pink-mid);
  color: var(--accent);
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
  box-shadow: 0 2px 12px rgba(244,114,182,0.15);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 1.3rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-desc {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.25s ease both;
}
.hero-service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-card {
  background: var(--white);
  border-radius: 2.5rem;
  padding: 1rem 1rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(244,114,182,0.15), 0 4px 20px rgba(125,211,252,0.15);
  max-width: 320px;
  border: 1.5px solid var(--pink-mid);
}
.hero-card img {
  width: 100%;
  border-radius: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.hero-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; font-weight: 500; }
.availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #16a34a;
  font-size: 0.85rem;
  font-weight: 700;
}
.dot {
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ── EMERGENCY BANNER ───────────────────────────────────────── */
.emergency-banner {
  background: linear-gradient(90deg, var(--pink) 0%, #c084fc 100%);
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.emergency-banner p { color: var(--white); font-weight: 600; font-size: 1rem; }
.emergency-banner a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s;
}
.emergency-banner a:hover { border-color: white; }

/* ── SERVICES ───────────────────────────────────────────────── */
.services { background: var(--white); }
.services-header { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--off-white);
  border-radius: 1.5rem;
  padding: 2rem 1.8rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(244,114,182,0.12);
  border-color: var(--pink-mid);
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; font-weight: 500; }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--pink-light) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-blob {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  border-radius: 62% 38% 50% 50% / 45% 55% 45% 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  box-shadow: 0 20px 50px rgba(244,114,182,0.25);
  position: relative;
}
.about-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: inherit;
}
.about-tagline {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  font-weight: 700;
  color: var(--text);
  font-size: 0.88rem;
  border: 1.5px solid var(--pink-mid);
  white-space: nowrap;
}
.about-tagline span { color: var(--accent); }
.about-text p { color: #5a3f52; line-height: 1.8; margin-bottom: 1rem; font-weight: 500; font-size: 1.02rem; }
.about-values { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--text);
  font-weight: 600;
}
.value-check {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1.5px solid var(--pink-mid);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(244,114,182,0.12);
  transform: translateY(-3px);
}
.stars { color: var(--pink); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  color: #5a3f52;
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 500;
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.author-loc { color: var(--muted); font-size: 0.82rem; font-weight: 500; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item { border-bottom: 1.5px solid var(--pink-mid); padding-bottom: 1.5rem; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-question { font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 0.6rem; }
.faq-answer { color: var(--muted); font-size: 0.97rem; line-height: 1.75; font-weight: 500; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact { background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 560px;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); line-height: 1.75; margin-bottom: 2rem; font-weight: 500; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1.5px solid var(--pink-mid);
}
.contact-detail strong { color: var(--text); display: block; font-size: 0.82rem; margin-bottom: 0.15rem; font-weight: 700; }
.contact-detail span { color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.contact-detail a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact-detail a:hover { text-decoration: underline; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--pink-mid);
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { min-height: 110px; resize: vertical; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--text);
  padding: 2.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.footer-logo em { font-style: italic; color: var(--pink); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { display: inline-flex; align-items: center; gap: 0.35rem; color: rgba(255,255,255,0.5); font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
footer p { color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 500; }
footer a { color: var(--pink-light); text-decoration: none; }

/* ── MY WORK PAGE ───────────────────────────────────────────── */
.work-hero {
  padding: 8rem 5% 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--white) 100%);
}
.work-hero .section-label { margin-bottom: 0.75rem; }
.work-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.work-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.7;
}
.gallery-section {
  padding: 3rem 5% 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.photo-card {
  background: white;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59,42,54,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(232,121,160,0.2);
}
.photo-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.photo-card:hover .photo-wrap img { transform: scale(1.04); }
.photo-caption { padding: 1rem 1.2rem; font-size: 0.92rem; font-weight: 600; color: var(--muted); line-height: 1.5; }
.before-after-card { grid-column: span 2; }
.before-after-label {
  padding: 1rem 1.2rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.before-after-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 0.75rem 0.75rem;
}
.ba-item { position: relative; }
.ba-item .photo-wrap { aspect-ratio: 3/4; border-radius: 0.6rem; overflow: hidden; }
.ba-tag {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.4rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.more-banner { text-align: center; padding: 2rem 5% 4rem; color: var(--muted); font-size: 0.95rem; font-weight: 500; }

/* ── 404 PAGE ───────────────────────────────────────────────── */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
  position: relative;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: floatUp linear infinite;
}
.bubble:nth-child(1) { width: 80px;  height: 80px;  background: var(--pink); left: 5%;  animation-duration: 12s; animation-delay: 0s;  bottom: -100px; }
.bubble:nth-child(2) { width: 50px;  height: 50px;  background: var(--blue); left: 20%; animation-duration: 9s;  animation-delay: 2s;  bottom: -100px; }
.bubble:nth-child(3) { width: 120px; height: 120px; background: var(--pink); left: 38%; animation-duration: 15s; animation-delay: 4s;  bottom: -100px; }
.bubble:nth-child(4) { width: 40px;  height: 40px;  background: var(--blue); left: 60%; animation-duration: 10s; animation-delay: 1s;  bottom: -100px; }
.bubble:nth-child(5) { width: 90px;  height: 90px;  background: var(--pink); left: 75%; animation-duration: 13s; animation-delay: 3s;  bottom: -100px; }
.bubble:nth-child(6) { width: 60px;  height: 60px;  background: var(--blue); left: 88%; animation-duration: 11s; animation-delay: 5s;  bottom: -100px; }
.pipe-wrap { position: relative; margin-bottom: 1.5rem; animation: fadeDown 0.7s ease both; }
.pipe-svg { width: 160px; filter: drop-shadow(0 8px 20px rgba(244,114,182,0.25)); }
.drip-drop { animation: drip 2s ease-in-out infinite; transform-origin: center top; }
.card {
  background: var(--white);
  border-radius: 2.5rem;
  padding: 3.5rem 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  border: 1.5px solid var(--pink-mid);
  box-shadow: 0 20px 60px rgba(244,114,182,0.15), 0 4px 20px rgba(125,211,252,0.12);
  position: relative;
  z-index: 2;
  animation: fadeUp 0.6s 0.1s ease both;
}
.error-code {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 18vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.2rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 0.8rem; }
.error-title em { font-style: italic; color: var(--accent); }
.error-desc { color: var(--muted); font-size: 1rem; line-height: 1.7; font-weight: 500; margin-bottom: 2rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.call-nudge { font-size: 0.88rem; color: var(--muted); font-weight: 500; margin-top: 1.5rem; }
.call-nudge a { color: var(--accent); font-weight: 700; text-decoration: none; }
.call-nudge a:hover { text-decoration: underline; }
.brand { position: relative; z-index: 2; margin-top: 2rem; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--muted); }
.brand em { font-style: italic; color: var(--accent); }

/* ── COMING SOON PAGE ───────────────────────────────────────── */
.page-coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
  position: relative;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: drift ease-in-out infinite alternate;
}
.blob-1 { width: 500px; height: 500px; background: var(--pink); top: -15%; left: -10%; animation-duration: 10s; }
.blob-2 { width: 400px; height: 400px; background: var(--blue); bottom: -10%; right: -10%; animation-duration: 13s; animation-delay: 2s; }
.blob-3 { width: 300px; height: 300px; background: #c084fc; top: 40%; left: 55%; animation-duration: 9s; animation-delay: 1s; }
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 620px;
  width: 100%;
  animation: fadeUp 0.8s ease both;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text); margin-bottom: 3rem; opacity: 0.7; }
.logo em { font-style: italic; color: var(--accent); }
.tap-wrap { margin-bottom: 2rem; animation: wobble 4s ease-in-out infinite; }
.tap-svg { width: 110px; filter: drop-shadow(0 8px 24px rgba(244,114,182,0.3)); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--pink-mid);
  color: var(--accent);
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(244,114,182,0.15);
  letter-spacing: 0.04em;
}
.subtitle { color: var(--muted); font-size: 1.05rem; line-height: 1.75; font-weight: 500; max-width: 480px; margin-bottom: 2.5rem; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--pink), var(--blue)); border-radius: 2px; margin: 0 auto 2.5rem; }
.launching-soon { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; font-weight: 700; color: var(--accent); margin-bottom: 2.5rem; }
.contact-card {
  background: var(--white);
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  width: 100%;
  border: 1.5px solid var(--pink-mid);
  box-shadow: 0 12px 40px rgba(244,114,182,0.12);
  margin-bottom: 2rem;
}
.contact-card p { color: var(--muted); font-size: 0.97rem; font-weight: 500; margin-bottom: 1.3rem; line-height: 1.6; }
.contact-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.services-peek { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }
.service-chip { background: var(--pink-light); border: 1px solid var(--pink-mid); color: var(--accent); font-size: 0.82rem; font-weight: 700; padding: 0.35rem 0.9rem; border-radius: 2rem; }

/* ── SHARED MISC ────────────────────────────────────────────── */
.fb-logo { display: inline-block; width: 1.1em; height: 1.1em; vertical-align: middle; margin-right: 0.25em; }

/* ── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg);      opacity: 0.18; }
  50%  { opacity: 0.12; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}
@keyframes wobble {
  0%, 100% { transform: rotate(-2deg); }
  50%       { transform: rotate(2deg); }
}
@keyframes drip {
  0%   { transform: scaleY(0.6) translateY(-4px); opacity: 0.5; }
  60%  { transform: scaleY(1.2) translateY(6px);  opacity: 1; }
  80%  { transform: scaleY(0.9) translateY(8px);  opacity: 1; }
  100% { transform: scaleY(0.6) translateY(-4px); opacity: 0.5; }
}

/* ── MOBILE NAV ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 30px rgba(59,42,54,0.15);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1500;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; width: 100%; text-align: center; display: block; }
  .nav-cta { display: inline-block; width: auto; }

  .menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background-color: var(--accent); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background-color: var(--accent); }
}

/* ── HOME GALLERY STRIP (index) ─────────────────────────────── */
.home-gallery { text-align: center; }
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.home-gallery-grid .photo-wrap {
  border-radius: 1.2rem;
  box-shadow: 0 4px 20px rgba(59,42,54,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.home-gallery-grid .photo-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(232,121,160,0.2);
}
.home-gallery-grid .photo-wrap:hover img { transform: scale(1.04); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-visual { margin-top: 2.5rem; }
  .about { grid-template-columns: 1fr; }
  .about-blob { margin: 0 auto 1rem; }
  .home-gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .before-after-card { grid-column: span 1; }
}

@media (max-width: 480px) {
  .contact-card { padding: 1.5rem; }
}