:root {
  --white: #ffffff;
  --blush: #fdf5f7;
  --blush-2: #f9e8ef;
  --pink: #f4c8d6;
  --pink-deep: #e89bb1;
  --mauve: #9b7aa8;
  --mauve-deep: #6e4f7e;
  --gold: #c9a96e;
  --gold-soft: #e6d3a3;
  --ink: #7d4f50;
  --button-color: #cc8b86;
  --muted: #919191;
  --line: rgba(155, 122, 168, .12);
  --shadow-sm: 0 4px 14px rgba(110, 79, 126, .06);
  --shadow: 0 18px 50px -20px rgba(110, 79, 126, .25);
  --shadow-lg: 0 30px 80px -30px rgba(110, 79, 126, .35);
  --radius: 18px;
  --radius-lg: 28px;
  --grad: rgb(235, 216, 208, 0.15);
  --grad-gold: linear-gradient(135deg, #c9a96e, #e6d3a3);
  --grad-mauve: linear-gradient(135deg, #cc8b86, #7d4f50);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Alexandria', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Alexandria', sans-serif;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.3;
}

.serif {
  font-family: 'Alexandria', serif;
  font-weight: 600;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: #cc8b86;
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(110, 79, 126, .5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(110, 79, 126, .6);
}

.btn-gold {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(201, 169, 110, .5);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: #fff;
  color: var(--mauve-deep);
  border: 1.5px solid var(--pink);
}

.btn-outline:hover {
  background: var(--blush);
  border-color: var(--mauve);
}

.btn-wa {
  border: 2px solid var(--button-color);

  color: #cc8b86;
}

.btn-wa:hover {
  transform: translateY(-2px);
  background: var(--button-color);
  color: white;

}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--grad-mauve);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
}

.logo small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .5px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  transition: color .2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blush);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  border-radius: 2px;
  transition: .3s;
}

@media(max-width:920px) {
  .nav-links {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .3s ease;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .burger {
    display: block;
  }

  .nav-cta .btn:not(.btn-primary) {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad);
  padding: 80px 0 100px;
}


/* .hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 200, 214, .6), transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, .18), transparent 70%);
  border-radius: 50%;
} */


.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}


.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 20px;
}

.hero h1 .accent {
  background: var(--grad-mauve);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 620px;
}

.stat {
  background: rgba(255, 255, 255, .7);
  padding: 16px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .8);
}

.stat .n {
  font-size: 22px;
  font-weight: 900;
  color: 7d4f50;
  font-family: 'Cormorant Garamond', serif;
}

.stat .l {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(110, 79, 126, .15));
}

.float-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-card .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.float-card .t {
  font-size: 13px;
  color: var(--muted);
}

.float-card .v {
  font-weight: 900;
  font-size: 15px;
}

.float-1 {
  top: 30px;
  right: -20px;
  animation: float 6s ease-in-out infinite;
}

.float-2 {
  bottom: 40px;
  left: -20px;
  animation: float 6s ease-in-out infinite reverse;
}

.float-1 .ico {
  background: var(--blush-2);
  color: var(--ink);
}

.float-2 .ico {
  background: #fdf3e2;
  color: var(--gold);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media(max-width:880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 48px 0 72px;
  }

  .section {
    padding: 72px 0;
  }
}

/* Section header */
.s-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.s-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.s-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 14px;
}

.s-head p {
  color: var(--muted);
  font-size: 17px;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
  transition: .3s;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.trust-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 28px;


}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--muted);
  font-size: 14px;
}

@media(max-width:880px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* About */
.about {
  background: var(--grad);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 4/5;
}

.about-img::before {
  content: "";
  position: absolute;
  inset: -20px;
  border: 2px solid var(--gold);
  border-radius: 36px;
  z-index: -1;
  transform: translate(15px, 15px);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .s-eyebrow {
  display: block;
  text-align: right;
}

.about-content h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 8px;
  text-align: right;
}

.doc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--mauve-deep);
  font-weight: 700;
}

