
:root {
  --ink: #272230;
  --muted: #6d6573;
  --paper: #fbf8f4;
  --white: #ffffff;
  --plum: #704d84;
  --plum-dark: #4f365e;
  --plum-soft: #e8deed;
  --rose: #d85c91;
  --mustard: #d8a62a;
  --sage: #4f8069;
  --line: rgba(79, 54, 94, .16);
  --shadow: 0 22px 60px rgba(55, 38, 66, .14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 244, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(60, 43, 67, .06); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--plum); color: white; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  box-shadow: 0 8px 20px rgba(112,77,132,.25);
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: .96rem; }
.brand-copy small { color: var(--muted); margin-top: 5px; font-size: .72rem; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; font-size: .88rem; font-weight: 600; color: #4c4550; position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--plum); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta { padding: 11px 17px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); margin: 6px 0; transition: .25s ease; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; text-transform: uppercase; letter-spacing: .14em; color: var(--plum); font-weight: 700; font-size: .75rem; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.section-heading h2, .hero h1 { margin: 0; letter-spacing: -.045em; line-height: .98; font-weight: 600; }
.section-heading h2 { font-size: clamp(2.7rem, 5vw, 5.2rem); }
em { font-family: "Playfair Display", Georgia, serif; font-weight: 500; color: var(--plum); }
.lead { color: var(--muted); font-size: 1.15rem; }
.centered { text-align: center; }
.centered .eyebrow { justify-content: center; }

.hero { position: relative; min-height: calc(100vh - 82px); display: grid; align-items: center; overflow: hidden; padding-top: 75px; }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(112,77,132,.13); border-radius: 50%; left: -230px; top: 10%; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .75; pointer-events: none; }
.hero-orb-a { width: 300px; height: 300px; background: rgba(216,166,42,.12); right: -90px; top: 45px; }
.hero-orb-b { width: 170px; height: 170px; background: rgba(216,92,145,.11); left: 42%; bottom: 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(4rem, 8vw, 8.2rem); }
.hero h1 em { display: inline-block; }
.hero-name { font-size: clamp(1.3rem, 2.3vw, 2rem); font-weight: 700; margin: 27px 0 4px; }
.hero-focus { color: var(--muted); font-size: 1rem; margin: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 35px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 0 20px; font-weight: 700; font-size: .88rem; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--plum); color: white; box-shadow: 0 12px 28px rgba(112,77,132,.22); }
.btn-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.hero-schedule { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.hero-schedule article { display: flex; gap: 12px; padding: 17px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.58); }
.schedule-icon { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 50%; background: var(--plum-soft); color: var(--plum-dark); }
.hero-schedule small { color: var(--muted); display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-schedule strong { font-size: .9rem; }
.hero-schedule p { margin: 3px 0 0; color: var(--muted); font-size: .77rem; line-height: 1.35; }

.hero-visual { min-height: 650px; position: relative; }
.soft-frame { position: relative; border-radius: var(--radius-lg); padding: 6px; background: linear-gradient(135deg, rgba(112,77,132,.32), rgba(216,166,42,.18), rgba(255,255,255,.95)); box-shadow: var(--shadow); }
.soft-frame::after { content: ""; position: absolute; inset: -12px; z-index: -1; border-radius: inherit; background: rgba(112,77,132,.09); filter: blur(18px); }
.soft-frame img { width: 100%; height: auto; border-radius: calc(var(--radius-lg) - 6px); }
.hero-photo { width: min(80%, 430px); margin-left: auto; }
.hero-mini { position: absolute; left: 0; bottom: 40px; width: 49%; max-width: 250px; transform: rotate(-3deg); }
.focus-card { position: absolute; right: -10px; bottom: 20px; max-width: 225px; padding: 17px 19px; background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 16px 45px rgba(55,38,66,.14); }
.focus-card span { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.focus-card strong { display: block; line-height: 1.25; margin-top: 3px; }

.profile { background: #f3edf4; position: relative; overflow: hidden; }
.profile::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(216,166,42,.12); right: -120px; bottom: -150px; }
.profile-grid { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 90px; position: relative; z-index: 1; }
.profile-badge { display: inline-flex; margin-top: 22px; padding: 11px 16px; border-radius: 999px; background: white; border: 1px solid var(--line); font-weight: 600; color: var(--plum-dark); }
.profile-visual { position: relative; max-width: 430px; margin-left: auto; }
.portrait-card img { aspect-ratio: auto; }
.profile-note { position: absolute; left: -70px; bottom: 42px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: rgba(255,255,255,.94); border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(55,38,66,.12); }
.profile-note-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 6px rgba(79,128,105,.12); }
.profile-note small { display: block; color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; }
.profile-note strong { font-size: .92rem; }

.attention { position: relative; }
.attention-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; margin-top: 58px; }
.attention-card { position: relative; overflow: hidden; min-height: 590px; padding: 36px; border-radius: 30px; background: white; border: 1px solid var(--line); box-shadow: 0 22px 55px rgba(55,38,66,.08); }
.attention-card.second { background: var(--plum-dark); color: white; }
.attention-number { position: absolute; right: 24px; top: 17px; font-size: 5rem; line-height: 1; font-weight: 700; color: rgba(112,77,132,.07); }
.second .attention-number { color: rgba(255,255,255,.06); }
.attention-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--plum-soft); color: var(--plum-dark); font-size: 1.25rem; }
.second .attention-icon { background: rgba(255,255,255,.12); color: white; }
.card-kicker { margin: 26px 0 3px; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 700; color: var(--plum); }
.second .card-kicker { color: #dac9e4; }
.attention-card h3 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.04em; line-height: 1.05; }
.time { margin: 12px 0 0; font-size: 1.45rem; font-weight: 700; }
.time span { color: var(--muted); font-weight: 400; margin: 0 5px; }
.second .time span { color: #cbbdd1; }
.appointment { display: inline-flex; margin: 14px 0 0; padding: 7px 12px; background: #f2e9c8; color: #5c4a0d; border-radius: 999px; font-size: .8rem; font-weight: 700; }
.card-photo { margin-top: 32px; box-shadow: none; }
.card-photo img { max-height: 240px; object-fit: contain; background: #f8f4f1; }
.online-panel { position: absolute; left: 36px; right: 36px; bottom: 36px; height: 230px; border: 1px solid rgba(255,255,255,.15); border-radius: 26px; background: radial-gradient(circle at 50% 50%, rgba(216,92,145,.2), transparent 45%); overflow: hidden; }
.online-ring { position: absolute; width: 120px; height: 120px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 35px rgba(255,255,255,.035), 0 0 0 70px rgba(255,255,255,.02); }
.online-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: white; box-shadow: 0 0 0 7px rgba(255,255,255,.09); animation: pulse 2.4s ease-in-out infinite; }
.online-dot.one { top: 25%; left: 22%; }
.online-dot.two { top: 60%; right: 20%; animation-delay: .5s; background: #e8bf55; }
.online-dot.three { bottom: 18%; left: 38%; animation-delay: 1s; background: #e77aae; }
@keyframes pulse { 50% { transform: scale(1.25); box-shadow: 0 0 0 12px rgba(255,255,255,.03); } }

.spaces { background: #fff; }
.spaces-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.gallery-hint { margin: 0 0 7px; color: var(--muted); font-size: .85rem; }
.gallery { columns: 4 220px; column-gap: 14px; }
.gallery-item { width: 100%; margin: 0 0 14px; padding: 5px; border: 1px solid rgba(112,77,132,.17); border-radius: 20px; background: linear-gradient(135deg, #fff, #f4edf5); cursor: zoom-in; break-inside: avoid; box-shadow: 0 12px 28px rgba(55,38,66,.07); overflow: hidden; transition: transform .28s ease, box-shadow .28s ease; }
.gallery-item:hover, .gallery-item:focus-visible { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(55,38,66,.13); outline: none; }
.gallery-item img { width: 100%; height: auto; border-radius: 15px; -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 2%, #000 98%, transparent 100%); mask-image: linear-gradient(to bottom, transparent 0, #000 2%, #000 98%, transparent 100%); }

.reviews { background: var(--plum-dark); color: white; overflow: hidden; position: relative; }
.reviews::before, .reviews::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); }
.reviews::before { width: 420px; height: 420px; left: -180px; top: -150px; }
.reviews::after { width: 300px; height: 300px; right: -120px; bottom: -140px; }
.light .eyebrow, .light h2 em { color: #e5cde9; }
.light h2 { color: white; }
.reviews-inner { min-height: 480px; display: grid; place-items: center; text-align: center; position: relative; z-index: 1; }
.review-art { width: min(100%, 720px); display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 10px; color: #e5cde9; }
.quote-mark { font-family: Georgia,serif; font-size: 5rem; line-height: 1; opacity: .5; }
.review-lines { width: min(470px,60vw); display: grid; gap: 12px; }
.review-lines i { display: block; height: 9px; border-radius: 999px; background: rgba(255,255,255,.13); }
.review-lines i:nth-child(2) { width: 78%; margin-inline: auto; }
.review-lines i:nth-child(3) { width: 55%; margin-inline: auto; }
.review-caption { max-width: 620px; margin: 0 auto; color: #d9cedd; font-size: .92rem; }

.social { background: #f4efe9; }
.social-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.social-list { display: grid; gap: 12px; }
.social-card { min-height: 105px; display: flex; align-items: center; gap: 18px; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 22px; transition: transform .22s ease, box-shadow .22s ease; }
.social-card:hover { transform: translateX(5px); box-shadow: 0 14px 35px rgba(55,38,66,.09); }
.social-icon { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; border-radius: 17px; background: var(--plum-soft); color: var(--plum-dark); font-size: 1.45rem; font-weight: 700; }
.instagram-card .social-icon { background: #f5dbe6; color: #9a3764; }
.tiktok-card .social-icon { background: #e5eeee; color: #2e4c4c; }
.social-card small { display: block; color: var(--muted); margin-bottom: 3px; }
.social-card strong { font-size: 1.05rem; }

.site-footer { background: #251e2a; color: #eee5f1; padding: 36px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.site-footer strong { font-size: 1.05rem; }
.site-footer p { margin: 4px 0 0; color: #bfb2c6; font-size: .84rem; }

.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(24,18,27,.94); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; padding: 70px 85px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-image { max-width: min(100%, 1100px); max-height: calc(100vh - 130px); width: auto; height: auto; object-fit: contain; border-radius: 16px; box-shadow: 0 28px 90px rgba(0,0,0,.45); }
.lightbox-close, .lightbox-nav { position: absolute; border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.08); color: white; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(8px); }
.lightbox-close { right: 24px; top: 20px; width: 46px; height: 46px; border-radius: 50%; font-size: 2rem; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 50px; height: 70px; border-radius: 18px; font-size: 2.5rem; }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-count { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); color: white; font-size: .8rem; letter-spacing: .08em; }

.reveal { opacity: 1; transform: none; transition: transform .25s ease, box-shadow .25s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .section-pad { padding: 88px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 82px; left: 20px; right: 20px; display: grid; gap: 0; padding: 10px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); opacity: 0; transform: translateY(-10px) scale(.98); pointer-events: none; transition: .22s ease; }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 14px 13px; border-radius: 13px; }
  .main-nav a:hover { background: #f6f0f7; }
  .main-nav a::after { display: none; }
  .nav-cta { border: 0; }
  .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); }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 620px; max-width: 620px; margin: 0 auto; width: 100%; }
  .profile-grid { gap: 55px; }
  .profile-note { left: -30px; }
  .social-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 72px 0; }
  .nav-wrap { min-height: 72px; }
  .main-nav { top: 72px; left: 14px; right: 14px; }
  .brand-copy strong { font-size: .88rem; }
  .brand-copy small { font-size: .68rem; }
  .brand-mark { width: 38px; height: 38px; }

  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .hero-name { margin-top: 22px; }
  .hero-schedule { grid-template-columns: 1fr; }
  .hero-visual { min-height: 530px; }
  .hero-photo { width: 82%; }
  .hero-mini { width: 45%; bottom: 35px; }
  .focus-card { right: 0; bottom: 0; max-width: 190px; }

  .profile-grid { grid-template-columns: 1fr; }
  .profile-visual { margin: 0 auto; }
  .profile-note { left: 12px; bottom: 20px; }
  .profile-note strong { font-size: .82rem; }

  .attention-grid { grid-template-columns: 1fr; }
  .attention-card { min-height: 540px; padding: 28px; }
  .online-panel { left: 28px; right: 28px; bottom: 28px; }

  .spaces-head { display: block; }
  .gallery-hint { margin-top: 20px; }
  .gallery { columns: 2 145px; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; border-radius: 16px; padding: 4px; }
  .gallery-item img { border-radius: 12px; }

  .review-art { gap: 12px; }
  .quote-mark { font-size: 3rem; }
  .footer-grid { display: grid; }

  .lightbox { padding: 70px 12px 58px; }
  .lightbox-nav { top: auto; bottom: 17px; transform: none; width: 48px; height: 42px; border-radius: 14px; }
  .lightbox-nav.prev { left: 14px; }
  .lightbox-nav.next { right: 14px; }
  .lightbox-count { bottom: 28px; }
}

@media (max-width: 430px) {
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-visual { min-height: 470px; }
  .hero-mini { bottom: 45px; }
  .focus-card { bottom: 2px; font-size: .83rem; }
  .attention-card { min-height: 500px; }
  .gallery { columns: 2 120px; }
  .social-card { padding: 16px; min-height: 92px; }
  .social-card strong { font-size: .92rem; }
}
.brand-mark::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 50% 50% 50% 12%;
  transform: rotate(-18deg);
}
