/* ================================================================
   UNIQUE MEHANDI — hero.css
   Brand: Pondicherry · Bridal & Fine Art Henna
   Theme: Dark maroon + ivory + gold
   Fonts: Poppins (display) + Cormorant Garamond (serif) + DM Sans
   All hero content: CENTER aligned
================================================================ */

/* ── CSS Variables ── */
:root {
  --maroon-deep: #160603;
  --maroon: #2c0c08;
  --maroon-mid: #471410;
  --maroon-light: #6b2018;
  --gold: #c9963c;
  --gold-light: #e8b86d;
  --gold-pale: #f5dfa8;
  --ivory: #fdf6ec;
  --ivory-mid: #f5edd8;
  --ivory-dark: #e8d9b8;
  --text-primary: #fdf6ec;
  --text-muted: rgba(253, 246, 236, 0.62);
  --text-gold: #c9963c;

  /* Changed to Poppins */
  --ff-display: "Poppins", sans-serif;
  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-body: "DM Sans", system-ui, sans-serif;

  --nav-h: 76px;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: auto;
}
body {
  background: var(--maroon-deep);
  color: var(--text-primary);
  font-family: var(--ff-body);
  overflow-x: hidden;
  cursor: none;
}
a {
  text-decoration: none;
  cursor: none;
}
ul {
  list-style: none;
}
img {
  display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--maroon-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ================================================================
   CURSOR
================================================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
.cursor-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 150, 60, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    opacity 0.3s ease,
    border-color 0.25s ease;
}
.cursor-ring.is-hover {
  width: 58px;
  height: 58px;
  opacity: 0.45;
  border-color: var(--gold-light);
}

/* ================================================================
   PRELOADER
================================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--maroon-deep);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Mandala SVG */
.preloader-mandala {
  width: 130px;
  height: 130px;
  animation: mandala-spin 5s linear infinite;
  transform-origin: center;
}
.petal-group-1 {
  transform-origin: 100px 100px;
  animation: mandala-spin-rev 8s linear infinite;
}
.petal-group-2 {
  transform-origin: 100px 100px;
  animation: mandala-spin 12s linear infinite;
}
@keyframes mandala-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes mandala-spin-rev {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* Brand name below mandala */
.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pl-brand-main {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700; /* Bolded for Poppins */
  letter-spacing: 0.4em;
  color: var(--gold);
}
.pl-brand-sub {
  font-family: var(--ff-serif);
  font-size: 0.62rem;
  font-style: italic;
  letter-spacing: 0.35em;
  color: rgba(201, 150, 60, 0.55);
}
.preloader-text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(253, 246, 236, 0.4);
  animation: pl-pulse 2s ease-in-out infinite;
}
.pl-ellipsis::after {
  content: "...";
  animation: pl-dots 1.5s step-end infinite;
}
@keyframes pl-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}
@keyframes pl-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
/* Slightly darkened background for much better contrast */
.navbar.scrolled {
  background: rgba(18, 5, 2, 0.98);
  backdrop-filter: blur(22px);
  border-color: rgba(201, 150, 60, 0.18);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}
/* Enhanced Visibility on Nav Links */
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory); /* Updated for better visibility */
  position: relative;
  transition: color 0.28s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201, 150, 60, 0.5);
  padding: 8px 22px;
  border-radius: 50px; /* Smooth curved pill shape */
  letter-spacing: 0.16em;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.nav-links a.nav-cta::after {
  display: none;
}
.nav-links a.nav-cta:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
}

/* Active State for normal links */
.nav-links a.active {
  color: var(--gold-light);
}
.nav-links a.active::after {
  width: 100%;
}

/* Active State specifically for the Book Now CTA */
.nav-links a.nav-cta.active {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* ================================================================
   HERO SECTION
================================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-h) 4vw 80px;
}

/* ── Background with reduced blur ── */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  /* Reduced blur significantly, tweaked brightness for text visibility */
  filter: blur(2px) saturate(0.8) brightness(0.45);
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero:hover .hero-bg-img {
  transform: scale(1.05);
}