.doc-title {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 15px;
}

.about-content>p {
  color: var(--muted);
  margin-bottom: 24px;
}

.quals {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.qual {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.qual .ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 900;
}

.qual span {
  font-weight: 500;
  font-size: 15px;
}

@media(max-width:880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2,
  .about-content .s-eyebrow {
    text-align: center;
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.svc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--grad);
  border-radius: 0 0 0 100%;
  opacity: .5;
  transition: .3s;
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.svc:hover::before {
  width: 120px;
  height: 120px;
  opacity: .8;
}

.svc-ico {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--grad-mauve);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
}

.svc h3 {
  font-size: 19px;
  margin-bottom: 10px;
  position: relative;
}

.svc p {
  color: var(--muted);
  font-size: 15px;
  position: relative;
}

@media(max-width:880px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Why choose */
.why {
  background: var(--grad);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.why-card {
  background: #fff;
  padding: 28px 18px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: .3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  display: block;
}

.why-card h3 {
  font-size: 15px;
}

@media(max-width:880px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Testimonials */
.testi-wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.testi-track {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testi-slides {
  display: flex;
  transition: transform .5s ease;
}

.testi {
  flex: 0 0 100%;
  padding: 48px 56px;
  background: var(--blush);
  text-align: center;
  border-radius: var(--radius-lg);
}

.testi .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold);
  line-height: .5;
  display: block;
  margin-bottom: 8px;
}

.testi p {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.8;
}

.testi .who {
  font-weight: 700;
  color: var(--muted);
}

.testi .stars {
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: 3px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testi-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--muted);
  transition: .3s;
  padding: 0;
}

.testi-dots button.active {
  background: var(--muted);
  width: 30px;
  border-radius: 5px;
}

.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  font-size: 20px;
  color: var(--mauve);
  transition: .2s;
}

.testi-nav:hover {
  background: var(--muted);
  color: #fff;
}

.testi-nav.prev {
  right: -22px;
}

.testi-nav.next {
  left: -22px;
}

@media(max-width:720px) {
  .testi {
    padding: 36px 24px;
  }

  .testi-nav {
    display: none;
  }
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: .3s;
}

.faq.open {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

.faq-q .plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: .3s;
  font-size: 18px;
}

.faq.open .plus {
  background: var(--mauve);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 24px;
  color: var(--muted);
}

.faq.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* CTA */
.cta {
  padding: 0;
}

.cta-box {
  background: var(--grad-mauve);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}

.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.cta-box::before {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .08);
  top: -100px;
  right: -100px;
}

.cta-box::after {
  width: 400px;
  height: 400px;
  background: rgba(201, 169, 110, .18);
  bottom: -200px;
  left: -100px;
}

.cta-box h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 14px;
  position: relative;
}

.cta-box p {
  font-size: 17px;
  opacity: .92;
  margin-bottom: 32px;
  max-width: 560px;
  margin-inline: auto;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

.cta-box .btn-gold {
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 420px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.ci {
  background: #fff;
  padding: 20px 22px;
  border-radius: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  transition: .3s;
}

.ci:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateX(-4px);
}

.ci .ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blush);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci .t {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.ci .v {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

@media(max-width:880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .75);
  padding: 64px 0 24px;
  margin-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer a {
  font-size: 14px;
  transition: .2s;
}

.footer a:hover {
  color: var(--gold);
}

.footer .logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  transition: .3s;
  color: #fff;
}

.social a:hover {
  background: var(--gold);
  color: #fff;
}

@media(max-width:880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Floating WhatsApp */
.fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 40;
  box-shadow: 0 14px 40px rgba(37, 211, 102, .5);
  font-size: 28px;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 14px 40px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 14px 40px rgba(37, 211, 102, .5), 0 0 0 18px rgba(37, 211, 102, 0);
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}