:root {
  --black: #050404;
  --black-soft: #0d0908;
  --charcoal: #17100f;
  --panel: #120c0b;
  --gold: #d9a75d;
  --gold-bright: #f5d18c;
  --rose: #d94a72;
  --rose-soft: #f5b5c5;
  --cream: #fff1d7;
  --muted: #cbb59c;
  --white: #ffffff;
  --line: rgba(245, 209, 140, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-brand: "Cinzel", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 82px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--cream);
  background:
    radial-gradient(ellipse at 78% 0%, rgba(200, 140, 35, 0.28), transparent 48%),
    radial-gradient(ellipse at 12% 55%, rgba(130, 80, 20, 0.14), transparent 38%),
    #080503;
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 80%);
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-label,
.eyebrow {
  display: inline-flex;
  color: var(--rose-soft);
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #1a0d05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 32px rgba(217, 167, 93, 0.24);
}

.btn-outline {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.btn-outline:hover {
  background: rgba(245, 209, 140, 0.08);
  border-color: var(--gold);
}

.btn-full {
  width: 100%;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(5, 4, 4, 0.72);
  border-bottom: 1px solid rgba(245, 209, 140, 0.14);
  backdrop-filter: blur(18px);
}

.header.scrolled {
  background: rgba(5, 4, 4, 0.94);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.34);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  color: rgba(255, 241, 215, 0.86);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.nav-cta {
  padding: 0.7rem 1rem;
  color: #1a0d05 !important;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-bright);
  transition: var(--transition);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 4, 0.92) 0%, rgba(5, 4, 4, 0.58) 46%, rgba(5, 4, 4, 0.78) 100%)
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--black) 0%, transparent 34%),
    radial-gradient(circle at 20% 44%, rgba(217, 167, 93, 0.2), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 3rem;
  align-items: end;
  padding: 10rem 0 5rem;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.2rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--gold-bright);
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
}