/* Dark gradient over background for text contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 70% at 50% 55%,
      rgba(44, 12, 8, 0.4) 0%,
      transparent 70%
    ),
    linear-gradient(
      to bottom,
      rgba(22, 6, 3, 0.8) 0%,
      rgba(22, 6, 3, 0.3) 35%,
      rgba(22, 6, 3, 0.6) 70%,
      rgba(22, 6, 3, 0.9) 100%
    );
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.35;
  pointer-events: none;
}

/* ── Decorative hanging mandalas ── */
.hero-deco {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 80px;
  height: 100%;
  pointer-events: none;
}
.hero-deco-left {
  left: 3vw;
}
.hero-deco-right {
  right: 3vw;
}
.hero-deco svg {
  width: 100%;
  height: 100%;
}

/* Mandala idle sway animation */
.deco-m {
  transform-origin: 40px 0;
}
.deco-m1 {
  animation: mandalaSway 6s ease-in-out infinite;
}
.deco-m2 {
  animation: mandalaSway 8s ease-in-out infinite 1s;
}
.deco-m3 {
  animation: mandalaSway 10s ease-in-out infinite 2s;
}
@keyframes mandalaSway {
  0%,
  100% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(2.5deg);
  }
  70% {
    transform: rotate(-2.5deg);
  }
}

/* ── Center content block ── */
.hero-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
  gap: 0;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
  opacity: 0; /* JS reveals */
}
.eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.55;
}
.eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.eyebrow-text {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.88;
  white-space: nowrap;
}

/* ── HEADLINE — FULL ELEGANT SERIF ── */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
  line-height: 1;
}
.ht-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.25em;
  overflow: hidden;
}

/* All words default to Serif now */
.ht-word {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  color: var(--ivory);
  letter-spacing: 0.02em;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}

/* Italic variation for "that" and "on" */
.ht-italic {
  font-style: italic !important;
  color: rgba(253, 246, 236, 0.85) !important;
}

/* Gold accent for "your" */
.ht-gold {
  color: var(--gold) !important;
  font-style: italic !important;
  font-weight: 500 !important;
}

/* ── Ornamental SVG divider under heading ── */
.hero-divider {
  width: min(560px, 90vw);
  margin-bottom: 28px;
  opacity: 0; /* JS reveals */
}
.hero-divider svg {
  width: 100%;
  height: auto;
}

/* ── Sub copy (Switched to Poppins) ── */
.hero-sub {
  font-family: var(--ff-display); /* Using Poppins */
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 44px;
  opacity: 0; /* JS reveals */
}
.hero-sub-highlight {
  color: var(--gold-light);
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

/* ── CTA Buttons ── */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  opacity: 0; /* JS reveals */
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--maroon-deep);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 38px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.btn-hero-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn-hero-primary:hover::before {
  transform: translateX(0);
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 150, 60, 0.4);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(201, 150, 60, 0.42);
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: 50px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}
.btn-hero-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 150, 60, 0.07);
  transform: translateY(-2px);
}

/* ── Refined Stats Layout ── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; /* Increased gap for breathing room */
  opacity: 0; /* JS reveals */
  flex-wrap: wrap;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Proper gap between number and label */
}
.hstat-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.hstat-num {
  font-family: var(--ff-serif); /* Serif numbers are highly elegant */
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hstat-plus {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-left: 2px;
}
.hstat-label {
  font-family: var(--ff-display); /* Poppins for clean modern labels */
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.7);
}
.hstat-sep {
  color: rgba(201, 150, 60, 0.3);
  font-size: 1.5rem;
  padding-bottom: 24px;
  padding-top: 20px;
}

