:root{
  --primary-color:#ae1a77;
  --secondary-color:#67073c;
  --ink-color:#3a1944;
  --paper:#e8eae7;
  --white:#ffffff;
  --black:#000000;
  --text: rgba(32,32,32,.90);
  --text-muted: rgba(52,52,52,.72);
  --text-soft: rgba(72,72,72,.62);
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  --step-1: 4px;
  --step-2: 8px;
  --step-3: 12px;
  --step-4: 16px;
  --step-5: 20px;
  --step-6: 24px;
  --step-7: 32px;
  --step-8: 40px;
  --step-9: 48px;
  --step-10: 56px;
  --step-11: 64px;
  --step-12: 80px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 10px 26px rgba(0,0,0,.10);
  --shadow-md: 0 18px 56px rgba(0,0,0,.14);
  --ring: 0 0 0 3px rgba(174, 26, 119, .22);
  --container: 1120px;
  --glass: rgba(255,255,255,.64);
  --glass-strong: rgba(255,255,255,.78);
  --glass-border: rgba(255,255,255,.42);
  --site-bg:
    radial-gradient(1100px 700px at 16% 12%, rgba(232,234,231,.90), rgba(232,234,231,0) 60%),
    radial-gradient(980px 640px at 86% 18%, rgba(255,255,255,.50), rgba(255,255,255,0) 62%),
    radial-gradient(900px 620px at 50% 92%, rgba(174,26,119,.18), rgba(174,26,119,0) 62%),
    linear-gradient(180deg, rgba(174,26,119,.92) 0%, rgba(103,7,60,.92) 44%, rgba(58,25,68,.92) 100%);
  --grad-hero:
    radial-gradient(1200px 700px at 12% 10%, rgba(174,26,119,.22), transparent 55%),
    radial-gradient(900px 600px at 88% 18%, rgba(103,7,60,.22), transparent 55%),
    radial-gradient(820px 540px at 50% 82%, rgba(232,234,231,.80), transparent 58%);
  --grad-ink:
    radial-gradient(900px 600px at 18% 18%, rgba(174,26,119,.38), transparent 55%),
    radial-gradient(700px 520px at 82% 12%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(180deg, rgba(58,25,68,1) 0%, rgba(103,7,60,1) 100%);
  --section-y: clamp(44px, 4.4vw, 72px);
  --section-y-tight: clamp(34px, 3.8vw, 56px);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: var(--site-bg);
  background-attachment: fixed;
  line-height:1.5;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

main{ display:block; padding-bottom: 84px; }
@media (min-width: 1024px){ main{ padding-bottom: 0; } }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input{ font:inherit; }

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.skip-link{
  position:absolute;
  left: var(--step-4);
  top: var(--step-4);
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus{ transform: translateY(0); outline:none; box-shadow: var(--shadow-sm), var(--ring); }

.container{
  width:100%;
  max-width: var(--container);
  margin:0 auto;
  padding: 0 var(--step-5);
}
@media (min-width: 480px){
  .container{ padding: 0 var(--step-6); }
}

.h1,.h2,.h3{
  margin:0;
  letter-spacing: -0.02em;
}
.h1{
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
}
.h1-accent{
  display:block;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,234,231,.86));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  letter-spacing: -0.01em;
}
.h2{
  font-weight: 800;
  font-size: clamp(24px, 3.0vw, 38px);
  line-height:1.12;
}
.h3{
  font-weight: 800;
  font-size: 18px;
  line-height:1.2;
}
.lead{
  margin: var(--step-5) 0 0;
  font-size: 16px;
  color: rgba(255,255,255,.86);
  max-width: 70ch;
}
.subhead{
  margin: var(--step-4) 0 0;
  color: var(--text-muted);
  max-width: 76ch;
}

.section{ padding: var(--section-y) 0; }
.section-tight{ padding: var(--section-y-tight) 0; }

.section-alt{
  background:
    radial-gradient(900px 560px at 14% 18%, rgba(174,26,119,.12), transparent 58%),
    radial-gradient(980px 560px at 90% 18%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.22));
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-head{ margin-bottom: var(--step-7); }

.grid{
  display:grid;
  gap: var(--step-5);
}
.cards-2{ grid-template-columns: 1fr; }
.cards-3{ grid-template-columns: 1fr; }
.cards-4{ grid-template-columns: 1fr; }

@media (min-width: 768px){
  .cards-2{ grid-template-columns: 1fr 1fr; }
  .cards-3{ grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px){
  .cards-4{ grid-template-columns: repeat(4, 1fr); }
}

.card{
  position:relative;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--step-6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(320px 170px at 20% 10%, rgba(174,26,119,.16), transparent 62%),
    radial-gradient(280px 150px at 92% 18%, rgba(103,7,60,.12), transparent 62%);
  opacity: .70;
  pointer-events:none;
  transition: opacity .18s ease;
}
.card > *{ position:relative; z-index:1; }
.card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,.10);
}
.card:hover::after{ opacity: .95; }

