/* ═══════════════════════════════════════════════════
   NIAN LUXURY SPA — PREMIUM STYLESHEET
   Colors: Magenta #A01050 | Gold #E8C84A | Cream #FFF8F5
═══════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --magenta: #A01050;
  --magenta-dark: #780c3c;
  --magenta-light: #c01860;
  --gold: #D4AF37;
  --gold-dark: #B8902E;
  --gold-light: #f0d870;
  --gold-deep: #8a6a1f;
  --gold-deepest: #5c4515;
  --bronze: #6b4f1a;
  --cream: #FFF8F5;
  --cream-2: #f9f0eb;
  --charcoal: #1A1A1A;
  --text: #2d2d2d;
  --text-light: #6b5b46;
  --white: #ffffff;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(184, 144, 46, 0.16);
  --shadow-lg: 0 16px 48px rgba(184, 144, 46, 0.22);
}


html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none !important; color: inherit !important; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px  !important;
  font-family: 'Montserrat', sans-serif  !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12) !important;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(232, 200, 74, 0.4) !important;
}
.btn-gold:hover { background: var(--gold-dark) !important; box-shadow: 0 6px 28px rgba(232, 200, 74, 0.5) !important; transform: translateY(-2px) !important; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-magenta {
  background: var(--gold-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-magenta:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ── Typography helpers ── */
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: rgba(232,200,74,0.9); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.section-title em { color: var(--gold-dark); font-style: italic; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }

.section-desc { font-size: 18px; color: var(--text-light); max-width: 560px; }
.section-desc.light { color: rgba(255,255,255,0.75); }

.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 60px; }
.section-header.center .section-desc { text-align: center; }

/* ══════════════════════ NAV ══════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(160,16,80,0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  transition: border-color 0.3s;
}
.navbar.scrolled .nav-logo img { border-color: var(--gold-dark); }
.nav-brand { display: flex; flex-direction: column; line-height: 1.5; }
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color:  var(--gold-dark);
  transition: color 0.3s;
}
.navbar.scrolled .nav-brand-name { color: var(--charcoal); }
.nav-brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}
.navbar.scrolled .nav-brand-sub { color: var(--gold-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--magenta); }
.navbar.scrolled .nav-links a::after { background: var(--magenta); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.35s ease; transform-origin: center; }
.navbar.scrolled .hamburger span { background: var(--charcoal); }
/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 1002;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-overlay.active { display: block; opacity: 1; }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: linear-gradient(160deg, var(--magenta-dark) 0%, #1a0010 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    z-index: 1003;
    padding: 0;
    list-style: none;
    box-shadow: -8px 0 40px rgba(0,0,0,0.35);
    transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }

  /* Top row: brand + close button */
  .nav-close-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 20px 20px;
    border-bottom: 1px solid rgba(232,200,74,0.15);
    margin-bottom: 8px;
  }
  .nav-mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-mobile-brand img {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(232,200,74,0.5);
    object-fit: cover;
  }
  .nav-mobile-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
  }
  .nav-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .nav-close:hover { background: rgba(255,255,255,0.2); }
  .nav-close svg { width: 18px; height: 18px; color: var(--white); }

  /* Nav links */
  .nav-links li { display: block; }
  .nav-close-row { display: flex; }

  .nav-links a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: all 0.2s;
  }
  .nav-links a:hover,
  .nav-links a:focus { color: var(--gold); padding-left: 36px; background: rgba(255,255,255,0.04); }
  .nav-links a::after { display: none; }

  /* Book Now CTA in mobile menu */
  .nav-cta-item { padding: 24px 28px 0; }
  .nav-cta-item .nav-cta {
    display: block;
    text-align: center;
    background: var(--gold) !important;
    color: var(--charcoal) !important;
    padding: 14px 24px !important;
    border-radius: 4px;
    font-weight: 600 !important;
    border-bottom: none !important;
  }
  .nav-cta-item .nav-cta:hover { background: var(--gold-dark) !important; padding-left: 24px !important; }
}

/* hide on large screens (>= 1024px) */
@media (min-width: 1024px) {
.nav-close {
display: none;
}
}
/* ══════════════════════ HERO ══════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--gold-deepest) 0%, var(--gold-deep) 35%, var(--gold-dark) 65%, var(--bronze) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 150px 40px 80px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,200,74,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(232,200,74,0.05) 0%, transparent 40%);
}
.hero-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(200px, 25vw, 400px);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,200,74,0.9);
  margin-bottom: 28px;
}
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: italic;
  color: var(--white);
  display: block;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 44px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 60px;
  padding: 18px 36px;
  flex-wrap: wrap;
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  padding: 4px 24px;
}
.hero-info-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.hero-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.15); } }

/* ══════════════════════ DIVIDER ══════════════════════ */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  max-width: 700px;
  margin: 0 auto;
}
.orn-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0.6; }
.orn-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(232,200,74,0.4);
  opacity: 0.85;
}

