/* =========================================================
   CFStudio — Services (shared)
   Makes all service pages match your Newborn CSS
   Primary classes: .svc-*
   Compat aliases: .service-page equivalents
   ========================================================= */

/* ---- Scope & tokens ---- */
.svc, .svc * { box-sizing: border-box; }
.svc,
.service-page{ /* compat: apply tokens to both root containers */
  --brand:#E06BAF; --brand-2:#ff9ac6; --ink:#222; --muted:#666;
  --bg:#fffafb; --card:#fff; --soft:#fff1f6; --ring:rgba(241,65,135,.22);
  --radius:18px; --border:#f1e1ea; --shadow:0 12px 28px rgba(241,65,135,.16);
  background:var(--bg);
  color: var(--ink);
  font: 16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
}

/* Links + container */
.svc a,
.service-page a { color:#a3134a; text-decoration:none; }
.svc .wrap,
.service-page .wrap { max-width:1320px; margin:auto; padding:18px; }

/* =========================================================
   HERO (svc-hero  ↔  .service-page .hero/.ov)
   ========================================================= */
.svc-hero,
.service-page .hero{
  position:relative; border-radius:28px; overflow:hidden; box-shadow:var(--shadow);
}
.svc-hero img,
.service-page .hero img{
  width:100%; height:clamp(280px,38vw,520px); object-fit:cover; display:block;
}
.svc-hero .overlay,
.service-page .hero .ov{
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(255,247,251,.65),rgba(255,255,255,.85));
  display:grid; place-items:center; text-align:center; padding:20px;
}
.svc-hero h1,
.service-page .hero h1{
  font-size:clamp(28px,5vw,44px); margin:0 0 8px; color:#a3134a;
}
.svc-hero p,
.service-page .hero p{
  max-width:820px; color:var(--muted); font-size:clamp(15px,2.2vw,18px); margin:0 auto 16px;
}
.svc-cta{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.svc-btn{
  border:0;
  border-radius:999px;
  padding:12px 24px;
  font-weight:700;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}
.svc-btn.primary{
  background:#E06BAF;
  color:#fff;
  border:2px solid #E06BAF;
  box-shadow:0 10px 24px rgba(255,77,166,.25);
}
.svc-btn.primary:hover{ filter:brightness(.95); }
.svc-btn.ghost{
  background:#fff;
  border:2px solid #ffd6e8;
  color:#a3134a;
  box-shadow:0 8px 22px rgba(255,77,166,.18);
}
.svc-btn.ghost:hover{
  background:#fff0f6;
  border-color:#ffb7d4;
  color:#E06BAF;
}
.svc-book{
  padding:10px 18px;
  font-weight:700;
  font-size:0.95rem;
}
@media (max-width:600px){
  .svc-hero img,
  .service-page .hero img{
    height:360px;
  }
  .svc-hero p,
  .service-page .hero p{
    margin-bottom:12px;
  }
}

/* =========================================================
   WHY (svc-why/svc-chip  ↔  .service-page .why/.chip)
   ========================================================= */
.svc-why,
.service-page .why{
  margin:26px 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}
.svc-chip,
.service-page .chip{
  background:#fff;
  border-radius:20px;
  padding:18px 20px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  border:1px solid #f5dbe8;
  box-shadow:0 12px 28px rgba(241,65,135,.10);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-chip:hover,
.service-page .chip:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(241,65,135,.16);
  border-color:#f0c1d6;
}
.svc-chip i,
.service-page .chip i{
  font-style:normal;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg,#ffe7f1,#fff);
  color:#E06BAF;
  font-size:20px;
  border:1px solid #f3d0e2;
  box-shadow:0 8px 18px rgba(241,65,135,.12);
}
.svc-chip b,
.service-page .chip b{
  display:block;
  font-size:18px;
  color:#3a2e33;
  margin-bottom:4px;
}
.svc-muted,
.service-page .muted{
  color:#6b5a63;
}

/* =========================================================
   GALLERY (svc-gallery  ↔  .service-page .gallery)
   ========================================================= */
.svc-section-head,
.service-page .svc-section-head{
  text-align:center;
  margin:14px auto 18px;
  max-width:860px;
  padding:0 6px;
}
.svc-section-icon,
.service-page .svc-section-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  background:#ffe7f1;
  color:#E06BAF;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  box-shadow:0 10px 22px rgba(241,65,135,.18);
  margin:0 auto 10px;
}
.svc-section-head h2,
.service-page .svc-section-head h2{
  margin:0;
  font-family:"Playfair Display", serif;
  font-weight:600;
  font-size:clamp(26px,4.2vw,40px);
  color:#a3134a;
  letter-spacing:.2px;
}
.svc-section-head.no-icon,
.service-page .svc-section-head.no-icon{
  margin-top:10px;
}
.svc-section-head.no-icon .svc-section-icon,
.service-page .svc-section-head.no-icon .svc-section-icon{
  display:none;
}
.svc-section-head h2 em,
.service-page .svc-section-head h2 em{
  font-style:italic;
  color:#E06BAF;
}
.svc-section-head p,
.service-page .svc-section-head p{
  margin:6px auto 0;
  color:var(--muted);
  font-size:clamp(14px,2vw,18px);
}
.svc-gallery,
.service-page .gallery{
  margin:18px 0 8px;
  column-count:3;
  column-gap:14px;
}
@media (max-width:900px){
  .svc-gallery, .service-page .gallery{ column-count:2; }
}
@media (max-width:600px){
  .svc-gallery, .service-page .gallery{ column-count:1; }
}
.svc-gallery figure,
.service-page figure{
  position:relative;
  margin:0 0 14px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  display:inline-block;
  width:100%;
  break-inside:avoid;
}
.svc-gallery img,
.service-page figure img{
  width:100%;
  height:auto;
  object-fit:contain;
  display:block;
  background:#fff;
  transition:transform .3s ease;
}
.svc-gallery figure:hover img,
.service-page figure:hover img{ transform:scale(1.04); }
.svc-gallery figcaption,
.service-page figure figcaption{
  position:absolute; left:8px; bottom:8px; background:rgba(255,255,255,.86);
  padding:4px 8px; border-radius:999px; font-weight:800; color:#a3134a; font-size:12px;
}

