:root {
  --rose: #e77599;
  --rose-deep: #c94d78;
  --rose-dark: #8b3558;
  --rose-pale: #f9dbe5;
  --cream: #fff9f7;
  --paper: #fffdfc;
  --ink: #362831;
  --muted: #73636c;
  --aqua: #73d3cd;
  --aqua-pale: #dff8f5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(115, 59, 80, 0.13);
  --shadow-soft: 0 12px 34px rgba(115, 59, 80, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 7%, rgba(231, 117, 153, .08), transparent 28rem),
    radial-gradient(circle at 94% 24%, rgba(115, 211, 205, .09), transparent 26rem),
    var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-shell { padding: 96px 0; }
.section-compact { padding: 30px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 77, 120, .08);
  background: rgba(255, 249, 247, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 62px; height: 58px; object-fit: contain; border-radius: 15px; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 1.02rem; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .78rem; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .94rem; font-weight: 700; }
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s ease; }

.hero { padding-top: 70px; min-height: 760px; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-deep);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-weight: 800;
  font-size: .73rem;
}
.eyebrow.light { color: rgba(255,255,255,.82); }
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(4rem, 7.5vw, 7rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 760;
}
.hero h1 span { color: var(--rose); font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 600; }
.hero-tagline { margin: 24px 0 8px; color: var(--rose-dark); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3vw, 2.4rem); font-style: italic; }
.hero-services { max-width: 610px; margin: 0; color: var(--muted); font-size: clamp(1.04rem, 1.6vw, 1.24rem); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 32px; }
.hero-meta span { padding: 9px 14px; border: 1px solid rgba(201,77,120,.18); border-radius: 999px; background: rgba(255,255,255,.66); font-size: .88rem; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .94rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--rose), var(--rose-deep)); box-shadow: 0 12px 28px rgba(201,77,120,.24); }
.btn-ghost { border: 1px solid rgba(54,40,49,.13); background: rgba(255,255,255,.72); }
.btn-light { color: var(--rose-dark); background: var(--white); box-shadow: 0 12px 30px rgba(85,31,52,.14); }
.btn.wide { width: 100%; }

.hero-visual { position: relative; min-height: 550px; display: grid; place-items: center; }
.soft-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 430px; height: 430px; background: linear-gradient(135deg, rgba(249,219,229,.92), rgba(255,255,255,.38)); top: 30px; right: 20px; }
.orb-two { width: 230px; height: 230px; background: rgba(115,211,205,.18); bottom: 40px; left: 0; }
.logo-card {
  position: relative;
  z-index: 2;
  width: min(92%, 480px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(201,77,120,.12);
  border-radius: 42% 58% 52% 48% / 48% 42% 58% 52%;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  animation: morph 12s ease-in-out infinite alternate;
}
.logo-card img { width: 100%; height: 100%; object-fit: contain; border-radius: 24px; }
.floating-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 84px;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: .83rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}
@keyframes morph { to { border-radius: 55% 45% 42% 58% / 45% 55% 45% 55%; } }

.intro-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 34px;
  border: 1px solid rgba(201,77,120,.10);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}
.intro-card h2, .section-heading h2, .location-card h2, .contact-copy h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1; letter-spacing: -.045em; }
.intro-pills { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.intro-pills span { padding: 10px 14px; border-radius: 999px; background: var(--rose-pale); color: var(--rose-dark); font-size: .84rem; font-weight: 800; }

.section-heading { margin-bottom: 38px; }
.section-heading h2 { max-width: 760px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(201,77,120,.11);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.79);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -74px;
  bottom: -76px;
  background: linear-gradient(135deg, rgba(231,117,153,.14), rgba(115,211,205,.12));
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose-deep);
  font-weight: 900;
  font-size: .8rem;
}
.service-card h3 { position: relative; z-index: 1; margin: 58px 0 22px; max-width: 280px; font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.1; letter-spacing: -.03em; }
.card-line { position: relative; z-index: 1; width: 56px; height: 3px; border-radius: 3px; background: var(--rose); }

.appointment-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 46px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0, rgba(255,255,255,.18), transparent 16rem),
    linear-gradient(135deg, var(--rose-dark), var(--rose-deep));
  box-shadow: var(--shadow);
}
.appointment-inner h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.appointment-inner p:not(.eyebrow) { margin: 10px 0 0; font-size: 1.08rem; font-weight: 700; }

