/* ── TOKENS ──────────────────────────────── */
:root {
  --purple-deep:   #7B2D8B;
  --purple-mid:    #9B59B6;
  --purple-light:  #C39BD3;
  --purple-pale:   #F0E6F6;
  --pink-warm:     #E8A0BF;
  --pink-light:    #FAD4E4;
  --rose:          #D98CA8;
  --gold:          #C9A96E;
  --white:         #FFFFFF;
  --off-white:     #FDF8FF;
  --text-dark:     #2C1A35;
  --text-mid:      #5A3A6B;
  --text-light:    #8B6FA0;
  --gradient-hero: linear-gradient(135deg, #EDD5F7 0%, #F5E0EE 40%, #E8D5F5 100%);
  --gradient-card: linear-gradient(145deg, #F8F0FF, #FFF0F7);
  --shadow-soft:   0 4px 24px rgba(123,45,139,0.10);
  --shadow-card:   0 8px 32px rgba(123,45,139,0.13);
  --radius:        16px;
  --radius-sm:     10px;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── NAVBAR ──────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155,89,182,0.15);
  box-shadow: 0 2px 16px rgba(123,45,139,0.07);
}
.navbar {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  background: linear-gradient(135deg, var(--purple-deep), var(--rose));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-title {
  font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--text-light); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.nav-links li a {
  padding: 8px 14px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-mid); transition: all 0.2s;
}
.nav-links li a:hover, .nav-links li a.active {
  background: var(--purple-pale); color: var(--purple-deep);
}
.nav-cta {
  background: linear-gradient(135deg, var(--purple-mid), var(--rose)) !important;
  color: white !important; padding: 9px 20px !important;
  border-radius: 50px !important; font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(155,89,182,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(155,89,182,0.45) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--purple-mid); border-radius: 2px; transition: 0.3s; }

/* ── FLASH MESSAGES ──────────────────────── */
.flash {
  max-width: 1200px; margin: 12px auto; padding: 12px 20px;
  border-radius: var(--radius-sm); font-size: 0.9rem;
}
.flash-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.flash-error { background: #fce4ec; color: #c62828; border-left: 4px solid #e53935; }

/* ── HERO ────────────────────────────────── */
.hero {
  background: var(--gradient-hero);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(232,160,191,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(155,89,182,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-block; margin-bottom: 20px;
  padding: 6px 18px; border-radius: 50px;
  background: rgba(155,89,182,0.12); border: 1px solid rgba(155,89,182,0.3);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple-deep); font-weight: 600;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--purple-mid); }
.hero p {
  font-size: 1.1rem; color: var(--text-mid); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-photo {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 32px rgba(155,89,182,0.25);
  margin: 0 auto 24px;
}
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid), var(--rose));
  color: white; box-shadow: 0 4px 16px rgba(155,89,182,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(155,89,182,0.5); }
.btn-outline {
  border: 2px solid var(--purple-mid); color: var(--purple-mid);
  background: transparent; margin-left: 12px;
}
.btn-outline:hover { background: var(--purple-pale); }

/* ── SECTIONS ────────────────────────────── */
.section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple-mid); font-weight: 600; margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: var(--text-dark); margin-bottom: 16px;
}
.section-subtitle { color: var(--text-mid); font-size: 1rem; max-width: 560px; margin-bottom: 48px; }
.bg-pale { background: var(--purple-pale); }
.bg-pink { background: var(--pink-light); }

/* ── CARDS (Services) ────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  background: var(--gradient-card);
  border: 1px solid rgba(155,89,182,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px;
}
.card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── BIOGRAPHY PAGE ──────────────────────── */
.bio-layout {
  display: grid; grid-template-columns: 300px 1fr; gap: 56px;
  align-items: start;
}
.bio-photo-wrap { position: sticky; top: 100px; text-align: center; }
.bio-photo {
  width: 100%; max-width: 280px; aspect-ratio: 1;
  border-radius: 50%; object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 12px 48px rgba(155,89,182,0.25);
  margin: 0 auto 20px;
}
.bio-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 6px;
}
.bio-role {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple-mid); font-weight: 600;
}
.bio-text p {
  color: var(--text-mid); font-size: 1.02rem; margin-bottom: 20px; line-height: 1.85;
}
.bio-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.bio-tag {
  padding: 6px 16px; border-radius: 50px;
  background: rgba(155,89,182,0.1); border: 1px solid rgba(155,89,182,0.2);
  font-size: 0.8rem; color: var(--purple-deep); font-weight: 500;
}

/* ── BLOG ─────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
}
.blog-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(155,89,182,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card-img { height: 180px; background: var(--gradient-hero); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-date { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.blog-card p { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 16px; }
.blog-read-more { color: var(--purple-mid); font-size: 0.85rem; font-weight: 600; }
.blog-read-more:hover { color: var(--purple-deep); }

/* ── BLOG POST ───────────────────────────── */
.post-hero { background: var(--gradient-hero); padding: 60px 24px 40px; }
.post-inner { max-width: 780px; margin: 0 auto; }
.post-inner h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 12px; }
.post-meta { font-size: 0.85rem; color: var(--text-light); }
.post-content { max-width: 780px; margin: 0 auto; padding: 40px 24px; font-size: 1.02rem; color: var(--text-mid); line-height: 1.9; }

/* ── CONTACT ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.contact-item-text a, .contact-item-text span { color: var(--text-dark); font-size: 1rem; }
.contact-cta-box {
  background: linear-gradient(135deg, var(--purple-mid), var(--rose));
  border-radius: var(--radius); padding: 40px 32px; text-align: center; color: white;
}
.contact-cta-box h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 12px; }
.contact-cta-box p { opacity: 0.9; margin-bottom: 24px; }
.btn-white { background: white; color: var(--purple-deep); font-weight: 700; }
.btn-white:hover { background: var(--purple-pale); }

/* ── FOOTER ──────────────────────────────── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 24px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-name { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 4px; }
.footer-sub { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 12px; }
.footer-tagline { font-size: 0.88rem; font-style: italic; opacity: 0.7; }
.footer-links h4, .footer-contact h4 { color: white; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); display: block; padding: 4px 0; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--purple-light); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--purple-light); }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-btn { padding: 7px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.25); font-size: 0.8rem; color: white; transition: all 0.2s; }
.social-btn:hover { background: rgba(255,255,255,0.1); }
.social-btn.whatsapp { background: rgba(37,211,102,0.2); border-color: rgba(37,211,102,0.4); }
.footer-bottom { max-width: 1200px; margin: 20px auto 0; font-size: 0.8rem; opacity: 0.5; text-align: center; }

/* ── QUOTE SECTION ───────────────────────── */
.quote-section { background: linear-gradient(135deg, var(--purple-deep), #4A1060); padding: 80px 24px; text-align: center; color: white; }
.quote-section blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 400; font-style: italic; max-width: 700px; margin: 0 auto; line-height: 1.6; opacity: 0.95; }
.quote-section cite { display: block; margin-top: 20px; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; font-style: normal; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 16px 24px;
    border-bottom: 1px solid rgba(155,89,182,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-photo-wrap { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-header { position: relative; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
