:root {
  --bg: #fefefe;
  --bg2: #f9f7fa;
  --bg3: #f2eff5;
  --rose: #d4a5b5;
  --rose-deep: #b85a7a;
  --rose-pale: #e8c9d4;
  --champagne: #8b735a;
  --champagne-light: #e6d9c7;
  --mauve: #9b7a8a;
  --text: #2c1e35;
  --text-muted: #6b5b7a;
  --text-dim: #9a8ba3;
  --border: rgba(44, 30, 53, 0.1);
  --border-strong: rgba(44, 30, 53, 0.2);
  --primary: #b85a7a;
  --primary-dark: #9b4f6f;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --silver-1: #4a4a4a;
  --silver-2: #6e6e6e;
  --silver-3: #2d2d2d;
  --gold-1: #c9952a;
  --gold-2: #e8b84b;
  --gold-3: #a07820;
  --plat-1: #4a90d9;
  --plat-2: #7bb8f0;
  --plat-3: #1a5fa8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 20%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.25s var(--ease-expo), height 0.25s var(--ease-expo), opacity 0.25s;
  will-change: transform;
}

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(232, 160, 176, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-expo), width 0.3s var(--ease-expo), height 0.3s var(--ease-expo), background 0.3s, border-color 0.3s;
  will-change: transform;
}

.cursor.hovered {
  width: 14px;
  height: 14px;
  background: var(--rose-pale);
}

.cursor-follower.hovered {
  width: 48px;
  height: 48px;
  border-color: var(--rose-deep);
  background: rgba(196, 104, 130, 0.08);
}

.topbar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 64px;
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  font-size: 12.5px;
  letter-spacing: 0.03em;
}

.topbar a {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--rose);
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 68px;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-expo);
}

nav.scrolled {
  background: rgba(254, 254, 254, 0.98);
  box-shadow: 0 8px 40px rgba(44, 30, 53, 0.15);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.nav-logo span {
  color: var(--rose);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-deep);
  transition: width 0.3s var(--ease-expo);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-pill {
  background: transparent;
  border: 1px solid var(--rose-deep);
  color: var(--rose);
  padding: 9px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.25s var(--ease-expo);
  position: relative;
  overflow: hidden;
}

.nav-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-expo);
  z-index: -1;
  border-radius: 40px;
}

.nav-pill:hover {
  color: #fff;
}

.nav-pill:hover::before {
  transform: scaleX(1);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide.prev {
  opacity: 0;
  transform: scale(0.96);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(44, 30, 53, 0.25) 0%,
      rgba(44, 30, 53, 0.1) 40%,
      rgba(44, 30, 53, 0.5) 100%);
}


.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  padding: 0;
}

.sdot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--rose);
  border-color: var(--rose);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle at 20% 30%, rgba(232, 160, 176, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(212, 184, 150, 0.06) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 60px 60px, -80px 80px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  color: var(--rose);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--rose-deep);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 9vw, 104px);
  font-weight: 400;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(44, 30, 53, 0.4);
}

.split-chars .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate(6deg);
  animation: charIn 0.7s var(--ease-back) forwards;
}

@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 240, 248, 0.85);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(44, 30, 53, 0.3);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line span {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rose-deep);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

.btn-rose {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s var(--ease-expo);
  box-shadow: 0 8px 32px rgba(184, 90, 122, 0.35);
}

.btn-rose::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.btn-rose:hover::before {
  opacity: 1;
}

.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(184, 90, 122, 0.45);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 15px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s var(--ease-expo);
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: scale(1.02);
}

section {
  padding: 110px 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}

.tag::before {
  content: '✦';
  font-size: 8px;
}

.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 18px;
}

.h2 em {
  font-style: italic;
  color: var(--rose-pale);
}

.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
}

.rule {
  width: 48px;
  height: 1px;
  background: var(--mauve);
  margin: 20px 0;
}

.about {
  background: var(--bg2);
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
  transition: filter 0.6s, transform 0.6s var(--ease-expo);
}