@media (prefers-reduced-motion: reduce){
  .card, .card:hover{ transition:none; transform:none; }
  .card::after{ transition:none; }
}

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor:pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
  user-select:none;
  overflow:hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn:focus{ outline:none; box-shadow: var(--ring); }
.btn:active{ transform: translateY(1px); }

.btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.28) 30%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events:none;
}
.btn:hover::before{ transform: translateX(120%); }

@media (prefers-reduced-motion: reduce){
  .btn{ transition:none; }
  .btn::before{ display:none; }
}

.btn-block{ width:100%; }

.btn-primary{
  color: rgba(255,255,255,.96);
  background: linear-gradient(135deg, rgba(174,26,119,1), rgba(103,7,60,1));
  box-shadow: 0 18px 40px rgba(103,7,60,.26);
  border-color: rgba(255,255,255,.18);
}
.btn-primary:hover{
  box-shadow: 0 22px 52px rgba(103,7,60,.32);
  transform: translateY(-1px);
}

.btn-secondary{
  color: rgba(255,255,255,.96);
  background: linear-gradient(135deg, rgba(58,25,68,1), rgba(103,7,60,1));
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.btn-secondary:hover{
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
  transform: translateY(-1px);
}

.btn-ghost{
  color: rgba(0,0,0,.84);
  background: rgba(255,255,255,.70);
  border-color: rgba(0,0,0,.10);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.86);
  border-color: rgba(0,0,0,.14);
  transform: translateY(-1px);
}

.btn-outline{
  color: rgba(255,255,255,.92);
  background: transparent;
  border-color: rgba(255,255,255,.26);
}
.btn-outline:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.34);
  transform: translateY(-1px);
}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap: var(--step-2);
  margin-bottom: var(--step-4);
}
.badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.badge-soft{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(174,26,119,.10);
  color: rgba(103,7,60,.96);
  border: 1px solid rgba(174,26,119,.18);
  width: fit-content;
}

.site-header{ position: sticky; top:0; z-index: 1000; }
.nav-shell{
  background: rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--step-4);
  padding: 12px var(--step-5);
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  padding: 6px;
}
.brand-title{ display:block; font-weight: 900; letter-spacing: -0.01em; color: rgba(255,255,255,.96); }
.brand-subtitle{ display:block; font-size: 12px; color: rgba(255,255,255,.72); font-weight: 700; }

.nav-links{
  display:none;
  align-items:center;
  gap: var(--step-4);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-link{
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,.82);
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .16s ease, color .16s ease;
}
.nav-link:hover{
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.96);
}
.nav-link:focus{ outline:none; box-shadow: var(--ring); }

.nav-cta{ display:none; gap: var(--step-3); }
.nav-toggle{
  margin-left:auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
  cursor:pointer;
}
.nav-toggle:focus{ outline:none; box-shadow: var(--shadow-sm), var(--ring); }
.nav-toggle-lines{
  display:block;
  width: 18px;
  height: 12px;
  margin: 0 auto;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
}
.nav-toggle-lines::before{ top:0; }
.nav-toggle-lines::after{ bottom:0; }
.nav-toggle-lines{
  background: rgba(255,255,255,.92);
  height:2px;
  top:5px;
  border-radius: 999px;
}

@media (min-width: 1024px){
  .nav-links{ display:flex; }
  .nav-cta{ display:flex; }
  .nav-toggle{ display:none; }
  .brand{ min-width: 320px; }
}