/* ══════════════════════ ABOUT ══════════════════════ */
.about {
  padding: 80px 0 100px;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 460px;
}
.about-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 260px;
  font-weight: 700;
  color: rgba(186, 177, 81, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.about-card {
  position: absolute;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px 28px;
  text-align: center;
  border-left: 3px solid var(--gold);
  animation: floatCard 4s ease-in-out infinite;
}
.about-card-1 { top: 30px; left: 20px; animation-delay: 0s; }
.about-card-2 { top: 60px; right: 10px; animation-delay: 1.3s; }
.about-card-3 { bottom: 60px; left: 50%; transform: translateX(-50%); animation-delay: 0.7s; }

@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.about-card-3 { animation: floatCard3 4s ease-in-out infinite 0.7s; }
@keyframes floatCard3 { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}
.about-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-top: 6px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.9;
}
.about-text .btn { margin-top: 12px; }

/* ══════════════════════ SERVICES ══════════════════════ */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gold-deepest) 0%, var(--gold-deep) 50%, #9a7626 100%);
  position: relative;
  overflow: hidden;
}
.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(232,200,74,0.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,200,74,0.2);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  cursor: default;
  backdrop-filter: blur(4px);
}
.service-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(232,200,74,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}
.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.service-icon svg { width: 64px; height: 64px; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.service-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ══════════════════════ WHY US ══════════════════════ */
.why-us {
  padding: 100px 0;
  background: var(--cream-2);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  text-align: center;
  padding: 36px 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(160,16,80,0.06);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.pillar:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-bottom-color: var(--gold);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.pillar:hover .pillar-icon { background: rgb(232, 200, 74); }
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pillar p { font-size: 18px; color: var(--text-light); line-height: 1.75; }

/* ══════════════════════ EXPERIENCE ══════════════════════ */
.experience {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1208 0%, var(--gold-deepest) 50%, #241a0a 100%);
  position: relative;
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,200,74,0.04) 0%, transparent 70%);
}
.exp-cards {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  margin-bottom: 72px;
  position: relative;
}
.exp-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232,200,74,0.15);
  border-radius: 8px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s;
}
.exp-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(232,200,74,0.4); transform: translateY(-4px); }
.exp-card-featured {
  background: rgba(232,200,74,0.1);
  border-color: rgba(232,200,74,0.4);
  transform: translateY(-12px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3);
}
.exp-card-featured:hover { transform: translateY(-16px); }
.exp-card-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}
.exp-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}
.exp-card p { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* Testimonials */
.testimonials { position: relative; max-width: 760px; margin: 0 auto; }
.testimonial-slider {
  position: relative;
  min-height: 220px;
}
.testimonial {
  position: absolute;
  inset: 0;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.testimonial.ts-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.testimonial.ts-exit { opacity: 0; pointer-events: none; position: absolute; }
.testimonial-stars { color: var(--gold); font-size: 20px; letter-spacing: 4px; margin-bottom: 24px; }
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ══════════════════════ CONTACT ══════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.85;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.contact-item:hover .contact-item-icon { background: var(--gold-dark); }
.contact-item-icon svg { width: 18px; height: 18px; color: var(--white); }
.contact-item-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--magenta); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(160,16,80,0.08);
  border: 1px solid rgba(160,16,80,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid rgba(160,16,80,0.12);
  border-radius: var(--radius);
  outline: none;
  transition: all 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--magenta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(160,16,80,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,91,107,0.5); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23A01050' stroke-width='1.5' stroke-linecap='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.contact-form .btn svg { width: 18px; height: 18px; }

/* ══════════════════════ FOOTER ══════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(232,200,74,0.4);
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--white);
  font-weight: 500;
}
.footer-brand-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tagline { color: rgba(232,200,74,0.5); }

/* ══════════════════════ SCROLL ANIMATIONS ══════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 320px; margin-bottom: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-info-bar { border-radius: 12px; padding: 16px 20px; gap: 8px; }
  .hero-divider { display: none; }
  .hero-info-item { padding: 6px 4px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,0,16,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; color: var(--white); }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .exp-cards { grid-template-columns: 1fr; }
  .exp-card-featured { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .section-title { font-size: 28px; }
}

/* ── Smooth scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
.floating-buttons {
          position: fixed;
          right: 0px;
          bottom: 150px;
          display: flex;
          flex-direction: column;
          align-items: center;
          background-color: var(--gold-dark) !important; /* Match purple/maroon from image */
          padding: 15px 10px;
          border-radius: 15px 0px 0px 15px;
          z-index: 9999;
          box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .floating-buttons-left {
          position: fixed;
          left: 0px;
          bottom: 150px;
          display: flex;
          flex-direction: column;
          align-items: center;
          background-color: #CC9933!important; /* Match purple/maroon from image */
          padding: 15px 10px;
          border-radius: 0px 15px 15px 0px;
          z-index: 9999;
          box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .icon-btn {
          color: #fff !important;
          font-size: 24px;
          margin: 10px 0;
          text-decoration: none;
          transition: transform 0.3s ease;
        }
        
        .icon-btn:hover {
          transform: scale(1.2);
        }
        
        .divider {
          width: 30px;
          height: 2px;
          background: #fff;
          margin: 5px 0;
          border-radius: 2px;
        }