:root {
  --ink: #0d1b1e;
  --ink-soft: #1a3338;
  --paper: #f6f1e8;
  --cream: #fbf7f0;
  --gold: #c4a265;
  --gold-light: #e0c992;
  --gold-deep: #9a7a3e;
  --teal: #1c4a52;
  --teal-deep: #0e3036;
  --white: #fff;
  --muted: #6b7c80;
  --line: rgba(13, 27, 30, 0.1);
  --shadow: 0 30px 60px rgba(13, 27, 30, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.cursor, .cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999; border-radius: 50%;
  mix-blend-mode: difference; display: none;
}
.cursor { width: 36px; height: 36px; border: 1px solid #fff; transform: translate(-50%, -50%); transition: width .2s, height .2s, background .2s; }
.cursor-dot { width: 6px; height: 6px; background: #fff; transform: translate(-50%, -50%); }
@media (pointer: fine) {
  .cursor, .cursor-dot { display: block; }
  body { cursor: none; }
  a, button { cursor: none; }
}

.page-loader {
  position: fixed; inset: 0; background: var(--teal-deep); color: var(--paper);
  z-index: 10000; display: grid; place-items: center; transition: opacity .7s ease, visibility .7s;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-tooth { width: 54px; margin: 0 auto 16px; color: var(--gold); animation: pulse 1.4s ease-in-out infinite; }
.loader-brand { font-family: "Cormorant Garamond", serif; font-size: 32px; letter-spacing: .04em; }
.loader-sub { letter-spacing: .28em; text-transform: uppercase; font-size: 11px; opacity: .7; margin: 6px 0 22px; }
.loader-bar { width: 160px; height: 2px; background: rgba(255,255,255,.15); margin: 0 auto; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 40%; background: var(--gold); animation: load 1.2s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.08); opacity: .75; } }
@keyframes load { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(13,27,30,.06);
  padding: 10px 0;
}
.header-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 42px; height: 42px; color: var(--teal); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 15px; letter-spacing: .02em; }
.logo-text small { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }
.nav { display: flex; gap: 26px; font-size: 14px; font-weight: 500; }
.nav a { position: relative; opacity: .8; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold);
  transition: width .3s;
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  display: grid; place-items: center;
}
.cart-count {
  position: absolute; top: -2px; right: -2px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold); color: var(--ink); border-radius: 99px; font-size: 10px; font-weight: 700;
  display: grid; place-items: center;
}
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 10px; transition: .3s; }
.header-cta { display: inline-flex; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 12px 22px; font-weight: 600; font-size: 14px;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-full { width: 100%; }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--ink); box-shadow: 0 10px 24px rgba(196,162,101,.28); }
.btn-ghost { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost-light { background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff; }

.hero {
  min-height: 100vh; padding: 140px 0 80px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px;
  width: min(1240px, calc(100% - 40px)); margin: 0 auto;
  position: relative; align-items: center;
}
.hero-bg { position: absolute; inset: -80px -10vw auto; height: 120%; pointer-events: none; z-index: -1; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(50px); opacity: .45; animation: drift 12s ease-in-out infinite;
}
.orb-1 { width: 380px; height: 380px; background: #d7c29a; top: 8%; left: -8%; }
.orb-2 { width: 280px; height: 280px; background: #9ec4c4; top: 30%; right: 4%; animation-delay: -4s; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(13,27,30,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(13,27,30,.05) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(circle at 30% 40%, #000 20%, transparent 70%);
}
@keyframes drift { 50% { transform: translate(20px, -18px) scale(1.05); } }

.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: 11px; color: var(--gold-deep); font-weight: 600; margin-bottom: 14px;
}
.hero-title {
  font-family: "Cormorant Garamond", serif; font-size: clamp(52px, 7vw, 92px);
  line-height: .92; font-weight: 600; margin-bottom: 22px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; animation: rise 1s cubic-bezier(.16,1,.3,1) forwards; transform: translateY(110%); }
.hero-title .line:nth-child(2) span { animation-delay: .12s; }
.hero-title .line:nth-child(3) span { animation-delay: .24s; }
.hero-title .italic { font-style: italic; color: var(--gold-deep); }
@keyframes rise { to { transform: translateY(0); } }
.hero-lead { max-width: 480px; color: var(--muted); font-size: 17px; line-height: 1.6; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; }
.stat strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 36px; }
.stat span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.hero-visual { position: relative; min-height: 520px; }
.hero-card {
  width: 78%; margin-left: auto; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow); position: relative;
}
.hero-card-img { aspect-ratio: 4/5; overflow: hidden; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero-badge {
  position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,.92);
  padding: 12px 16px; border-radius: 16px; backdrop-filter: blur(8px);
}
.stars { color: var(--gold); letter-spacing: 2px; }
.float { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 50% { transform: translateY(-12px); } }
.floating-chip {
  position: absolute; background: var(--white); padding: 10px 16px; border-radius: 999px;
  box-shadow: var(--shadow); font-size: 13px; font-weight: 600; animation: floaty 5s ease-in-out infinite;
}
.chip-1 { top: 12%; left: 4%; }
.chip-2 { top: 42%; left: 0; animation-delay: -1.5s; }
.chip-3 { bottom: 16%; left: 18%; animation-delay: -3s; }
.scroll-hint {
  position: absolute; bottom: 18px; left: 0; display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.scroll-line { width: 48px; height: 1px; background: var(--gold); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--ink); animation: scan 1.6s infinite;
}
@keyframes scan { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.marquee-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--teal-deep); color: var(--paper); }
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap; padding: 18px 0;
  font-family: "Cormorant Garamond", serif; font-size: 28px; animation: marquee 28s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.about, .treatments, .team, .contact { padding: 110px 0; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.about-images { position: relative; min-height: 540px; }
.img-main { width: 78%; border-radius: 28px; overflow: hidden; }
.img-main img, .img-side img { width: 100%; height: 100%; object-fit: cover; }
.img-main { height: 460px; }
.img-side {
  position: absolute; right: 0; bottom: 0; width: 48%; height: 260px;
  border-radius: 22px; overflow: hidden; border: 8px solid var(--cream);
}
.about-stamp {
  position: absolute; left: 18px; bottom: 90px; width: 110px; height: 110px; border-radius: 50%;
  background: var(--gold); color: var(--ink); display: grid; place-items: center; text-align: center;
  font-family: "Cormorant Garamond", serif; box-shadow: var(--shadow); animation: spin 18s linear infinite;
}
.about-stamp span { display: block; font-size: 22px; line-height: 1; }
.about-stamp small { letter-spacing: .16em; text-transform: uppercase; font-size: 10px; font-family: Outfit, sans-serif; }
@keyframes spin { to { transform: rotate(360deg); } }
.section-title { font-family: "Cormorant Garamond", serif; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.05; margin-bottom: 18px; }
.about-copy p { color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.about-list { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.about-list li { display: flex; gap: 14px; align-items: center; font-weight: 500; }
.about-list span {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: var(--paper); font-size: 12px;
}
.about-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-meta strong { display: block; margin-bottom: 6px; }
.about-meta p { color: var(--muted); font-size: 14px; }

.section-head { max-width: 640px; margin-bottom: 36px; }
.section-lead { color: var(--muted); line-height: 1.6; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-chip {
  border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 10px 18px;
  font-size: 13px; font-weight: 500; color: var(--ink); transition: .25s;
}
.filter-chip.active, .filter-chip:hover { background: var(--teal); color: var(--paper); border-color: var(--teal); }
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.treat-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 16px 40px rgba(13,27,30,.06); display: flex; flex-direction: column;
  transform: translateY(24px); opacity: 0; animation: cardIn .7s ease forwards;
  transition: transform .3s, box-shadow .3s;
}
.treat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.treat-card.hide { display: none; }
.treat-photo { height: 190px; overflow: hidden; position: relative; }
.treat-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.treat-card:hover .treat-photo img { transform: scale(1.08); }
.treat-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(13,27,30,.78); color: #fff;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px;
}
.treat-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.treat-body h3 { font-size: 20px; font-family: "Cormorant Garamond", serif; }
.treat-body p { color: var(--muted); font-size: 14px; line-height: 1.55; flex: 1; }
.treat-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-weight: 700; color: var(--teal); }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
}
.qty span { min-width: 16px; text-align: center; font-size: 13px; }
.add-btn { padding: 10px 14px; font-size: 12px; }
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }

.experience { padding: 90px 0; background: var(--paper); }
.exp-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.step { background: #fff; padding: 26px; border-radius: 20px; border: 1px solid var(--line); }
.step-num { font-family: "Cormorant Garamond", serif; font-size: 28px; color: var(--gold-deep); }
.step h3 { margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: 14px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; }
.team-photo { border-radius: 24px; overflow: hidden; height: 280px; margin-bottom: 14px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); transition: .5s; }
.team-card:hover img { filter: grayscale(0); transform: scale(1.05); }
.team-card h3 { font-size: 18px; }
.team-card p { color: var(--muted); font-size: 13px; }

.reviews { padding: 100px 0; background: var(--teal-deep); color: var(--paper); }
.section-head.light .eyebrow { color: var(--gold-light); }
.section-head.light .section-lead { color: rgba(255,255,255,.7); }
.reviews-slider { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 22px; min-height: 240px; display: flex; flex-direction: column;
}
.review-card p { flex: 1; line-height: 1.6; font-size: 14px; margin: 12px 0 18px; color: rgba(255,255,255,.86); }
.review-card footer { display: flex; justify-content: space-between; font-size: 13px; opacity: .8; }

.cta-band { padding: 70px 0; background: linear-gradient(120deg, var(--teal), var(--teal-deep)); color: #fff; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.cta-inner .section-title { margin-bottom: 8px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; }
.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-list strong { display: block; margin-bottom: 4px; }
.contact-list p { color: var(--muted); }
.link { display: inline-block; margin-top: 6px; color: var(--gold-deep); font-weight: 600; font-size: 14px; }
.map-wrap { border-radius: 24px; overflow: hidden; min-height: 380px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

.footer { padding: 28px 0 40px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.footer-copy, .footer-brand p { color: var(--muted); font-size: 13px; }

.cart-drawer {
  position: fixed; inset: 0; background: rgba(13,27,30,.42); z-index: 200;
  opacity: 0; visibility: hidden; transition: .3s;
}
.cart-drawer.open { opacity: 1; visibility: visible; }
.cart-panel {
  position: absolute; right: 0; top: 0; height: 100%; width: min(430px, 100%);
  background: var(--cream); display: flex; flex-direction: column;
  transform: translateX(24px); transition: .35s;
}
.cart-drawer.open .cart-panel { transform: none; }
.cart-head, .cart-foot { padding: 22px; }
.cart-head { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: "Cormorant Garamond", serif; font-size: 28px; }
.icon-close { border: 0; background: none; font-size: 32px; line-height: 1; color: var(--ink); }
.cart-body { flex: 1; overflow: auto; padding: 16px 22px; display: grid; gap: 12px; align-content: start; }
.cart-empty { color: var(--muted); text-align: center; padding: 40px 10px; }
.cart-item {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center;
  background: #fff; padding: 12px; border-radius: 16px;
}
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.cart-item h4 { font-size: 14px; }
.cart-item p { font-size: 12px; color: var(--muted); }
.remove { border: 0; background: none; color: #a33; font-size: 12px; margin-top: 4px; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 16px; }
.cart-note { font-size: 12px; color: var(--muted); margin-bottom: 14px; }

.modal {
  position: fixed; inset: 0; background: rgba(13,27,30,.5); z-index: 220;
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: .3s; padding: 20px;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-panel {
  width: min(640px, 100%); background: var(--cream); border-radius: 24px; padding: 32px;
  position: relative; max-height: 90vh; overflow: auto;
}
.modal-panel h2 { font-family: "Cormorant Garamond", serif; font-size: 34px; margin-bottom: 18px; }
.modal-panel .icon-close { position: absolute; right: 16px; top: 12px; }
form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; }
input, select, textarea {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff; font-size: 14px;
}
.order-summary { background: #fff; border-radius: 14px; padding: 14px; font-size: 13px; color: var(--muted); }

.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 999px; font-size: 13px;
  opacity: 0; pointer-events: none; z-index: 300; transition: .3s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.whats-float {
  position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 24px rgba(37,211,102,.35);
  z-index: 90; animation: pulse 2.4s infinite;
}

.reveal { opacity: 0; transform: translateY(24px); transition: .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 72px; left: 20px; right: 20px; background: var(--cream);
    padding: 18px; border-radius: 16px; flex-direction: column; gap: 14px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .hero, .about-grid, .exp-grid, .contact-grid, .cta-inner, .footer-inner { grid-template-columns: 1fr; display: grid; }
  .hero { padding-top: 120px; min-height: auto; }
  .hero-visual { min-height: 420px; }
  .treat-grid, .team-grid, .reviews-slider { grid-template-columns: 1fr 1fr; }
  .cta-inner { display: flex; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .treat-grid, .team-grid, .reviews-slider, .steps, .form-row, .about-meta { grid-template-columns: 1fr; }
  .hero-card { width: 92%; }
  .img-main { width: 100%; height: 320px; }
  .img-side { width: 58%; height: 180px; }
}