.about-visual:hover .about-img-main {
  filter: brightness(0.95) saturate(1);
  transform: scale(1.01);
}

.about-img-inset {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--bg2);
  filter: brightness(0.9) saturate(0.8);
  transition: transform 0.5s var(--ease-expo), filter 0.5s;
}

.about-visual:hover .about-img-inset {
  transform: translate(-6px, -6px);
  filter: brightness(0.95) saturate(1);
}

.about-since {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--bg3);
  border: 1px solid var(--border-strong);
  padding: 20px 24px;
  text-align: center;
  transition: transform 0.4s var(--ease-back);
}

.about-visual:hover .about-since {
  transform: translateY(-4px);
}

.about-since strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--rose);
  line-height: 1;
}

.about-since span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}

.pillar {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 18px 20px;
  transition: border-color 0.3s, transform 0.3s var(--ease-expo), box-shadow 0.3s;
}

.pillar:hover {
  border-color: var(--rose-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196, 104, 130, 0.12);
}

.pillar-icon {
  color: var(--rose);
  font-size: 16px;
  margin-bottom: 10px;
}

.pillar h4 {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.tel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--text);
  text-decoration: none;
  transition: gap 0.3s var(--ease-back);
}

.tel-row:hover {
  gap: 20px;
}

.tel-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(196, 104, 130, 0.15);
  border: 1px solid var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  transition: background 0.3s, transform 0.3s var(--ease-back);
}

.tel-row:hover .tel-icon {
  background: var(--rose-deep);
  transform: scale(1.12) rotate(-10deg);
}

.services {
  background: var(--bg);
}

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.services-mosaic-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.services-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3px;
}

.svc {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: none;
}

.svc.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.svc img,
.svc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.7);
  transition: filter 0.6s var(--ease-expo), transform 0.7s var(--ease-expo);
}

.svc:hover img,
.svc:hover .svc-video {
  filter: brightness(0.45) saturate(0.5);
  transform: scale(1.08);
}

.svc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196, 104, 130, 0.0);
  transition: background 0.5s;
}

.svc:hover::after {
  background: rgba(196, 104, 130, 0.06);
}

.svc-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 22px 22px;
  background: linear-gradient(to top, rgba(13, 10, 15, 0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-expo);
}

.svc:hover .svc-label {
  transform: translateY(0);
}

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

.svc-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s 0.05s, transform 0.35s 0.05s var(--ease-expo);
}

.svc:hover .svc-tag {
  opacity: 1;
  transform: translateY(0);
}

.stats-strip {
  background: var(--rose-deep);
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%, rgba(0, 0, 0, 0.08) 100%);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
}