/* ================================================================
   WHATSAPP FLOAT
================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5000;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 38px rgba(37, 211, 102, 0.6);
  animation: none;
}
.whatsapp-float svg {
  width: 27px;
  height: 27px;
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow:
      0 8px 28px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow:
      0 8px 28px rgba(37, 211, 102, 0.45),
      0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.wa-tip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(22, 6, 3, 0.92);
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid rgba(201, 150, 60, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.whatsapp-float:hover .wa-tip {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .hero-deco-left {
    left: 1vw;
    width: 64px;
  }
  .hero-deco-right {
    right: 1vw;
    width: 64px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-deco {
    display: none;
  }
  .ht-row:first-child .ht-word {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }
  .ht-row:last-child .ht-word {
    font-size: clamp(3.2rem, 12vw, 5.5rem);
  }
  .ht-italic {
    font-size: clamp(2.5rem, 9vw, 4rem) !important;
  }
  .hero-stats {
    gap: 18px;
  }
  .hstat-sep {
    display: none;
  }
  .hero-divider {
    width: 90vw;
  }
  .eyebrow-text {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }
  .hero-sub {
    font-size: 0.9rem;
  }
  .btn-hero-primary,
  .btn-hero-ghost {
    padding: 12px 30px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: var(--nav-h) 5vw 70px;
  }
  .hero-eyebrow {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .eyebrow-line {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .btn-hero-primary,
  .btn-hero-ghost {
    width: min(300px, 80vw);
    justify-content: center;
  }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
}

/* Mobile nav overlay */
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(22, 6, 3, 0.97);
  backdrop-filter: blur(22px);
  padding: 30px 6vw 40px;
  gap: 26px;
  border-top: 1px solid rgba(201, 150, 60, 0.14);
  z-index: 999;
  animation: mobileNavIn 0.32s var(--ease-out) forwards;
}
@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-links.is-open a {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}
.nav-links.is-open .nav-cta {
  text-align: center;
  padding: 12px 0;
  border: none;
}

/* ================================================================
   UNIQUE MEHANDI — um-about.css
   Theme: Dark Maroon, Gold Accents, Cinzel Title, Poppins Body
================================================================ */

.um-about {
  background: var(--maroon-deep); /* Reverted to dark theme */
  position: relative;
  padding: 120px 5vw;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

/* Background Texture */
.um-about-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* Background Corner Decoration */
.um-about-bg-deco {
  position: absolute;
  z-index: 1;
  width: 400px;
  height: 400px;
  pointer-events: none;
}
.um-about-bg-deco.top-right {
  top: -100px;
  right: -100px;
  transform: rotate(45deg);
  animation: slowSpin 60s linear infinite;
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.um-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8vw;
}

/* ── Visual Side (With Fade & Pedestal Effect) ── */
.um-about-visual {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Pushes the image to anchor exactly at the bottom */
  min-height: 600px;
}

/* Adds a subtle glowing golden pedestal "floor" under the image */
.um-about-visual::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 150, 60, 0.4) 0%,
    transparent 70%
  );
  z-index: 1;
}

.um-about-mandala-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%; /* Scales slightly larger than the image */
  aspect-ratio: 1;
  z-index: 1;
  animation: mandala-spin 20s linear infinite;
}

.um-about-mandala-halo svg {
  width: 100%;
  height: 70%;
}

.um-about-img {
  width: 100%;
  max-width: 450px;
  height: 600px;
  object-fit: contain;
  object-position: center bottom; /* Ensures the sharp crop stays at the bottom edge */
  position: relative;
  z-index: 2;
  filter: drop-shadow(0px 10px 25px rgba(10, 2, 1, 0.8));

  /* CSS MASK: Seamlessly fades the sharp crop at the bottom into transparency */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 0) 98%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 0) 98%
  );
}

/* ── Content Side ── */
.um-about-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.um-about-title {
  /* Using Cinzel (original hero font) */
  font-family: "Poppins";
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ivory);
}