.backdrop{
  position: fixed;
  inset:0;
  background: rgba(0,0,0,.46);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1001;
}
.mobile-drawer{
  position: fixed;
  top: var(--step-5);
  left: var(--step-5);
  right: var(--step-5);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  z-index: 1002;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: var(--step-5);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.drawer-title{ font-weight: 900; }
.icon-btn{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.74);
  cursor:pointer;
}
.icon-btn:focus{ outline:none; box-shadow: var(--ring); }

.drawer-body{ padding: var(--step-5); display:flex; flex-direction:column; gap: 10px; }
.drawer-link{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.70);
  font-weight: 900;
  color: rgba(0,0,0,.82);
}
.drawer-link:hover{
  background: rgba(174,26,119,.10);
  border-color: rgba(174,26,119,.18);
  color: rgba(103,7,60,.96);
}
.drawer-link:focus{ outline:none; box-shadow: var(--ring); }

.drawer-actions{ display:grid; gap: var(--step-3); margin-top: var(--step-3); }
.drawer-mini{
  margin-top: var(--step-4);
  padding-top: var(--step-4);
  border-top: 1px solid rgba(0,0,0,.08);
  display:grid;
  gap: var(--step-3);
}
.mini-item{ display:flex; flex-direction:column; gap: 4px; }
.mini-k{ font-weight: 900; font-size: 12px; color: rgba(0,0,0,.70); }
.mini-v{ font-size: 13px; color: rgba(0,0,0,.84); font-weight: 700; }

.hero{
  position: relative;
  padding: clamp(56px, 7vw, 86px) 0 clamp(34px, 5vw, 56px);
  overflow:hidden;
  isolation:isolate;
}
.hero-bg{
  position:absolute;
  inset:0;
  background: var(--grad-hero);
  z-index:-3;
}

.hero-animated{
  position:absolute;
  inset:-40%;
  z-index:-2;
  background:
    radial-gradient(420px 280px at 25% 30%, rgba(255,255,255,.14), transparent 62%),
    radial-gradient(460px 300px at 75% 35%, rgba(174,26,119,.20), transparent 62%),
    radial-gradient(420px 280px at 55% 75%, rgba(103,7,60,.18), transparent 62%);
  filter: blur(14px);
  animation: floatField 12s ease-in-out infinite;
  pointer-events:none;
}
@keyframes floatField{
  0%{ transform: translate3d(-1%, -1%, 0) rotate(0deg); }
  50%{ transform: translate3d(2%, 1%, 0) rotate(3deg); }
  100%{ transform: translate3d(-1%, -1%, 0) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce){
  .hero-animated{ animation:none; }
}

.hero-shapes .shape{
  position:absolute;
  border-radius: 999px;
  z-index:-1;
  pointer-events:none;
  mix-blend-mode: screen;
  opacity: .85;
  filter: saturate(1.06);
  will-change: transform;
}
.shape-a{
  width: 520px;
  height: 520px;
  left: -220px;
  top: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.16), rgba(255,255,255,.00) 62%);
}
.shape-b{
  width: 440px;
  height: 440px;
  right: -180px;
  top: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,.00) 62%);
}
.shape-c{
  width: 520px;
  height: 520px;
  right: -240px;
  bottom: -300px;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.12), rgba(255,255,255,.00) 62%);
}

.hero-grid{
  display:grid;
  gap: var(--step-7);
  align-items:start;
}
@media (min-width: 1024px){
  .hero-grid{ grid-template-columns: 1.12fr .88fr; align-items:center; }
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: var(--step-3);
  margin-top: var(--step-6);
}

.trust-note{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: var(--step-5);
  color: rgba(255,255,255,.84);
  font-weight: 800;
  font-size: 13px;
}
.trust-note .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(232,234,231,.70));
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

.hero-media .media-card{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  padding: var(--step-5);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position:relative;
  overflow:hidden;
}
.hero-media .media-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(340px 240px at 30% 20%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(340px 240px at 70% 20%, rgba(174,26,119,.18), transparent 60%);
  filter: blur(12px);
  opacity: .95;
  pointer-events:none;
}

.hero-photo{
  width:100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.22);
  overflow:hidden;
  object-fit: cover;
  object-position: 50% 20%;
  box-shadow: 0 18px 56px rgba(0,0,0,.22);
  position:relative;
  z-index:1;
  background: rgba(255,255,255,.10);
}

