:root {
  --cream: #fbf6f1;
  --cream-2: #f2ebe7;
  --paper: #fffaf7;
  --plum: #392755;
  --plum-2: #6e5688;
  --lavender: #b9a2d0;
  --lavender-soft: #e9dff0;
  --sage: #7d836d;
  --sage-dark: #5f6754;
  --gold: #a98f5b;
  --ink: #30302e;
  --muted: #6d6a66;
  --line: rgba(57, 39, 85, .16);
  --shadow: 0 22px 60px rgba(57, 39, 85, .12);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --serif: Georgia, 'Times New Roman', serif;
  --script: 'Segoe Script', 'Brush Script MT', 'Lucida Handwriting', cursive;
  --sans: 'Segoe UI', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--plum);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-shell { position: relative; overflow: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 246, 241, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(57, 39, 85, .07);
  background: rgba(251, 246, 241, .96);
}
.nav-wrap { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 220px; flex: 0 0 auto; border-radius: 16px; overflow: hidden; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 650;
  color: var(--muted);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--plum); background: var(--lavender-soft); transform: translateY(-1px); }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; padding: 10px; cursor: pointer; border-radius: 12px; }
.menu-toggle span { display: block; height: 2px; background: var(--plum); margin: 6px 0; transition: .25s ease; }

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 74px 0 88px;
  background:
    radial-gradient(circle at 6% 8%, rgba(185, 162, 208, .34), transparent 24%),
    radial-gradient(circle at 94% 80%, rgba(125, 131, 109, .18), transparent 23%),
    linear-gradient(145deg, #fffaf7 0%, #f8f0ed 55%, #f2ebe7 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -120px -10%;
  height: 220px;
  background: var(--sage);
  border-radius: 50% 50% 0 0 / 45% 45% 0 0;
  opacity: .11;
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 16px; color: var(--plum-2); text-transform: uppercase; letter-spacing: .17em; font-weight: 800; font-size: .82rem; }
.name-lockup { display: grid; width: fit-content; color: var(--plum); margin-bottom: 22px; }
.prefix { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem); line-height: .95; }
.name { font-family: var(--serif); font-size: clamp(4.8rem, 9vw, 8.4rem); line-height: .82; letter-spacing: -.04em; }
.surname { font-family: var(--script); font-size: clamp(4rem, 8vw, 7.5rem); line-height: .78; color: #7f6798; transform: translateX(18px) rotate(-2deg); }
.hero-text { max-width: 640px; font-family: var(--serif); font-size: clamp(1.5rem, 2.7vw, 2.15rem); line-height: 1.28; margin: 34px 0 30px; }
.hero-text strong { color: var(--plum-2); font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn svg { width: 21px; height: 21px; fill: currentColor; stroke: none; }
.btn-primary { color: white; background: linear-gradient(135deg, var(--plum-2), var(--plum)); box-shadow: 0 14px 28px rgba(57, 39, 85, .2); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(57, 39, 85, .28); }
.phone-pill { border: 1px solid var(--line); border-radius: 999px; padding: 12px 18px; font-family: var(--serif); font-size: 1.1rem; color: var(--plum); background: rgba(255,255,255,.55); }
.priority { margin: 20px 0 0; color: var(--plum-2); font-family: var(--serif); font-style: italic; }
.priority span { display: inline-block; animation: heartbeat 2.1s ease-in-out infinite; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.portrait-frame { width: min(100%, 500px); position: relative; padding: 18px; }
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(110,86,136,.45);
  border-radius: 50% 50% 42% 42% / 42% 42% 58% 58%;
  transform: rotate(4deg);
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 24px -20px -24px 48px;
  background: linear-gradient(155deg, rgba(185,162,208,.26), rgba(125,131,109,.16));
  border-radius: 44% 56% 48% 52% / 58% 42% 58% 42%;
  z-index: -1;
  filter: blur(1px);
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 530 / 675;
  object-fit: cover;
  object-position: center;
  border-radius: 45% 45% 38% 38% / 38% 38% 55% 55%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(57,39,85,.15);
}
.portrait-ring { position: absolute; inset: -8px 22px 45px -4px; border: 2px solid rgba(127,103,152,.24); border-radius: 50%; z-index: -1; }

.decor { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.decor-a { width: 280px; height: 280px; left: -120px; top: 180px; background: radial-gradient(circle, rgba(185,162,208,.34), transparent 68%); }
.decor-b { width: 320px; height: 320px; right: -160px; bottom: 50px; background: radial-gradient(circle, rgba(125,131,109,.24), transparent 68%); }
.petal-cluster { position: absolute; width: 92px; height: 92px; }
.petal-cluster i { position: absolute; left: 34px; top: 7px; width: 24px; height: 42px; border-radius: 70% 30% 70% 30%; background: linear-gradient(180deg, #d9c8e5, #a986c2); transform-origin: 12px 39px; box-shadow: 0 4px 12px rgba(57,39,85,.1); }
.petal-cluster i:nth-child(2) { transform: rotate(72deg); }
.petal-cluster i:nth-child(3) { transform: rotate(144deg); }
.petal-cluster i:nth-child(4) { transform: rotate(216deg); }
.petal-cluster i:nth-child(5) { transform: rotate(288deg); }
.petals-one { right: -12px; bottom: 80px; }
.petals-two { left: -20px; top: 60px; transform: scale(.68); opacity: .75; }

.section-heading { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.section-heading h2 { margin: 0; font-family: var(--serif); color: var(--plum); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.08; font-weight: 500; }
.mini-line { display: inline-block; width: 84px; height: 1px; background: var(--gold); opacity: .7; margin: 8px 0; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,239,244,.95));
  border: 1px solid rgba(110,86,136,.13);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(57,39,85,.07);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card::after { content: ''; position: absolute; inset: auto 14px 0; height: 3px; border-radius: 999px; background: linear-gradient(90deg, transparent, var(--lavender), transparent); opacity: .8; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 22px 45px rgba(57,39,85,.13); border-color: rgba(110,86,136,.28); }
.icon-box { width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; background: rgba(185,162,208,.13); color: var(--plum-2); margin-bottom: 18px; }
.icon-box svg { width: 58px; height: 58px; stroke-width: 1.7; }
.service-card h3 { margin: 0; text-transform: uppercase; letter-spacing: .04em; font-size: .98rem; color: var(--plum); }

.safe-space { padding: 56px 0; background: linear-gradient(135deg, #efe7ea, #f8f2ef); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.safe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.safe-card { display: flex; align-items: center; gap: 22px; padding: 28px 30px; border: 1px solid rgba(125,131,109,.34); border-radius: 28px; background: rgba(255,255,255,.52); }
.safe-icon { width: 72px; height: 72px; flex: 0 0 72px; display: grid; place-items: center; color: var(--sage-dark); }
.safe-icon svg { width: 62px; height: 62px; stroke-width: 1.8; }
.safe-kicker { margin: 0 0 4px; text-transform: uppercase; letter-spacing: .1em; color: var(--sage-dark); font-weight: 750; font-size: .78rem; }
.safe-card h2 { margin: 0; font-family: var(--serif); font-weight: 500; color: var(--plum); font-size: clamp(1.45rem, 2.7vw, 2.15rem); line-height: 1.2; }

.modalities { background: linear-gradient(180deg, #fffaf7, #f6efe9); }
.modality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 950px; margin: 0 auto; }
.modality-card { display: flex; align-items: center; gap: 24px; min-height: 210px; padding: 30px; background: white; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: 0 18px 42px rgba(57,39,85,.08); transition: transform .3s ease, box-shadow .3s ease; }
.modality-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(57,39,85,.13); }
.modality-icon { flex: 0 0 92px; width: 92px; height: 92px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, var(--plum-2), #8d72a8); border-radius: 50%; box-shadow: 0 12px 24px rgba(110,86,136,.2); }
.modality-card:nth-child(2) .modality-icon { background: linear-gradient(145deg, var(--sage), var(--sage-dark)); }
.modality-icon svg { width: 57px; height: 57px; stroke-width: 1.7; }
.mode-label { text-transform: uppercase; letter-spacing: .1em; color: var(--plum-2); font-weight: 850; font-size: .9rem; }
.modality-card h3 { margin: 7px 0 0; font-family: var(--serif); font-size: 1.45rem; line-height: 1.3; font-weight: 500; color: var(--ink); }

.message-band { padding: 44px 0; background: linear-gradient(135deg, #78806a, #68715c); color: white; }
.message-band::before, .message-band::after { content: ''; position: absolute; width: 54%; height: 120%; top: -35%; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.message-band::before { left: -16%; transform: rotate(-8deg); }
.message-band::after { right: -18%; transform: rotate(11deg); }
.message-inner { display: flex; justify-content: center; align-items: center; gap: 18px; position: relative; z-index: 2; }
.message-inner p { margin: 0; font-family: var(--script); font-size: clamp(2rem, 5vw, 4.25rem); text-align: center; line-height: 1.15; }
.message-inner p span { color: #c5a8de; }
.lotus-mark { width: 74px; height: 60px; display: grid; place-items: center; opacity: .92; }
.lotus-mark svg { width: 74px; height: 60px; stroke-width: 1.4; }

.contact { background: var(--cream); }
.contact-card {
  max-width: 1000px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 46px 50px;
  border-radius: 38px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.13), transparent 24%),
    linear-gradient(135deg, #81679b, #4d386a);
  box-shadow: 0 24px 55px rgba(57,39,85,.2);
  overflow: hidden;
  position: relative;
}
.contact-card::after { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); right: -60px; bottom: -100px; }
.contact-card .eyebrow { color: #eee4f6; }
.contact-card h2 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(3rem, 7vw, 5.7rem); line-height: 1; }
.contact-card p:last-child { margin: 14px 0 0; font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.btn-light { background: white; color: var(--plum); flex: 0 0 auto; position: relative; z-index: 2; }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,.16); }

.site-footer { background: #2e2930; color: #e9e1e5; padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-inner > div { display: grid; gap: 3px; }
.footer-inner strong { font-family: var(--serif); font-size: 1.15rem; }
.footer-inner span { color: #bdb5ba; font-size: .88rem; }
.footer-inner a { color: #d9c8e5; font-weight: 700; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  box-shadow: 0 12px 25px rgba(0,0,0,.22);
  z-index: 900;
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 30px rgba(0,0,0,.27); }
.floating-whatsapp svg { width: 30px; height: 30px; fill: currentColor; stroke: none; }

.reveal { opacity: 1; transform: none; }
.reveal.in-view { animation: revealRise .6s ease both; }

@keyframes revealRise { from { transform: translateY(12px); } to { transform: translateY(0); } }

@keyframes heartbeat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.16); } 30% { transform: scale(1); } 45% { transform: scale(1.12); } 60% { transform: scale(1); } }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(4), .service-card:nth-child(5) { transform: none; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 720px); }
  .section { padding: 74px 0; }
  .nav-wrap { min-height: 76px; }
  .brand { width: 175px; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    padding: 14px;
    background: rgba(255,250,247,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px 15px; }
  .hero { min-height: auto; padding: 64px 0 88px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .name-lockup { margin-inline: auto; }
  .surname { transform: rotate(-2deg); }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .portrait-frame { width: min(92%, 470px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .safe-grid, .modality-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 40px 30px; flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 520px); }
  .brand { width: 150px; }
  .hero { padding-top: 48px; }
  .prefix { font-size: 1.8rem; }
  .name { font-size: clamp(4.3rem, 21vw, 6.4rem); }
  .surname { font-size: clamp(3.9rem, 18vw, 5.8rem); }
  .hero-text { font-size: 1.45rem; }
  .hero-actions { display: grid; }
  .btn, .phone-pill { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 185px; flex-direction: row; text-align: left; justify-content: flex-start; gap: 18px; }
  .icon-box { margin: 0; flex: 0 0 78px; width: 78px; height: 78px; }
  .icon-box svg { width: 48px; height: 48px; }
  .safe-card, .modality-card { align-items: flex-start; padding: 24px 20px; gap: 18px; }
  .safe-icon, .modality-icon { flex: 0 0 68px; width: 68px; height: 68px; }
  .safe-icon svg, .modality-icon svg { width: 46px; height: 46px; }
  .modality-card h3 { font-size: 1.25rem; }
  .message-inner { flex-direction: column; gap: 8px; }
  .message-inner p { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .contact-card { border-radius: 28px; padding: 34px 20px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  .reveal { opacity: 1; transform: none; }
}