.um-about-title-row {
  display: block;
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.um-about-gold {
  color: var(--gold);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.um-about-divider {
  width: 100%;
  max-width: 400px;
  margin-bottom: 30px;
}
.um-about-divider svg {
  width: 100%;
  height: auto;
}

.um-about-text {
  /* Using Poppins as requested for body text */
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.um-about-signature {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 15px;
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .um-about-inner {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .um-about-visual {
    width: 100%;
  }
  .um-about-img {
    max-width: 350px;
  }
  .um-about-divider {
    margin: 0 auto 30px auto; /* Centered on mobile */
  }
  .um-about-bg-deco.top-right {
    opacity: 0.05; /* Fade out more on mobile to prevent clutter */
  }
}

/* ================================================================
   UNIQUE MEHANDI — um-masterclass-h.css (Horizontal Journey)
================================================================ */
.um-masterclass-h {
  position: relative;
  background: var(--maroon-deep);
  padding: 160px 5vw;
  min-height: 100vh;
  overflow: hidden;
  z-index: 2;
}

/* Backgrounds & Glows */
.um-mc-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}
.um-mc-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 150, 60, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hmc-glow-1 {
  top: 20%;
  left: -200px;
}
.hmc-glow-2 {
  bottom: 10%;
  right: -200px;
}

.um-mc-container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Header Typography */
.um-mc-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.um-mc-eyebrow-wrap,
.mc-line,
.um-mc-subtitle-wrap,
.um-mc-cta-wrap {
  overflow: hidden;
}
.um-mc-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  border: 1px solid rgba(201, 150, 60, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
}
.um-mc-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.mc-line {
  display: block;
}
.mc-gold {
  color: var(--gold);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}
.um-mc-subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
  font-weight: 300;
}

/* HORIZONTAL TIMELINE LAYOUT */
.hmc-track {
  position: relative;
  width: 100%;
  height: 600px; /* Provides space for top and bottom cards */
  margin: 40px 0;
}

/* The Horizontal Horizon Line */
.hmc-line-base {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(201, 150, 60, 0.15);
  transform: translateY(-50%);
  z-index: 1;
}
.hmc-line-fill {
  height: 100%;
  width: 0%; /* GSAP animates this */
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 15px rgba(201, 150, 60, 0.5);
}

/* Steps Container */
.hmc-steps-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

/* Individual Step Wrapper */
.hmc-step {
  position: relative;
  width: 22%; /* Fits 4 columns nicely */
  height: 100%;
  display: flex;
  justify-content: center;
  opacity: 0; /* GSAP Reveal */
}

/* The Diamond Node on the line */
.hmc-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--maroon-deep);
  border: 2px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg); /* Diamond shape */
  z-index: 3;
  transition:
    box-shadow 0.4s ease,
    background 0.4s ease;
}
.hmc-step:hover .hmc-node {
  background: var(--gold);
  box-shadow: 0 0 15px rgba(201, 150, 60, 0.6);
}

/* Connecting Thread (Stem) */
.hmc-stem {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 35px;
  transform: translateX(-50%);
  z-index: 2;
}
.hmc-step.top .hmc-stem {
  bottom: 50%;
  background: linear-gradient(to top, var(--gold), transparent);
}
.hmc-step.bottom .hmc-stem {
  top: 50%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* The Glassmorphic Content Card */
.hmc-card {
  position: absolute;
  width: 100%;
  background: rgba(44, 12, 8, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 150, 60, 0.15);
  padding: 35px 25px;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  z-index: 4;
}
.hmc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(201, 150, 60, 0.08) 0%,
    transparent 100%
  );
  pointer-events: none;
}
.hmc-step:hover .hmc-card {
  border-color: rgba(201, 150, 60, 0.4);
}

/* Card Placements (Staggered) */
.hmc-step.top .hmc-card {
  bottom: calc(50% + 35px); /* Sits above the node & stem */
}
.hmc-step.bottom .hmc-card {
  top: calc(50% + 35px); /* Sits below the node & stem */
}
.hmc-step.top:hover .hmc-card {
  transform: translateY(-5px);
}
.hmc-step.bottom:hover .hmc-card {
  transform: translateY(5px);
}