.media-highlights{
  display:grid;
  gap: var(--step-3);
  margin-top: var(--step-4);
  position:relative;
  z-index:1;
}
.hl{
  display:flex;
  gap: 12px;
  padding: 12px 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hl-ic{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  opacity: .95;
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
  border: 1px solid rgba(255,255,255,.20);
  flex: 0 0 auto;
  display:grid;
  place-items:center;
}
.hl-ic svg{ width: 18px; height: 18px; color: rgba(255,255,255,.92); }
.hl-txt strong{ display:block; font-weight: 900; color: rgba(255,255,255,.94); }
.hl-txt span{ display:block; font-size: 12px; color: rgba(255,255,255,.78); margin-top: 2px; font-weight: 800; }

.feature-ic{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.96);
  background: linear-gradient(135deg, rgba(174,26,119,1), rgba(103,7,60,1));
  box-shadow: 0 16px 34px rgba(103,7,60,.22);
  border: 1px solid rgba(255,255,255,.20);
  margin-bottom: var(--step-4);
}
.feature p{ margin: var(--step-3) 0 0; color: var(--text-muted); font-weight: 700; }

.cta-band{
  margin-top: var(--step-7);
  border-radius: var(--radius-xl);
  padding: var(--step-6);
  background:
    radial-gradient(900px 480px at 10% 20%, rgba(174,26,119,.14), transparent 60%),
    radial-gradient(900px 480px at 90% 10%, rgba(255,255,255,.18), transparent 60%),
    rgba(255,255,255,.64);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-md);
  display:flex;
  flex-direction:column;
  gap: var(--step-4);
}
.cta-band-copy p{ margin: var(--step-2) 0 0; color: var(--text-muted); font-weight: 700; }
.cta-band-actions{ display:flex; flex-wrap:wrap; gap: var(--step-3); }

@media (min-width: 768px){
  .cta-band{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }
}

.checklist{
  list-style:none;
  padding:0;
  margin: var(--step-4) 0 0;
  display:grid;
  gap: var(--step-3);
}
.checklist li{
  position: relative;
  padding-left: 34px;
  color: rgba(0,0,0,.74);
  font-weight: 800;
}
.checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: rgba(174,26,119,.12);
  border: 1px solid rgba(174,26,119,.20);
}
.checklist li::after{
  content:"";
  position:absolute;
  left: 6px;
  top: 9px;
  width: 10px;
  height: 6px;
  border-left: 2px solid rgba(103,7,60,.96);
  border-bottom: 2px solid rgba(103,7,60,.96);
  transform: rotate(-45deg);
}

.note-card{
  margin-top: var(--step-6);
  border-radius: var(--radius-xl);
  padding: var(--step-6);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-md);
  display:grid;
  gap: var(--step-4);
  align-items:center;
}
.note-ic{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(58,25,68,1), rgba(174,26,119,1));
  box-shadow: 0 16px 34px rgba(58,25,68,.18);
  border: 1px solid rgba(255,255,255,.20);
}
.note-content{ color: rgba(0,0,0,.78); font-weight: 800; }
.note-actions{ display:flex; flex-wrap:wrap; gap: var(--step-3); }

@media (min-width: 768px){
  .note-card{ grid-template-columns: 46px 1fr auto; }
}

.img-frame{
  position:relative;
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow-md);
}
.img-frame img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.img-landscape{ aspect-ratio: 16 / 10; }

.about-grid{ grid-template-columns: 1fr; }
@media (min-width: 1024px){
  .about-grid{ grid-template-columns: 1.1fr .9fr; align-items:start; }
}
.about-card p{ margin: var(--step-3) 0 0; color: var(--text-muted); font-weight: 700; }
.about-actions{ margin-top: var(--step-6); display:flex; flex-wrap:wrap; gap: var(--step-3); }

.clinic-card p{ margin: var(--step-3) 0 0; color: var(--text-muted); font-weight: 700; }
.clinic-media{ margin-top: var(--step-4); }
.clinic-points{ margin-top: var(--step-4); display:grid; gap: var(--step-3); }
.point{
  display:flex;
  gap: 12px;
  padding: 12px 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
}
.point-ic{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(174,26,119,1), rgba(58,25,68,1));
  box-shadow: 0 12px 26px rgba(58,25,68,.18);
  border: 1px solid rgba(255,255,255,.20);
  flex: 0 0 auto;
}
.point-txt strong{ display:block; font-weight: 900; }
.point-txt span{ display:block; margin-top:2px; font-size:12px; color: rgba(0,0,0,.64); font-weight: 800; }