.stat-item {
  padding: 10px;
  border-right: 1px solid rgba(44, 30, 53, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  color: var(--bg);
  margin-bottom: 8px;
}

.stat-num sup {
  font-size: 28px;
}

.stat-lab {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.testimonials {
  background: var(--bg2);
}

.testi-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
}

.testi-header .rule {
  margin: 20px auto;
}

.testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 34px 28px;
  transition: border-color 0.3s, transform 0.4s var(--ease-expo), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.tcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 104, 130, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.tcard:hover::before {
  opacity: 1;
}

.tcard:hover {
  border-color: var(--rose-deep);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.tcard-stars {
  color: var(--rose);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.tcard-q {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 0.5;
  color: var(--mauve);
  margin-bottom: 16px;
}

.tcard-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}

.tcard-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.tcard-role {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 2px;
}

.plans {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.plans-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.plans-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.plans-slide.active {
  opacity: 1;
}

.plans-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(10, 6, 18, 0.88) 0%,
      rgba(25, 12, 38, 0.82) 40%,
      rgba(10, 6, 18, 0.90) 100%);
}

.plans .container {
  position: relative;
  z-index: 2;
}

.plans-head {
  text-align: center;
  margin-bottom: 72px;
}

.plans-head .h2 em {
  color: var(--rose);
}

.plans-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  border-radius: 2px;
  padding: 44px 36px 40px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.plan-features {
  flex: 1;
}

.plan-card:hover {
  transform: translateY(-10px);
}

.plan-shine {
  position: absolute;
  top: -60%;
  left: -60%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.6s var(--ease-expo);
  pointer-events: none;
}

.plan-card:hover .plan-shine {
  transform: translate(40%, 40%);
}

.silver {
  background: linear-gradient(145deg, #1a1a1a 0%, #2e2e2e 50%, #1c1c1c 100%);
  border: 1px solid rgba(120, 120, 120, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(160, 160, 160, 0.1);
}

.silver:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(160, 160, 160, 0.15), 0 0 0 1px rgba(120, 120, 120, 0.4);
}

.gold {
  background: linear-gradient(145deg, #1a1200 0%, #2e2000 50%, #1a1500 100%);
  border: 1px solid rgba(201, 149, 42, 0.4);
  box-shadow: 0 20px 60px rgba(160, 120, 0, 0.2), inset 0 1px 0 rgba(232, 184, 75, 0.15);
}

.gold:hover {
  box-shadow: 0 32px 80px rgba(201, 149, 42, 0.35), inset 0 1px 0 rgba(232, 184, 75, 0.2), 0 0 0 1px rgba(201, 149, 42, 0.5);
}

.plan-popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #1a1200;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
}

.platinum {
  background: linear-gradient(145deg, #0a1628 0%, #0e1f3d 50%, #081222 100%);
  border: 1px solid rgba(74, 144, 217, 0.35);
  box-shadow: 0 20px 60px rgba(26, 95, 168, 0.2), inset 0 1px 0 rgba(123, 184, 240, 0.12);
}

.platinum:hover {
  box-shadow: 0 32px 80px rgba(74, 144, 217, 0.35), inset 0 1px 0 rgba(123, 184, 240, 0.2), 0 0 0 1px rgba(74, 144, 217, 0.5);
}

.plan-tier-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.35em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.silver-badge {
  background: rgba(80, 80, 80, 0.4);
  color: #b0b0b0;
  border: 1px solid rgba(120, 120, 120, 0.4);
}

.gold-badge {
  background: rgba(201, 149, 42, 0.18);
  color: var(--gold-2);
  border: 1px solid rgba(201, 149, 42, 0.4);
}

.platinum-badge {
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.2), rgba(123, 184, 240, 0.1));
  color: var(--plat-2);
  border: 1px solid rgba(74, 144, 217, 0.4);
}

.plan-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 6px;
}

.silver .plan-name {
  color: #c8c8c8;
}

.gold .plan-name {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-1));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

