:root {
  --bg: #ffffff;
  --text: #4d474a;
  --muted: #7b7377;
  --soft: #fff6fa;
  --soft-2: #fdeaf2;
  --accent: #efbfd2;
  --accent-strong: #d98daf;
  --line: #ece4e8;
  --shadow: 0 20px 50px rgba(176, 139, 157, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236, 228, 232, 0.9);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(217, 141, 175, 0.18);
}
.brand-top {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}
.site-nav a:hover { color: var(--accent-strong); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,191,210,0.55) 0%, rgba(239,191,210,0) 70%);
  pointer-events: none;
}
.hero::before { width: 420px; height: 420px; right: -80px; top: -100px; }
.hero::after { width: 320px; height: 320px; left: -120px; bottom: -80px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}
.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--soft-2);
  color: #93667b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-tag.light {
  background: rgba(255,255,255,0.16);
  color: #fff;
}
.hero h1,
.section h2,
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.06;
  margin: 18px 0 14px;
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
.section h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.lead,
.featured-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-strong), #c97ea0);
  color: #fff;
  box-shadow: 0 14px 30px rgba(201, 126, 160, 0.28);
}
.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-light {
  background: #fff;
  color: #87576e;
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-highlights li {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(236, 228, 232, 0.8);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.large {
  inset: 20px 90px 20px 0;
}
.hero-card.small.top {
  width: 220px;
  height: 220px;
  right: 0;
  top: 0;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fff, var(--soft));
}
.hero-card.small.top img { object-fit: contain; }
.hero-card.small.bottom {
  width: 220px;
  height: 270px;
  right: 0;
  bottom: 14px;
}

.section { padding: 88px 0; }
.intro-grid,
.featured-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}
.info-card,
.service-card,
.contact-card,
.featured-image-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.info-card {
  padding: 28px;
  background: linear-gradient(180deg, #fff, var(--soft));
}
.info-card h3 { margin-top: 0; }
.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  padding: 28px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--soft-2);
  color: var(--accent-strong);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
}
.service-card p { margin: 0; color: var(--muted); }

.featured-treatment {
  background: linear-gradient(180deg, var(--soft), #fff);
}
.featured-copy {
  padding-right: 18px;
}
.featured-image-wrap {
  padding: 14px;
}
.featured-image-wrap img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-auto-flow: dense;
}
.gallery-item {
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item.tall { grid-row: span 2; min-height: 540px; }
.gallery-item.wide { grid-column: span 2; min-height: 300px; }

.location-contact {
  padding-top: 36px;
}
.contact-card {
  padding: 34px;
}
.contact-card.soft {
  background: linear-gradient(180deg, #fff, var(--soft));
}
.contact-card.strong {
  background: linear-gradient(135deg, #b987a0, #d99ab7);
  color: #fff;
  border: 0;
}
.contact-card h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 8px;
}

.site-footer {
  padding: 36px 0 96px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 24px;
  background: var(--soft);
  padding: 10px;
}
.footer-brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}
.footer-brand p,
.site-footer p { color: var(--muted); }

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), #c97ea0);
  box-shadow: 0 16px 34px rgba(201, 126, 160, 0.35);
  font-size: 1.4rem;
  z-index: 60;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .featured-grid,
  .contact-grid,
  .footer-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual { min-height: 500px; }
  .hero-card.large { inset: 20px 80px 20px 0; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-grid,
  .intro-grid,
  .featured-grid,
  .contact-grid,
  .footer-grid,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 36px; }
  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .hero-card {
    position: static;
    min-height: 220px;
  }
  .hero-card.large {
    grid-column: 1 / -1;
    min-height: 360px;
  }
  .hero-card.small.top,
  .hero-card.small.bottom {
    width: auto;
    height: auto;
  }
  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 260px;
  }
  .section { padding: 72px 0; }
  .hero-highlights { grid-template-columns: 1fr; }
}