.reviews-shell{ display:grid; gap: var(--step-6); align-items:start; }
@media (min-width: 1024px){
  .reviews-shell{ grid-template-columns: .8fr 1.2fr; }
}
.rating-card{
  border-radius: var(--radius-xl);
  padding: var(--step-6);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-md);
}
.rating-top{ display:flex; gap: 12px; align-items:center; }
.rating-meta strong{ display:block; font-weight: 900; }
.rating-meta span{ display:block; font-size: 12px; color: rgba(0,0,0,.62); font-weight: 800; margin-top:2px; }
.stars{ margin-top: var(--step-4); font-size: 18px; letter-spacing: 2px; color: rgba(174,26,119,.96); font-weight: 900; }

.testimonial p{ margin: var(--step-4) 0 0; color: rgba(0,0,0,.72); font-weight: 800; }
.t-head{ display:flex; gap: 12px; align-items:center; }
.avatar{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight: 900;
  color: rgba(255,255,255,.96);
  background: linear-gradient(135deg, rgba(58,25,68,1), rgba(174,26,119,1));
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 16px 34px rgba(58,25,68,.18);
  flex: 0 0 auto;
}
.t-meta strong{ display:block; font-weight: 900; }
.t-meta span{ display:block; font-size: 12px; color: rgba(0,0,0,.62); font-weight: 800; margin-top:2px; }
.t-stars{ margin-top: var(--step-4); color: rgba(174,26,119,.96); letter-spacing: 2px; font-weight: 900; }

.accordion{ display:grid; gap: var(--step-3); }
.acc-item{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}
.acc-title{ margin:0; }
.acc-trigger{
  width:100%;
  text-align:left;
  padding: var(--step-5);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--step-4);
  background: transparent;
  border:0;
  cursor:pointer;
  font-weight: 900;
}
.acc-trigger:focus{ outline:none; box-shadow: var(--ring); }
.acc-icon{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(103,7,60,.70);
  position:relative;
  flex: 0 0 auto;
}
.acc-icon::before,
.acc-icon::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  background: rgba(103,7,60,.86);
  border-radius: 999px;
}
.acc-icon::before{ width: 10px; height:2px; }
.acc-icon::after{ width: 2px; height:10px; }
.acc-panel{ padding: 0 var(--step-5) var(--step-5); }
.acc-panel p{ margin: 0; color: var(--text-muted); font-weight: 800; }
.acc-item[data-open="true"] .acc-icon::after{ display:none; }

.contact-grid{ grid-template-columns: 1fr; }
@media (min-width: 1024px){
  .contact-grid{ grid-template-columns: 1.05fr .95fr; align-items:stretch; }
}
.contact-card{
  border-radius: var(--radius-xl);
  padding: var(--step-7);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 56px rgba(0,0,0,.28);
  position:relative;
  z-index:1;
  overflow:hidden;
}
.contact-card::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(440px 260px at 20% 20%, rgba(174,26,119,.26), transparent 62%),
    radial-gradient(420px 250px at 80% 20%, rgba(255,255,255,.12), transparent 60%);
  filter: blur(12px);
  opacity: .92;
  pointer-events:none;
}
.contact-card > *{ position:relative; z-index:1; }
.contact-head .h2{ color: rgba(255,255,255,.98); }
.contact-head .subhead{ color: rgba(255,255,255,.80); font-weight: 700; }
.contact-actions{ margin-top: var(--step-6); display:grid; gap: var(--step-3); }
.contact-info{
  margin-top: var(--step-6);
  padding-top: var(--step-6);
  border-top: 1px solid rgba(255,255,255,.14);
  display:grid;
  gap: var(--step-4);
}
.info-row{ display:grid; gap: 6px; }
.info-k{ font-weight: 900; font-size: 12px; color: rgba(255,255,255,.74); }
.info-v{ font-weight: 900; color: rgba(255,255,255,.94); }