/* Oversized Watermark Week Number */
.hmc-bg-num {
  position: absolute;
  right: 10px;
  bottom: -15px;
  font-family: var(--ff-serif);
  font-size: 7rem;
  color: rgba(201, 150, 60, 0.06);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

/* Card Typography */
.hmc-card-title {
  position: relative;
  z-index: 2;
  font-family: var(--ff-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hmc-card-desc {
  position: relative;
  z-index: 2;
  font-family: "Poppins";
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* Footer CTA */
.um-mc-footer {
  text-align: center;
  margin-top: 20px;
}
.um-mc-status {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* RESPONSIVE: Fallback to vertical on Mobile/Tablets */
@media (max-width: 950px) {
  .hmc-track {
    height: auto;
    margin: 60px 0;
  }
  .hmc-line-base {
    top: 0;
    left: 15px; /* Line shifts to the left */
    width: 2px;
    height: 100%;
    transform: none;
  }
  .hmc-line-fill {
    width: 100%;
    height: 0%; /* Animates downward */
    background: linear-gradient(to bottom, var(--gold-light), var(--gold));
  }
  .hmc-steps-container {
    position: relative;
    flex-direction: column;
    gap: 40px;
  }
  .hmc-step {
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }
  .hmc-node {
    top: 30px;
    left: 15px; /* Aligns with the left line */
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hmc-stem {
    display: none; /* Hide threads on mobile */
  }
  .hmc-step.top .hmc-card,
  .hmc-step.bottom .hmc-card {
    position: relative;
    top: 0;
    bottom: 0;
    left: 45px; /* Push card right of the line */
    width: calc(100% - 45px);
  }
  .hmc-step.top:hover .hmc-card,
  .hmc-step.bottom:hover .hmc-card {
    transform: translateX(5px); /* Hover goes right on mobile */
  }
}

@media (max-width: 480px) {
  .um-masterclass-h {
    padding: 100px 5vw;
  }
  .um-mc-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
}

/* ================================================================
   UNIQUE MEHANDI — um-stories.css (Dual Marquee Layout)
================================================================ */
.um-stories {
  position: relative;
  background: var(--maroon-deep);
  padding: 140px 0; /* No side padding here to allow full bleed marquee */
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background Texture */
.um-stories-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

/* Header Container */
.um-stories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 2;
  width: 100%;
}

.um-stories-header {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.um-stories-eyebrow-wrap,
.st-line {
  overflow: hidden;
}
.um-stories-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  border: 1px solid rgba(201, 150, 60, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
}
.um-stories-title {
  /* Using your Love & Legacy font for the entire header */
  font-family: var(--ff-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  color: var(--gold);
  line-height: 1.1;
}
.st-serif {
  display: block;
}

/* Marquee Wrapper */
.um-marquee-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0; /* Will fade in via GSAP */
  transform: translateY(30px);
}

/* Edge Fades for Premium Look */
.um-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15vw;
  z-index: 5;
  pointer-events: none;
}
.um-marquee-fade.left {
  left: 0;
  background: linear-gradient(
    to right,
    var(--maroon-deep) 0%,
    transparent 100%
  );
}
.um-marquee-fade.right {
  right: 0;
  background: linear-gradient(to left, var(--maroon-deep) 0%, transparent 100%);
}

/* Marquee Tracks */
.um-marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
}

/* Pause animations when hovering anywhere on the track */
.um-marquee-track:hover .um-marquee-content {
  animation-play-state: paused;
}

.um-marquee-content {
  display: flex;
  gap: 30px;
  /* Adjust animation speed here (higher = slower) */
  animation: scrollLeft 50s linear infinite;
}

/* Second track moves right, starting offset */
.track-right .um-marquee-content {
  animation: scrollRight 45s linear infinite;
}

/* Keyframes */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  } /* -100% of the single content block */
}
@keyframes scrollRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Testimonial Card Styling */
.um-story-card {
  width: 400px;
  background: rgba(22, 6, 3, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 150, 60, 0.15);
  border-radius: 20px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 0.4s ease,
    transform 0.4s ease,
    background 0.4s ease;
  cursor: default; /* Remove standard pointer */
}

/* Hover state on individual cards */
.um-story-card:hover {
  background: rgba(44, 12, 8, 0.8);
  border-color: rgba(201, 150, 60, 0.5);
  transform: scale(1.02);
}

/* Giant background quote */
.st-bg-quote {
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--ff-serif);
  font-size: 14rem;
  color: rgba(201, 150, 60, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}
.um-story-card:hover .st-bg-quote {
  color: rgba(201, 150, 60, 0.08);
}

.st-text {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ivory);
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

.st-author {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(201, 150, 60, 0.15);
  padding-top: 20px;
}
.st-author-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.st-author-role {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .um-story-card {
    width: 300px;
    padding: 30px 25px;
  }
  .st-bg-quote {
    font-size: 10rem;
  }
  .um-marquee-fade {
    width: 10vw;
  }
}

/* ================================================================
   UNIQUE MEHANDI — um-contact.css
================================================================ */
.um-contact {
  position: relative;
  background: var(--maroon-deep);
  padding: 140px 5vw;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

/* Backgrounds */
.um-contact-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}
.um-contact-bg-mandala {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  z-index: 1;
  pointer-events: none;
  animation: mandala-spin-rev 60s linear infinite;
}

.um-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Side: Info */
.um-contact-info {
  display: flex;
  flex-direction: column;
}
.um-contact-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.um-contact-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.ct-gold {
  color: var(--gold);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}
.um-contact-desc {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 450px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Contact Details */
.um-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  border-left: 1px solid rgba(201, 150, 60, 0.3);
  padding-left: 20px;
}
.ct-detail-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
  display: block;
}
.ct-detail-text {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  color: var(--ivory);
}
.ct-detail-text a {
  color: var(--ivory);
  transition: color 0.3s ease;
}
.ct-detail-text a:hover {
  color: var(--gold);
}

/* Social Links */
.um-social-links {
  display: flex;
  gap: 16px;
}
.um-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 150, 60, 0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.3s ease;
}
.um-social-icon svg {
  width: 20px;
  height: 20px;
}
.um-social-icon:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(201, 150, 60, 0.2);
}