@keyframes goldShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.platinum .plan-name {
  background: linear-gradient(135deg, #a8d8ff, #fff 40%, #7bb8f0 60%, #c8e8ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: platShimmer 4s linear infinite;
}

@keyframes platShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.plan-tagline {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  opacity: 0.7;
}

.silver .plan-tagline {
  color: #909090;
}

.gold .plan-tagline {
  color: var(--gold-1);
}

.platinum .plan-tagline {
  color: var(--plat-2);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 22px;
  font-family: 'Playfair Display', serif;
}

.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.silver .price-currency,
.silver .price-num {
  color: #c8c8c8;
}

.gold .price-currency,
.gold .price-num {
  color: var(--gold-2);
}

.platinum .price-currency,
.platinum .price-num {
  color: #a8d8ff;
}

.plan-guests {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid;
}

.silver .plan-guests {
  color: #787878;
  border-color: rgba(120, 120, 120, 0.2);
}

.gold .plan-guests {
  color: rgba(201, 149, 42, 0.7);
  border-color: rgba(201, 149, 42, 0.2);
}

.platinum .plan-guests {
  color: rgba(74, 144, 217, 0.7);
  border-color: rgba(74, 144, 217, 0.2);
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
}

.silver .plan-features li {
  color: rgba(200, 200, 200, 0.8);
}

.gold .plan-features li {
  color: rgba(232, 216, 180, 0.85);
}

.platinum .plan-features li {
  color: rgba(180, 210, 240, 0.85);
}

.pf-check {
  font-size: 11px;
  font-weight: 700;
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.silver .pf-check {
  color: #7a7a7a;
}

.gold .pf-check {
  color: var(--gold-2);
}

.platinum .pf-check {
  color: var(--plat-2);
}

.pf-no {
  opacity: 0.4;
}

.plan-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.35s var(--ease-expo);
  position: relative;
  overflow: hidden;
}

.plan-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.plan-btn:hover::before {
  opacity: 1;
}

.silver-btn {
  background: linear-gradient(135deg, #3a3a3a, #555, #3a3a3a);
  background-size: 200% auto;
  color: #e0e0e0;
  border: 1px solid rgba(140, 140, 140, 0.4);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.silver-btn:hover {
  background-position: right center;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(160, 160, 160, 0.4);
  transform: translateY(-2px);
}

.gold-btn {
  background: linear-gradient(135deg, var(--gold-3), var(--gold-1), var(--gold-2), var(--gold-1));
  background-size: 200% auto;
  color: #1a1200;
  box-shadow: 0 6px 28px rgba(201, 149, 42, 0.4);
  animation: goldBtnShimmer 3s linear infinite;
}

@keyframes goldBtnShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.gold-btn:hover {
  box-shadow: 0 12px 40px rgba(201, 149, 42, 0.55);
  transform: translateY(-2px) scale(1.01);
}

.platinum-btn {
  background: linear-gradient(135deg, var(--plat-3), var(--plat-1), #a8d8ff, var(--plat-2), var(--plat-1));
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 6px 28px rgba(74, 144, 217, 0.4);
  animation: platBtnShimmer 4s linear infinite;
}

@keyframes platBtnShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.platinum-btn:hover {
  box-shadow: 0 12px 40px rgba(74, 144, 217, 0.55);
  transform: translateY(-2px) scale(1.01);
}

.plans-note {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.plans-note a {
  color: var(--rose-pale);
  text-decoration: none;
  border-bottom: 1px solid var(--rose-deep);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.plans-note a:hover {
  color: var(--rose);
}

.featured {
  transform: translateY(-16px);
}

.featured:hover {
  transform: translateY(-26px);
}

.team {
  background: var(--bg);
}

.team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tmember-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  margin-bottom: 18px;
}

.tmember-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.6);
  transition: filter 0.5s, transform 0.6s var(--ease-expo);
}

.tmember:hover .tmember-img img {
  filter: brightness(0.72) saturate(0.5);
  transform: scale(1.05);
}

.tmember-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(196, 104, 130, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.tmember:hover .tmember-overlay {
  opacity: 1;
}

.tmember-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 3px;
  transition: color 0.25s;
}

.tmember:hover .tmember-name {
  color: var(--rose-pale);
}

.tmember-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

.enquiry {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.enquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.enquiry-info {
  padding-top: 12px;
}

.info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  transition: transform 0.3s var(--ease-expo);
}

.info-block:hover {
  transform: translateX(6px);
}

.info-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.3s, border-color 0.3s;
}

.info-block:hover .info-icon {
  background: rgba(196, 104, 130, 0.12);
  border-color: var(--rose);
}

.info-text strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 3px;
}

.info-text span {
  color: var(--text-muted);
  font-size: 13.5px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fg {
  margin-bottom: 26px;
}

.fg label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--text);
  padding: 12px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, padding-left 0.3s var(--ease-expo);
  appearance: none;
}

.fg select option {
  background: var(--bg3);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--text-dim);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-bottom-color: var(--rose);
  padding-left: 6px;
}

.fg textarea {
  resize: none;
  height: 90px;
}

.form-btn {
  position: relative;
  overflow: hidden;
  background: var(--rose-deep);
  color: #fff;
  border: none;
  width: 100%;
  padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 40px;
  transition: all 0.3s var(--ease-expo);
}

.form-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 40px;
}

