*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #d63384;
  --pink-dark:  #9c1a5a;
  --pink-light: #fce4ec;
  --bg:         #faf8f4;
  --text:       #2d2d2d;
  --muted:      #6b6b6b;
  --white:      #ffffff;
  --radius:     10px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --max-width:  900px;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Lora', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--pink-dark); text-decoration: none;
  white-space: nowrap;
}
.nav-brand span { color: var(--pink); }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: .4rem;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: .3s;
}

.nav-links { display: flex; list-style: none; }
.nav-links li a {
  display: block; padding: .5rem .9rem;
  color: var(--muted); text-decoration: none;
  font-size: .87rem; font-weight: 500;
  border-radius: 6px; transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--pink); background: var(--pink-light); }

.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); min-width: 185px;
  padding: .4rem 0; list-style: none; z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { padding: .5rem 1.2rem; border-radius: 0; font-size: .85rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
  color: var(--white); text-align: center;
  min-height: 280px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3.5rem 1.5rem 5.5rem;
}
.hero-icon { font-size: 2.2rem; margin-bottom: .7rem; opacity: .9; }
.hero h1 {
  font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 600;
  line-height: 1.25; margin-bottom: .4rem;
}
.hero h1 em { font-style: italic; color: #f8bbd0; }
.hero p { font-size: .92rem; opacity: .85; font-weight: 300; letter-spacing: .04em; }

/* ── CONTENT ── */
.content-wrap {
  max-width: var(--max-width);
  margin: -2rem auto 3rem;
  padding: 0 1.5rem;
}
.content-wrap-wide {
  max-width: 1100px;
  margin: -2rem auto 3rem;
  padding: 0 1.5rem;
}

.card {
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
  margin-bottom: 1.5rem;
}
.card-split { display: flex; align-items: stretch; }
.card-img-col { flex: 0 0 40%; max-width: 40%; }
.card-img-col img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { flex: 1; padding: 2rem 2.5rem; }
.card-body-full { padding: 2rem 2.5rem; }

.section-title {
  font-family: 'Lora', serif; font-size: 1.4rem;
  color: var(--pink-dark); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .7rem;
}
.section-title::after {
  content: ''; flex: 1; height: 2px;
  background: var(--pink-light); border-radius: 2px;
}

.card-body p, .card-body-full p {
  line-height: 1.85; color: #444; font-size: .95rem; margin-bottom: .9rem;
}
.card-body strong, .card-body-full strong { color: var(--pink-dark); }

.signature {
  margin-top: 1.5rem; padding-top: 1.2rem;
  border-top: 1px solid var(--pink-light);
  font-family: 'Lora', serif; font-size: 1.05rem;
  color: var(--pink-dark); font-style: italic;
}

/* ── INFO BOXES ── */
.info-grid {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.info-box {
  background: var(--white); border-radius: var(--radius);
  padding: 1.4rem 1.2rem; text-align: center;
  box-shadow: var(--shadow); border-top: 3px solid var(--pink);
}
.info-box .icon { font-size: 1.8rem; margin-bottom: .6rem; }
.info-box h4 { font-size: .92rem; font-weight: 600; color: var(--pink-dark); margin-bottom: .3rem; }
.info-box p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ── TWO COLUMN GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ── SERVICE LIST ── */
.service-item {
  padding: .85rem 0;
  border-bottom: 1px solid var(--pink-light);
  display: flex; gap: 1rem; align-items: baseline;
}
.service-item:last-child { border-bottom: none; }
.service-name { font-weight: 600; color: var(--text); font-size: .95rem; min-width: 200px; }
.service-desc { color: var(--muted); font-size: .87rem; line-height: 1.5; }

/* ── TIMELINE ── */
.timeline { padding: .5rem 0; }
.timeline-item {
  display: flex; gap: 1.2rem; padding: .9rem 0;
  border-bottom: 1px solid var(--pink-light);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-date { font-weight: 600; color: var(--pink); font-size: .85rem; min-width: 120px; padding-top: .15rem; }
.timeline-content h5 { font-weight: 600; font-size: .93rem; margin-bottom: .2rem; color: var(--text); }
.timeline-content p { font-size: .85rem; color: var(--muted); margin: 0; }

/* ── CERTIFICATES ── */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cert-grid img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* ── PRICES ── */
.price-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; border-bottom: 1px solid var(--pink-light);
}
.price-item:last-child { border-bottom: none; }
.price-label { font-size: .97rem; color: var(--text); }
.price-label small { display: block; color: var(--muted); font-size: .82rem; margin-top: .2rem; }
.price-value { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 600; color: var(--pink); }

.price-note {
  background: var(--pink-light); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; margin-top: 1.5rem;
}
.price-note p { font-size: .88rem; color: var(--pink-dark); line-height: 1.7; margin-bottom: .5rem; }
.price-note p:last-child { margin-bottom: 0; }

/* ── CONTACT ── */
.contact-info { text-align: center; }
.contact-info p { margin-bottom: .5rem; font-size: .97rem; color: #444; }
.contact-info a { color: var(--pink); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.contact-divider {
  font-family: 'Lora', serif; font-size: 1rem; font-weight: 600;
  color: var(--pink-dark); margin: 1.2rem 0 .8rem;
}

/* ── BLINK ── */
.blink { animation: blink 1s ease-in-out infinite; color: var(--pink); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .15; } }

/* ── LEGAL ── */
.legal h4 { color: var(--pink-dark); margin: 1.2rem 0 .5rem; font-size: 1rem; font-weight: 600; }
.legal p { line-height: 1.85; color: #444; font-size: .93rem; margin-bottom: .8rem; }

/* ── FOOTER ── */
footer {
  background: var(--pink-dark); color: rgba(255,255,255,.7);
  text-align: center; padding: 1.5rem;
  font-size: .82rem; letter-spacing: .03em; margin-top: auto;
}
footer a { color: rgba(255,255,255,.85); text-decoration: none; margin: 0 .5rem; }
footer a:hover { color: #fff; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); padding: .5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { border-radius: 0; padding: .7rem 1.5rem; }
  .dropdown-menu { position: static; box-shadow: none; padding-left: 1rem; display: none; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }

  .hero { padding: 2.5rem 1rem 4.5rem; }
  .hero h1 { font-size: 1.7rem; }

  .card-split { flex-direction: column; }
  .card-img-col { flex: none; max-width: 100%; }
  .card-img-col img { max-height: 260px; object-fit: cover; }
  .grid-2 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .card-body, .card-body-full { padding: 1.5rem; }
  .service-item { flex-direction: column; gap: .3rem; }
  .service-name { min-width: unset; }
}