/* Right Side: Cream Form */
.um-contact-form-wrap {
  background: var(--ivory); /* Premium Cream Background */
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 30px 60px rgba(10, 2, 1, 0.5);
  position: relative;
  opacity: 0; /* JS Reveal */
  transform: translateY(40px);
}
.ct-form-title {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 30px;
  text-align: center;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ct-form-group {
  margin-bottom: 24px;
}
.ct-input-label {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--maroon-mid);
  margin-bottom: 12px;
  display: block;
}

/* Custom Radios / Pills */
.ct-radio-group {
  display: flex;
  gap: 15px;
}
.ct-radio-label {
  cursor: none; /* Uses custom cursor */
}
.ct-radio-label input {
  display: none;
}
.ct-radio-pill {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(71, 20, 16, 0.2);
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--maroon-mid);
  transition: all 0.3s ease;
}
.ct-radio-label input:checked + .ct-radio-pill {
  background: var(--maroon-deep);
  color: var(--gold);
  border-color: var(--maroon-deep);
}

/* Inputs & Textarea */
.ct-input,
.ct-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(71, 20, 16, 0.2);
  padding: 12px 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--maroon-deep);
  transition: border-color 0.3s ease;
}
.ct-input:focus,
.ct-textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.ct-input::placeholder,
.ct-textarea::placeholder {
  color: rgba(71, 20, 16, 0.4);
}
.ct-textarea {
  resize: none;
}

/* Form Submit Button */
.ct-submit-btn {
  width: 100%;
  background: var(--maroon-deep);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 32px;
  margin-top: 20px;
  border: 1px solid var(--maroon-deep);
  border-radius: 50px;
  cursor: none; /* Custom cursor support */
  transition: all 0.35s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ct-submit-btn:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  border-color: var(--gold);
  box-shadow: 0 12px 25px rgba(201, 150, 60, 0.25);
  transform: translateY(-2px);
}
qa
/* Footer Copyright */
.um-footer {
  background: #0a0302;
  text-align: center;
  padding: 20px 5vw;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: rgba(253, 246, 236, 0.4);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 3;
}

/* Responsive */
@media (max-width: 900px) {
  .um-contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .um-contact-info {
    text-align: center;
    align-items: center;
  }
  .um-contact-details {
    border-left: none;
    padding-left: 0;
    align-items: center;
    border-top: 1px solid rgba(201, 150, 60, 0.3);
    padding-top: 20px;
  }
  .um-contact-bg-mandala {
    display: none; /* Save space on mobile */
  }
}
@media (max-width: 480px) {
  .um-contact {
    padding: 100px 5vw;
  }
  .um-contact-form-wrap {
    padding: 40px 25px;
  }
  .ct-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ct-radio-group {
    flex-direction: column;
    gap: 10px;
  }
  .ct-radio-pill {
    text-align: center;
    width: 100%;
  }
}