.location-card{
  border-radius: var(--radius-xl);
  padding: var(--step-6);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 56px rgba(0,0,0,.28);
  position:relative;
  z-index:1;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap: var(--step-4);
  justify-content:space-between;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(440px 260px at 20% 20%, rgba(255,255,255,.12), transparent 62%),
    radial-gradient(420px 250px at 80% 20%, rgba(174,26,119,.22), transparent 60%);
  filter: blur(12px);
  opacity: .92;
  pointer-events:none;
}
.location-card > *{ position:relative; z-index:1; }

.location-top{
  display:flex;
  align-items:flex-start;
  gap: 12px;
}
.loc-ic{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  flex: 0 0 auto;
}
.loc-ic svg{ width: 20px; height: 20px; color: rgba(255,255,255,.92); }
.location-title{
  margin:0;
  font-weight: 900;
  color: rgba(255,255,255,.96);
  letter-spacing:-0.01em;
  font-size: 18px;
  line-height: 1.15;
}
.location-address{
  margin: 6px 0 0;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 13px;
  max-width: 52ch;
}
.location-actions{
  display:flex;
  flex-wrap:wrap;
  gap: var(--step-3);
  align-items:center;
  justify-content:flex-start;
}
@media (min-width: 768px){
  .location-card{
    flex-direction:row;
    align-items:center;
    gap: var(--step-5);
  }
  .location-actions{
    justify-content:flex-end;
  }
}

.footer{
  padding: var(--section-y-tight) 0 var(--step-7);
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(255,255,255,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.06) 100%);
  border-top: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.footer-grid{ display:grid; gap: var(--step-7); }
@media (min-width: 1024px){
  .footer-grid{ grid-template-columns: 1.2fr .9fr .9fr .9fr; }
}
.footer-note{ margin:0; color: rgba(255,255,255,.74); font-weight: 700; }
.footer-title{ display:block; font-weight: 900; margin-bottom: var(--step-3); color: rgba(255,255,255,.92); }
.footer-list{ list-style:none; padding:0; margin:0; display:grid; gap: 10px; }
.footer-list a{
  color: rgba(255,255,255,.78);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.footer-list a:hover{ color: rgba(255,255,255,.94); }
.footer-bottom{
  margin-top: var(--step-7);
  padding-top: var(--step-5);
  border-top: 1px solid rgba(255,255,255,.14);
  display:flex;
  flex-direction:column;
  gap: var(--step-3);
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 13px;
}
.footer-links{ display:flex; gap: var(--step-4); }
.footer-links a{
  color: rgba(255,255,255,.70);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 900;
}
.footer-links a:hover{ color: rgba(255,255,255,.94); }
@media (min-width: 768px){
  .footer-bottom{ flex-direction:row; justify-content:space-between; align-items:center; }
}

.sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display:flex;
  gap: 10px;
  padding: 12px var(--step-5);
  background: rgba(0,0,0,.26);
  border-top: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.sticky-btn{
  flex:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  border-radius: 16px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.94);
}
.sticky-primary{
  background: linear-gradient(135deg, rgba(174,26,119,1), rgba(103,7,60,1));
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.sticky-ghost{
  background: rgba(255,255,255,.12);
}
@media (min-width: 1024px){
  .sticky-cta{ display:none; }
}

[data-reveal]{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ transition:none; opacity:1; transform:none; }
}

body.no-scroll{ overflow:hidden; }

.hero .h1,
.hero .h1-accent{
  color: rgba(255,255,255,.96) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

#tratamentos .h2{
  color: rgba(255,255,255,.96);
}

.blog-hero{
  padding: clamp(46px, 6vw, 72px) 0 var(--section-y-tight);
}
.blog-hero .h1{ color: rgba(255,255,255,.96); }
.blog-hero .lead{ max-width: 78ch; }

.post-meta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: var(--step-4);
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: 13px;
}
.post-body{
  margin-top: var(--step-7);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: var(--step-7);
}
.post-body h1, .post-body h2, .post-body h3, .post-body h4{
  color: rgba(0,0,0,.86);
  letter-spacing: -0.02em;
}
.post-body p, .post-body li{
  color: rgba(0,0,0,.78);
  font-weight: 700;
  line-height: 1.7;
}
.post-body a{
  color: rgba(103,7,60,.96);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 900;
}
.post-body img{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-sm);
}
#procedimentos .h2{
  color: rgba(255,255,255,.96);
}

#procedimentos .subhead{
  color: rgba(255,255,255,.82);
}