/* =========================================================
   EXPECT + PREP (svc-expect / svc-card / svc-steps / svc-step)
   ↔  .service-page .grid-2 / .card / .steps / .steps .step
   ========================================================= */
.svc-expect,
.service-page .grid-2{
  margin:26px 0; display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
@media (max-width:900px){
  .svc-expect, .service-page .grid-2{ grid-template-columns:1fr; }
}
.svc-card,
.service-page .card{
  background:#fff; border-radius:18px; padding:16px; box-shadow:var(--shadow);
}
.svc-steps,
.service-page .steps{
  display:grid; gap:12px; counter-reset:step;
}
.svc-step,
.service-page .steps .step{
  display:flex; gap:12px; align-items:flex-start;
}
.svc-step::before,
.service-page .steps .step::before{
  counter-increment:step; content:counter(step);
  width:28px; height:28px; border-radius:50%;
  background:#ffe7f1; color:#a3134a; display:grid; place-items:center; font-weight:900;
}

/* =========================================================
   FAQ (details)
   ========================================================= */
.svc-faq details,
.service-page details{
  background:#fff; border-radius:14px; padding:12px 14px; box-shadow:0 10px 20px rgba(0,0,0,.06);
}
.svc-faq details+details,
.service-page details+details{ margin-top:10px; }
.svc-faq summary,
.service-page summary{ cursor:pointer; font-weight:800; color:#a3134a; outline:none; }
.svc-list,
.service-page ul.clean{ margin:10px 0 0 0; padding-left:18px; color:var(--muted); }

/* =========================================================
   PACKAGES (svc-pack / svc-price / svc-badge)
   ↔  #packages .packs / .price / .badge
   ========================================================= */
.svc-pack,
.service-page #packages .packs{
  display:grid; grid-template-columns:repeat(3,1fr); gap:12px;
}
@media (max-width:900px){
  .svc-pack, .service-page #packages .packs{ grid-template-columns:1fr; }
}
.svc-pack .svc-card,
.service-page #packages .card{
  background:#fff;
  border-radius:18px;
  padding:22px;
  border:1px solid #f1dbe6;
  box-shadow:0 8px 24px rgba(255,77,161,0.08);
  display:flex;
  flex-direction:column;
  min-height:100%;
  text-align:center;
}
.svc-title{
  margin:0 0 6px;
  color:#E06BAF;
  font-size:22px;
  font-weight:700;
}
.svc-price,
.service-page .price{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
}
.svc-price b,
.service-page .price b{ font-size:32px; }
.svc-badge,
.service-page .badge{
  display:none;
}
.svc-pack .svc-list,
.service-page #packages ul.clean{
  list-style:none;
  padding-left:0;
  margin:12px 0 18px;
  color:var(--muted);
  display:flex;
  flex-direction:column;
  align-items:center;
}
.svc-pack .svc-list li,
.service-page #packages ul.clean li{
  margin:8px 0;
  display:flex;
  gap:8px;
  align-items:flex-start;
  justify-content:center;
}
.svc-pack .svc-list li::before,
.service-page #packages ul.clean li::before{
  content:"\2713";
  color:var(--brand);
  font-weight:700;
  margin-top:1px;
}
.svc-pack .svc-book,
.service-page #packages .svc-book{
  margin-top:auto;
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  background:#E06BAF;
  border-color:#E06BAF;
  color:#fff;
  box-shadow:0 10px 24px rgba(255,77,166,.25);
  align-self:center;
}
.svc-pack .svc-book:hover,
.service-page #packages .svc-book:hover{
  background:#E06BAF;
  border-color:#E06BAF;
  filter:brightness(.95);
}

/* =========================================================
   CTA RIBBON (svc-ribbon  ↔  .service-page .ribbon)
   ========================================================= */
.svc-ribbon,
.service-page .ribbon{
  display:none;
}
.svc-ribbon h3,
.service-page .ribbon h3{ margin:0; color:#a3134a; }