/* ================================================================
   UNIQUE MEHANDI — um-footer.css
================================================================ */
.um-footer {
  position: relative;
  background: #080201; /* Slightly darker than maroon-deep for distinction */
  padding: 100px 5vw 40px;
  overflow: hidden;
  z-index: 1;
}

.um-footer-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.um-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* Huge Background Typography */
.um-footer-brand-huge {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.3; /* Barely visible, highly elegant */
  text-align: center;
  white-space: nowrap;
  margin-bottom: 60px;
  user-select: none;
}

/* Footer Grid */
.um-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.um-footer-col {
  display: flex;
  flex-direction: column;
}

.um-footer-title {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.um-footer-text {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 350px;
  font-weight: 300;
}

.um-footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.um-footer-links a,
.ft-disabled {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ivory);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.um-footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(5px);
}

.ft-disabled {
  color: var(--text-muted);
}

/* Footer Bottom Strip */
.um-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 150, 60, 0.15);
  flex-wrap: wrap;
  gap: 20px;
}

.um-footer-copy {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(253, 246, 236, 0.4);
  letter-spacing: 0.05em;
}

.um-footer-legal {
  display: flex;
  gap: 30px;
}

.um-footer-legal a {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(253, 246, 236, 0.4);
  transition: color 0.3s ease;
}

.um-footer-legal a:hover {
  color: var(--gold);
}

/* Back to Top Button */
.um-back-to-top {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none; /* Uses custom cursor */
  transition: opacity 0.3s ease;
}

.um-back-to-top svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.um-back-to-top:hover svg {
  transform: translateY(-4px);
}

/* Developer Link */
.um-footer-developer {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(253, 246, 236, 0.5); /* Blends in with the muted copyright text */
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  text-align: center;
}

.um-footer-developer span {
  color: var(--gold); /* Highlights your name in the brand's gold */
  font-weight: 500;
  transition: color 0.3s ease;
}

.um-footer-developer:hover {
  color: rgba(253, 246, 236, 0.8);
}

.um-footer-developer:hover span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .um-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .um-footer-col:first-child {
    grid-column: span 2;
  }
  .um-footer-text {
    max-width: 100%;
  }
  .um-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .um-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .um-footer-col:first-child {
    grid-column: span 1;
  }
  .um-footer-legal {
    justify-content: center;
  }
  .um-footer-brand-huge {
    font-size: 3.5rem;
    white-space: normal;
  }
}

/* ================================================================
   UNIQUE MEHANDI — um-levels.css (Creative Arch Pricing)
================================================================ */
.um-levels {
  position: relative;
  background: var(--maroon-deep);
  padding: 140px 5vw;
  min-height: 100vh;
  z-index: 2;
  overflow: hidden;
}

.um-levels-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

/* Header */
.um-levels-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.um-levels-eyebrow-wrap,
.lv-line {
  overflow: hidden;
  display: block;
}
.um-levels-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  border: 1px solid rgba(201, 150, 60, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
}
.um-levels-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--ivory);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lv-gold {
  color: var(--gold);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}
.um-levels-subtitle {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* ================================================================
   UNIQUE MEHANDI — um-levels.css (Split Arch Layout)
================================================================ */
.um-levels {
  position: relative;
  background: var(--maroon-deep);
  padding: 140px 5vw;
  min-height: 100vh;
  z-index: 2;
  overflow: hidden;
}

.um-levels-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

/* Header */
.um-levels-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.um-levels-eyebrow-wrap,
.lv-line {
  overflow: hidden;
  display: block;
}
.um-levels-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  border: 1px solid rgba(201, 150, 60, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
}
.um-levels-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--ivory);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lv-gold {
  color: var(--gold);
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}
.um-levels-subtitle {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* The Grid Container */
.um-levels-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* Course card is slightly wider */
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* Arch Cards Base */
.um-level-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 150, 60, 0.2);
  border-radius: 180px 180px 20px 20px;
  padding: 8px;
  position: relative;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
  display: flex;
  flex-direction: column;
}
.um-level-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(201, 150, 60, 0.6);
}