.hero-tagline {
  max-width: 620px;
  margin: 1.35rem 0 2rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-card {
  padding: 1.2rem;
  background: rgba(8, 5, 5, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(245, 209, 140, 0.22);
  margin-bottom: 1rem;
}

.hero-card strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.05;
  margin: 0.35rem 0;
}

.hero-card p,
.card-kicker {
  color: var(--muted);
}

.card-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: #090606;
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-strip-grid div {
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.service-strip-grid div:last-child {
  border-right: 0;
}

.service-strip span {
  display: block;
  color: var(--rose-soft);
  font-family: var(--font-brand);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-strip strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.services {
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 100%;
  padding: 1.5rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--panel);
  border: 1px solid var(--line);
  transition: transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 209, 140, 0.6);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-card h3 {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.service-card p {
  min-height: 4.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(245, 209, 140, 0.16);
}

.price-from {
  color: var(--rose-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.price-amount {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.price-old {
  color: rgba(255, 241, 215, 0.45);
  text-decoration: line-through;
}

.service-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--rose-soft);
  font-weight: 700;
  font-size: 0.85rem;
}

.services-loading {
  grid-column: 1 / -1;
  color: var(--muted);
  text-align: center;
}

.about {
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-copy {
  max-width: 560px;
}

.about-lead {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--muted);
}

.about-features {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.about-features li {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.15rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(245, 209, 140, 0.16);
  align-items: center;
}

.about-features span {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--rose-soft);
  font-family: var(--font-brand);
}

.about-features strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  color: var(--gold-bright);
}

.about-features small {
  grid-column: 2;
  grid-row: 2;
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.about-board {
  padding: 0.75rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-board img {
  width: 100%;
  object-fit: cover;
}

.booking {
  background:
    linear-gradient(rgba(5, 4, 4, 0.82), rgba(5, 4, 4, 0.9))
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.booking-intro {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.booking-note {
  margin-top: 2rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.booking-note strong,
.booking-note span {
  display: block;
}

.booking-note strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.booking-note span {
  color: var(--muted);
}

.booking-form {
  padding: 1.4rem;
  background: rgba(9, 6, 6, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--rose-soft);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(245, 209, 140, 0.26);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-group textarea {
  min-height: 112px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(217, 167, 93, 0.18);
}

.form-group select option {
  color: #1a0d05;
}

.form-note {
  min-height: 1.4rem;
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
}

.form-note.success {
  color: #8ff0b6;
}

.form-note.error {
  color: #ff9a9a;
}

.gallery {
  background: transparent;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.gallery-tab {
  min-height: 40px;
  padding: 0.55rem 1rem;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-tab.active,
.gallery-tab:hover {
  color: #1a0d05;
  background: var(--gold-bright);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.85rem;
  color: var(--gold-bright);
  background: rgba(5, 4, 4, 0.78);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-align: center;
}

.gallery-item.hidden {
  display: none;
}

.testimonials {
  background: transparent;
}

.testimonials-slider {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.stars {
  color: var(--gold-bright);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
}

.testimonial-card footer {
  margin-top: 1.4rem;
}

.testimonial-card cite {
  display: block;
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 700;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--gold-bright);
}

.contact {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.contact-copy>p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  max-width: 580px;
  margin-top: 2rem;
}

.contact-list a {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.contact-list span {
  color: var(--rose-soft);
  font-family: var(--font-brand);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--gold-bright);
}

.contact-panel {
  padding: 1.3rem;
  background: rgba(5, 4, 4, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-panel img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 1px solid var(--line);
}

.contact-panel h3 {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  color: var(--muted);
  border-top: 1px solid rgba(245, 209, 140, 0.14);
}

.contact-panel li span:last-child {
  color: var(--cream);
  text-align: right;
}

.footer {
  background: #030202;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.footer-brand strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.footer-brand span,
.footer p {
  color: var(--muted);
}

.footer-bottom {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(245, 209, 140, 0.14);
}

.footer-bottom p {
  font-size: 0.88rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1024px) {

  .hero-content,
  .booking-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .hero-card {
    max-width: 420px;
  }

  .booking-intro {
    position: static;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

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

@media (max-width: 768px) {
  :root {
    --header-h: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: rgba(5, 4, 4, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem;
    border-bottom: 1px solid rgba(245, 209, 140, 0.12);
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    align-items: center;
    min-height: 94vh;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(5, 4, 4, 0.7), rgba(5, 4, 4, 0.94))
  }

  .hero-content {
    padding: 5rem 0 3rem;
  }

  .service-strip-grid,
  .services-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-strip-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip-grid div:last-child {
    border-bottom: 0;
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .contact-panel li {
    display: grid;
  }

  .contact-panel li span:last-child {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .logo span {
    font-size: 1.25rem;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .booking-form,
  .testimonial-card {
    padding: 1rem;
  }
}

/* ── 3D Tilt Glare Overlay ────────────────────────────────────────────── */
.tilt-glare {
  pointer-events: none;
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 241, 215, 0.18) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform-origin: center center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border-radius: inherit;
}

/* ══════════════════════════════════════════════════════════════════════════
   MOUSE MOVEMENT TRIGGER SYSTEM
══════════════════════════════════════════════════════════════════════════ */

/* ── Hide OS cursor when motion engine is active ─────────────────────── */
body.mm-cursor-active,
body.mm-cursor-active * {
  cursor: none !important;
}

/* ── Custom cursor dot ───────────────────────────────────────────────── */
.mm-cursor-dot {
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, top 0.2s ease, left 0.2s ease;
}

.mm-cursor-dot--hover {
  top: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  background: var(--rose-soft);
}

/* ── Custom cursor ring ──────────────────────────────────────────────── */
.mm-cursor-ring {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 209, 140, 0.55);
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.mm-cursor-ring--hover {
  top: -28px;
  left: -28px;
  width: 56px;
  height: 56px;
  border-color: rgba(245, 209, 140, 0.9);
  background: rgba(245, 209, 140, 0.06);
}

/* ── Cursor spotlight layer ──────────────────────────────────────────── */
.mm-spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

/* ── Magnetic button glow (amplified on hover) ───────────────────────── */
.btn:hover,
.nav-cta:hover,
.gallery-tab:hover {
  box-shadow: 0 0 28px rgba(245, 209, 140, 0.2), 0 0 60px rgba(245, 209, 140, 0.08);
}

/* ── Parallax orbs ───────────────────────────────────────────────────── */
.mm-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.55;
}

.mm-orb--gold {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(217, 167, 93, 0.45), transparent 70%);
  top: 10%;
  right: 8%;
}

.mm-orb--rose {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217, 74, 114, 0.3), transparent 70%);
  bottom: 15%;
  left: 5%;
}

.mm-orb--soft {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 209, 140, 0.2), transparent 70%);
  top: 55%;
  left: 45%;
}

.mm-orb--sm {
  width: 160px;
  height: 160px;
  filter: blur(40px);
}

/* ── Floating particles ──────────────────────────────────────────────── */
.mm-particle {
  position: fixed;
  border-radius: 50%;
  background: var(--gold-bright);
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
  top: 0;
  left: 0;
  box-shadow: 0 0 6px rgba(245, 209, 140, 0.5);
}

/* ── Section CSS-variable driven background shift ────────────────────── */
.hero {
  background:
    radial-gradient(
      circle at calc(var(--mm-x, 0.78) * 100%) calc(var(--mm-y, 0.1) * 100%),
      rgba(245, 209, 140, 0.12) 0%,
      transparent 55%
    );
}

/* ── Heading character shimmer ───────────────────────────────────────── */
.mm-word {
  display: inline-block;
  white-space: nowrap;
}

.mm-char {
  display: inline-block;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), text-shadow 0.2s ease;
  will-change: transform;
  text-shadow: 0 0 calc(var(--mm-char-t, 0) * 15px) rgba(245, 209, 140, calc(var(--mm-char-t, 0) * 0.85));
  transform: translateY(calc(var(--mm-char-t, 0) * -5px));
}

/* ── Click ripple ────────────────────────────────────────────────────── */
.mm-ripple {
  position: fixed;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 209, 140, 0.7);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99997;
  animation: mm-ripple-burst 0.65s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}

@keyframes mm-ripple-burst {
  0%   { width: 0;     height: 0;     opacity: 0.9; }
  60%  { width: 80px;  height: 80px;  opacity: 0.4; }
  100% { width: 140px; height: 140px; opacity: 0; }
}

/* ── Disable all MM effects on touch/mobile ──────────────────────────── */
@media (hover: none), (max-width: 768px) {
  .mm-cursor-dot,
  .mm-cursor-ring,
  .mm-spotlight,
  .mm-particle,
  .mm-orb,
  .mm-ripple {
    display: none !important;
  }

  body.mm-cursor-active,
  body.mm-cursor-active * {
    cursor: auto !important;
  }
}