.form-btn:hover::after {
  opacity: 1;
}

.form-btn:hover {
  color: var(--bg);
  transform: scale(1.01);
  box-shadow: 0 14px 40px rgba(196, 104, 130, 0.35);
}

.partners {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0;
  overflow: hidden;
}

.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
}

.partner {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  transition: color 0.3s, transform 0.3s var(--ease-back);
}

.partner:hover {
  color: var(--rose);
  transform: translateY(-3px);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 130px 40px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1478147427282-58a87a433b38?w=1600&q=80') center/cover no-repeat;
  will-change: transform, filter;
  transition: filter 0.45s var(--ease-expo);
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 30, 53, 0.4);
  transition: background 0.45s var(--ease-expo);
}

.cta-banner:hover .cta-bg {
  filter: brightness(1.04);
}

.cta-banner:hover .cta-bg::after {
  background: rgba(44, 30, 53, 0.32);
}

.cta-banner:hover .h2 em {
  color: var(--rose-deep);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-banner .h2 {
  margin: 0 auto 20px;
  max-width: 700px;
  color: #fff;
}

.cta-banner .body-text {
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
}

footer {
  background: var(--bg2);
  color: var(--text-muted);
  padding: 84px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.85;
  max-width: 270px;
  margin-top: 14px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--champagne);
  margin-top: 12px;
}

.footer-contact a {
  color: var(--champagne);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
}

.footer-logo span {
  color: var(--rose);
}

.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s, padding-left 0.25s var(--ease-expo);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--rose);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}

.footer-bottom .love {
  color: var(--text-dim);
}

.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
}

.reveal-up {
  transform: translateY(52px);
}

.reveal-fade {
  transform: translateY(18px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up.in,
.reveal-fade.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: translate(0);
}

.stagger-child {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}

.stagger-child.in {
  opacity: 1;
  transform: translateY(0);
}

.featured.stagger-child.in {
  transform: translateY(-16px);
}

.featured.stagger-child:hover {
  transform: translateY(-26px);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.7s var(--ease-expo), visibility 0.7s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--text);
  letter-spacing: 0.1em;
  animation: logoBreath 1.8s ease-in-out infinite;
}

.loader-logo span {
  color: var(--rose);
}

@keyframes logoBreath {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.97);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.loader-bar {
  width: 160px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rose-deep);
  animation: loaderSlide 1.4s var(--ease-expo) forwards;
}

@keyframes loaderSlide {
  to {
    left: 0;
  }
}

.magnetic {
  transform-origin: center center;
  transition: transform 0.35s var(--ease-expo);
}

@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }

  .nav-links,
  .nav-pill {
    display: none;
  }

  .topbar {
    padding: 10px 24px;
    gap: 18px;
  }

  .container {
    padding: 0 24px;
  }

  section {
    padding: 72px 0;
  }

  .about-inner,
  .enquiry-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    height: 380px;
  }

  .about-img-inset {
    display: none;
  }

  .services-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .services-mosaic-wrap {
    padding: 0 24px;
  }

  .svc.tall {
    grid-row: span 1;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .testi-row,
  .team-row {
    grid-template-columns: 1fr 1fr;
  }

  .frow {
    grid-template-columns: 1fr;
  }

  .plans-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured {
    transform: translateY(0);
  }

  .featured:hover {
    transform: translateY(-10px);
  }

  .featured.stagger-child.in {
    transform: translateY(0);
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }
}

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

  .testi-row,
  .team-row {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .partners-inner {
    gap: 28px;
  }

  .plan-card {
    padding: 32px 24px 28px;
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  transform: scale(1.1);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: blur(6px);
  transition: filter 1.5s ease;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}

.hero-overlay {
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1.2);
  }
}

.hero.loaded .hero-video {
  filter: blur(0);
}

@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero-fallback {
    display: block;
  }
}

.svc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-video {
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.7);
}

.svc:hover .svc-video {
  transform: scale(1.08);
  filter: brightness(0.5);
}

.svc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}