.lv-card-inner {
  background: rgba(22, 6, 3, 0.4);
  border-radius: 172px 172px 12px 12px;
  padding: 50px 30px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Masterclass (Featured) Card */
.lv-main-course {
  background: linear-gradient(
    180deg,
    rgba(71, 20, 16, 0.8) 0%,
    rgba(22, 6, 3, 0.9) 100%
  );
  border: 1px solid rgba(201, 150, 60, 0.5);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(201, 150, 60, 0.05);
  z-index: 3;
}
.lv-main-course .lv-card-inner {
  padding: 60px 40px 40px;
}
.lv-popular-tag {
  position: absolute;
  top: 30px;
  background: var(--gold);
  color: var(--maroon-deep);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(201, 150, 60, 0.4);
}

/* Kit (Secondary) Card */
.lv-kit-card {
  background: linear-gradient(
    180deg,
    rgba(44, 12, 8, 0.6) 0%,
    rgba(22, 6, 3, 0.8) 100%
  );
}
.lv-kit-card .lv-card-inner {
  padding: 50px 30px 40px;
}

/* Typography Shared */
.lv-arch-deco {
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  opacity: 0.8;
  margin-top: 20px;
}
.lv-tier-name {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 5px;
}
.lv-tier-level {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 25px;
}
.lv-gold-text {
  color: var(--gold-light);
  font-weight: 600;
}

/* Course Timings Meta */
.lv-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 25px;
  width: 100%;
  margin-bottom: 25px;
  background: rgba(201, 150, 60, 0.05);
  border: 1px solid rgba(201, 150, 60, 0.1);
  border-radius: 15px;
  padding: 15px;
}
.lv-meta-item {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--ivory);
}
.lv-meta-item span {
  color: var(--gold-light);
  font-weight: 600;
  margin-right: 5px;
}

/* Course Syllabus */
.lv-features-wrap {
  width: 100%;
  margin-bottom: 30px;
}
.lv-features {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.lv-features li {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}
.lv-features li strong {
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.lv-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 0.8rem;
}

/* Mixology Kit specific */
.lv-kit-desc {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.lv-kit-box {
  width: 100%;
  background: rgba(201, 150, 60, 0.05);
  border: 1px dashed rgba(201, 150, 60, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}
.lv-kit-highlight {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 15px;
  text-align: center;
}
.lv-kit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lv-kit-list li {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--ivory);
  position: relative;
  padding-left: 18px;
}
.lv-kit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2rem;
  top: -4px;
}
.lv-addon-extra {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  border: 1px solid rgba(201, 150, 60, 0.15);
}

/* Footer elements */
.mt-auto {
  margin-top: auto; /* Pushes footer to bottom */
}
.lv-footer {
  width: 100%;
  border-top: 1px solid rgba(201, 150, 60, 0.2);
  padding-top: 25px;
}
.lv-price {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 5px;
}
.lv-note {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: rgba(201, 150, 60, 0.6);
  margin-bottom: 20px;
  font-style: italic;
}

/* Buttons */
.um-btn-solid-arch,
.um-btn-ghost-arch {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 0;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: none;
}
.um-btn-solid-arch {
  background: var(--gold);
  color: var(--maroon-deep);
  border: 1px solid var(--gold);
}
.um-btn-solid-arch:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 25px rgba(201, 150, 60, 0.4);
}
.um-btn-ghost-arch {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 150, 60, 0.4);
}
.um-btn-ghost-arch:hover {
  background: rgba(201, 150, 60, 0.1);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 950px) {
  .um-levels-split {
    grid-template-columns: 1fr;
    max-width: 550px;
  }
}
@media (max-width: 768px) {
  .lv-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .um-levels {
    padding: 120px 5vw;
  }
  .um-level-card {
    border-radius: 140px 140px 20px 20px;
  }
  .lv-card-inner {
    border-radius: 132px 132px 12px 12px;
    padding: 40px 20px 30px;
  }
  .lv-kit-list {
    grid-template-columns: 1fr;
  }
}