.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.location-chip { margin: 0; padding: 10px 14px; border-radius: 999px; background: var(--aqua-pale); color: #327a76; font-weight: 800; font-size: .83rem; }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; align-items: stretch; }
.gallery-card { position: relative; min-height: 510px; margin: 0; overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); background: #eaf2f2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-card:hover img { transform: scale(1.025); }

.location-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(223,248,245,.86), rgba(255,255,255,.86));
  border: 1px solid rgba(115,211,205,.22);
}
.pin { width: 54px; height: 54px; flex: 0 0 auto; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--aqua); position: relative; box-shadow: var(--shadow-soft); }
.pin::after { content: ""; position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--white); top: 19px; left: 19px; }

.social-panel {
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,77,120,.09);
}
.social-panel .section-heading { margin-bottom: 26px; }
.social-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.social-links a, .social-item {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(201,77,120,.12);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff, #fff7fa);
  font-weight: 800;
}
.social-links a { transition: transform .2s ease, border-color .2s ease; }
.social-links a:hover { transform: translateY(-3px); border-color: rgba(201,77,120,.35); }
.social-mark { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--rose); font-size: 1.2rem; font-weight: 900; }
.social-item { color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 60px;
  align-items: center;
  padding: 54px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 9% 2%, rgba(231,117,153,.12), transparent 20rem),
    rgba(255,255,255,.82);
  border: 1px solid rgba(201,77,120,.10);
  box-shadow: var(--shadow-soft);
}
.contact-note { margin: 16px 0 0; color: var(--muted); font-size: 1.05rem; }
.contact-card { padding: 30px; border-radius: var(--radius-lg); background: var(--ink); color: var(--white); }
.phone-link { display: block; font-size: clamp(1.8rem, 4vw, 3.1rem); line-height: 1; font-weight: 800; letter-spacing: -.05em; }
.contact-card p { margin: 12px 0 28px; color: rgba(255,255,255,.72); }

.site-footer { padding: 34px 0; border-top: 1px solid rgba(201,77,120,.09); background: rgba(255,255,255,.58); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 28px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 58px; height: 54px; object-fit: contain; border-radius: 12px; }
.footer-brand div, .footer-info { display: grid; gap: 3px; }
.footer-brand span, .footer-info span { color: var(--muted); font-size: .82rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: 14px; font-size: .82rem; font-weight: 800; }
.footer-social span { color: var(--muted); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 960px) {
  .section-shell { padding: 74px 0; }
  .section-compact { padding: 24px 0; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .main-nav {
    position: fixed;
    z-index: 1001;
    inset: 88px 18px auto 18px;
    display: grid;
    gap: 2px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px 12px; border-radius: 12px; }
  .main-nav a:hover { background: var(--rose-pale); }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 54px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { text-align: center; }
  .hero h1 { margin-inline: auto; }
  .hero-services { margin-inline: auto; }
  .hero-meta, .hero-actions { justify-content: center; }
  .hero-visual { min-height: 440px; }
  .logo-card { width: min(78vw, 420px); }
  .floating-note { right: 7%; bottom: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; }
  .service-card h3 { margin-top: 36px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { min-height: 430px; }
  .social-links { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; padding: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 52px; height: 48px; }
  .brand-copy small { display: none; }
  .main-nav { inset: 78px 13px auto 13px; }
  .section-shell { padding: 58px 0; }
  .section-compact { padding: 18px 0; }
  .hero { padding-top: 38px; }
  .hero h1 { font-size: clamp(3.3rem, 18vw, 5.2rem); }
  .hero-tagline { font-size: 1.55rem; }
  .hero-meta { display: grid; }
  .hero-actions { display: grid; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 350px; }
  .logo-card { width: min(88vw, 350px); padding: 25px; }
  .orb-one { width: 300px; height: 300px; }
  .orb-two { width: 170px; height: 170px; }
  .floating-note { right: 2px; bottom: 30px; font-size: .76rem; }
  .intro-card { display: grid; padding: 25px; }
  .intro-pills { justify-content: flex-start; }
  .section-heading { margin-bottom: 26px; }
  .split-heading { display: grid; align-items: start; }
  .location-chip { width: max-content; }
  .service-card { padding: 24px; }
  .appointment-inner { display: grid; padding: 30px 25px; }
  .appointment-inner .btn { width: 100%; }
  .gallery-card { min-height: 310px; border-radius: 22px; }
  .location-card { padding: 25px; }
  .location-card h2 { font-size: 2rem; }
  .pin { width: 46px; height: 46px; }
  .pin::after { width: 14px; height: 14px; top: 16px; left: 16px; }
  .social-panel { padding: 26px; }
  .contact-grid { padding: 26px; border-radius: 24px; }
  .contact-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-social { grid-column: auto; }
}
