/* =========================================================
   BELLA LUXE SALON — Premium Redesign
   Design System: Dark Noir + Champagne Gold + Blush Rose
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* Theme colors — overridden by header.php inline vars from DB */
  --rose: #C8758A;
  --rose2: #6B4C4C;
  --gold: #C9A96E;
  --rose-pale: #F9EEF1;
  --cream: #FDF8F5;
  --dark: #2C1B18;
  --mid: #6B4C4C;
  --muted: #A08080;
  --gold-light: #E8D5B0;
  --white: #fff;

  /* Extended luxury palette */
  --noir: #0D0B10;
  --noir2: #1A1520;
  --noir3: #231E2B;
  --champagne: #D4AF6E;
  --champagne-light: #E8D5B0;
  --champagne-pale: #F5EDD8;
  --ivory: #F8F3EE;
  --ivory2: #F0EAE1;
  --blush: #C8758A;
  --blush2: #A85C72;
  --blush-pale: #F9EEF1;
  --slate: #6B6370;
  --charcoal: #2A2430;

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(0,0,0,.06);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.08);
  --shadow: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.25);
  --shadow-gold: 0 8px 32px rgba(212,175,110,.25);
  --shadow-rose: 0 8px 32px rgba(200,117,138,.22);

  /* Typography */
  --fd: 'Playfair Display', 'Cormorant Garamond', serif;
  --fc: 'Cormorant Garamond', serif;
  --fb: 'DM Sans', sans-serif;

  /* Spacing */
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Transitions */
  --t: .3s cubic-bezier(.4,0,.2,1);
  --t-fast: .15s ease;
  --t-slow: .6s cubic-bezier(.4,0,.2,1);
}

/* === RESET & BASE === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4 { font-family: var(--fd); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem,5.5vw,5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem,3.5vw,3rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.3rem,2.2vw,1.9rem); }
h4 { font-size: clamp(1.1rem,1.8vw,1.4rem); }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: rgba(212,175,110,.25); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 2px; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: transparent;
  transition: background var(--t), border var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.nav.scrolled {
  background: rgba(13,11,16,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,110,.12);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-logo {
  font-family: var(--fd);
  font-size: 1.55rem;
  color: #fff;
  letter-spacing: .01em;
  display: flex; align-items: center; gap: .5rem;
  z-index: 2;
}
.nav-logo .logo-star {
  color: var(--champagne);
  font-size: 1rem;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.nav-links {
  display: flex; gap: 0; list-style: none; align-items: center;
}
.nav-links li a {
  display: block;
  padding: .5rem .95rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute; bottom: 0; left: .95rem; right: .95rem; height: 1px;
  background: var(--champagne);
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--t);
}
.nav-links li a:hover { color: #fff; }
.nav-links li a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--champagne), #B8943A) !important;
  color: var(--noir) !important;
  padding: .55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  box-shadow: 0 4px 16px rgba(212,175,110,.35) !important;
  transition: all var(--t) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(212,175,110,.5) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.ham {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  background: none; border: none; z-index: 2;
}
.ham span {
  display: block; width: 24px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: all var(--t);
}
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media(max-width: 900px) {
  .nav { padding: 0 1.25rem; }
  .ham { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--noir);
    flex-direction: column; gap: 0;
    justify-content: center; align-items: center;
    padding: 5rem 2rem 2rem;
    z-index: 1;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a {
    font-size: 1.6rem;
    font-family: var(--fd);
    font-weight: 400;
    letter-spacing: .02em;
    text-transform: none;
    padding: .875rem;
    color: rgba(255,255,255,.85);
  }
  .nav-links li a::after { display: none; }
  .nav-cta {
    margin-top: 1rem;
    font-size: 1rem !important;
    padding: .875rem 2.5rem !important;
  }
}

/* =========================================================
   HERO — Dark Carousel with Particles
   ========================================================= */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  background: var(--noir);
  overflow: hidden;
  display: flex; align-items: center;
}

/* Particle/shimmer layer */
.hero-particles {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero-particles::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,175,110,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(200,117,138,.07) 0%, transparent 50%);
}

/* Animated shimmer dots */
.hero-dot {
  position: absolute; border-radius: 50%;
  background: rgba(212,175,110,.6);
  animation: float-dot var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes float-dot {
  0%,100% { transform: translateY(0) scale(1); opacity: var(--op, .4); }
  50% { transform: translateY(-20px) scale(1.2); opacity: calc(var(--op, .4) * 1.5); }
}

/* Carousel slides */
.hero-slides { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13,11,16,.85) 0%, rgba(13,11,16,.5) 60%, rgba(13,11,16,.2) 100%);
}

/* Default slide patterns when no photo */
.hero-slide:nth-child(1) .hero-slide-bg {
  background: linear-gradient(135deg, #1A0E18 0%, #2D1B2E 50%, #1A0E18 100%);
}
.hero-slide:nth-child(2) .hero-slide-bg {
  background: linear-gradient(135deg, #0D1520 0%, #1B2640 50%, #0D1520 100%);
}
.hero-slide:nth-child(3) .hero-slide-bg {
  background: linear-gradient(135deg, #1A1200 0%, #2D2000 50%, #1A1200 100%);
}
.hero-slide:nth-child(1) .hero-slide-bg::after { background: none; }
.hero-slide:nth-child(2) .hero-slide-bg::after { background: none; }
.hero-slide:nth-child(3) .hero-slide-bg::after { background: none; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--champagne);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: hero-in .8s var(--t-slow) forwards;
  animation-delay: .3s;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; height: 1px; width: 32px;
  background: linear-gradient(90deg, transparent, var(--champagne));
}
.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--champagne), transparent);
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  max-width: 720px;
  opacity: 0; transform: translateY(25px);
  animation: hero-in .9s ease forwards;
  animation-delay: .5s;
}
.hero h1 em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 300;
}

.hero-desc {
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  opacity: 0; transform: translateY(20px);
  animation: hero-in .8s ease forwards;
  animation-delay: .7s;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: hero-in .8s ease forwards;
  animation-delay: .9s;
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(13,11,16,.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,110,.12);
}
.hero-stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: repeat(4,1fr);
  divide-x: 1px solid rgba(255,255,255,.1);
}
.hero-stat {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background var(--t);
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(212,175,110,.05); }
.hero-stat-n {
  font-family: var(--fd);
  font-size: 2rem;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: .2rem;
}
.hero-stat-l {
  font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* Hero carousel controls */
.hero-controls {
  position: absolute; bottom: 5rem; right: 2.5rem; z-index: 4;
  display: flex; flex-direction: column; gap: .5rem;
  align-items: flex-end;
}
.hero-dots {
  display: flex; gap: .5rem; align-items: center;
}
.hero-dot-btn {
  width: 24px; height: 2px;
  background: rgba(255,255,255,.3);
  border: none; cursor: pointer;
  border-radius: 1px;
  transition: all var(--t);
  padding: 0;
}
.hero-dot-btn.active {
  width: 40px;
  background: var(--champagne);
}

.hero-arrows {
  display: flex; gap: .4rem;
}
.hero-arrow {
  width: 42px; height: 42px;
  border: 1px solid rgba(212,175,110,.3);
  background: rgba(13,11,16,.5);
  color: rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--t);
  backdrop-filter: blur(8px);
}
.hero-arrow:hover {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--noir);
  transform: scale(1.08);
}

/* Custom hero background (user-uploaded photo case) */
.hero-has-photo .hero-slide:nth-child(1) .hero-slide-bg {
  background: none;
}
.hero-has-photo .hero-slide:nth-child(1) .hero-slide-bg::after {
  background: linear-gradient(120deg, rgba(13,11,16,.88) 0%, rgba(13,11,16,.52) 60%, rgba(13,11,16,.2) 100%);
}

@media(max-width: 768px) {
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-controls { right: 1.25rem; }
  .hero-content { padding: 0 1.25rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}
@media(max-width: 480px) {
  .hero-stats { display: none; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--champagne) 0%, #B8943A 100%);
  color: var(--noir);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--t);
  border: none; cursor: pointer; font-family: var(--fb);
  box-shadow: 0 4px 20px rgba(212,175,110,.3);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0; transition: opacity var(--t);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,110,.5);
  color: var(--noir);
}
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent;
  color: rgba(255,255,255,.85);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-size: .82rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--t);
  border: 1px solid rgba(255,255,255,.3);
  cursor: pointer; font-family: var(--fb);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--noir);
  color: var(--champagne);
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--t);
  border: 1px solid rgba(212,175,110,.3);
  cursor: pointer; font-family: var(--fb);
}
.btn-dark:hover {
  background: var(--noir2);
  border-color: var(--champagne);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-rose {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush2) 100%);
  color: #fff;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--t);
  border: none; cursor: pointer; font-family: var(--fb);
  box-shadow: 0 4px 16px rgba(200,117,138,.3);
}
.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,117,138,.45);
}

/* Light mode outline for light sections */
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--charcoal);
  padding: .78rem 1.6rem;
  border-radius: 50px;
  font-size: .78rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--t);
  border: 1px solid rgba(44,36,48,.25);
  cursor: pointer; font-family: var(--fb);
}
.btn-outline-dark:hover {
  border-color: var(--champagne);
  color: #6B4A20;
  background: rgba(212,175,110,.06);
  transform: translateY(-1px);
}

/* =========================================================
   SECTIONS — SHARED
   ========================================================= */
.sec {
  padding: 6rem 2.5rem;
  max-width: 1200px; margin: 0 auto;
}
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .65rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
}
.sec-eyebrow::before {
  content: ''; height: 1px; width: 28px;
  background: var(--champagne);
}
.sec-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--charcoal);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.sec-title em { font-style: italic; color: var(--blush); }
.sec-title.light { color: #fff; }
.sec-desc {
  color: var(--slate);
  max-width: 480px;
  font-size: .95rem;
  line-height: 1.75;
}
.sec-head { margin-bottom: 3.5rem; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-desc { margin: 0 auto; }
.sec-head.center .sec-eyebrow::before { display: none; }

.bg-dark { background: var(--noir); }
.bg-dark2 { background: var(--noir2); }
.bg-ivory { background: var(--ivory); }
.bg-ivory2 { background: var(--ivory2); }
.bg-champagne-pale { background: var(--champagne-pale); }

/* Full-width wrappers */
.sec-wrap { padding: 6rem 2.5rem; }
.sec-wrap .sec-inner { max-width: 1200px; margin: 0 auto; }

@media(max-width: 768px) {
  .sec { padding: 4rem 1.25rem; }
  .sec-wrap { padding: 4rem 1.25rem; }
}

/* =========================================================
   SERVICES CAROUSEL
   ========================================================= */
.svc-carousel-outer {
  position: relative;
  margin: 0 -2.5rem;
  padding: 0 2.5rem;
}
.svc-carousel-track {
  display: flex; gap: 1.25rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.5rem;
  -ms-overflow-style: none; scrollbar-width: none;
}
.svc-carousel-track::-webkit-scrollbar { display: none; }

.svc-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,175,110,.1);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--champagne), var(--blush));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,110,.25);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-ic-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--champagne-pale), var(--blush-pale));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.svc-name {
  font-family: var(--fd);
  font-size: 1.2rem; font-weight: 500;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.svc-desc {
  font-size: .82rem; color: var(--slate);
  line-height: 1.65; margin-bottom: 1.25rem;
  min-height: 3.5rem;
}
.svc-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
  padding: .875rem;
  background: var(--ivory);
  border-radius: 10px;
}
.svc-price {
  font-family: var(--fd);
  font-size: 1.5rem; font-weight: 500;
  color: var(--charcoal);
}
.svc-price span { font-size: .85rem; color: var(--slate); font-family: var(--fb); }
.svc-dur {
  font-size: .7rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--slate);
  background: rgba(212,175,110,.15);
  padding: .3rem .7rem; border-radius: 50px;
}
.svc-book-btn {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  width: 100%; padding: .72rem;
  background: linear-gradient(135deg, var(--champagne) 0%, #B8943A 100%);
  color: var(--noir);
  border: none; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer; font-family: var(--fb);
  transition: all var(--t);
  box-shadow: 0 3px 12px rgba(212,175,110,.25);
}
.svc-book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,110,.4);
}

/* Carousel navigation arrows */
.carousel-nav {
  display: flex; gap: .5rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}
.carousel-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(44,36,48,.15);
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: .9rem; color: var(--charcoal);
  transition: all var(--t);
  box-shadow: var(--shadow-xs);
}
.carousel-btn:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--noir);
  box-shadow: var(--shadow-gold);
}

@media(max-width: 768px) {
  .svc-carousel-outer { margin: 0 -1.25rem; padding: 0 1.25rem; }
  .svc-card { flex: 0 0 260px; }
}

/* =========================================================
   FEATURES / WHY US SECTION
   ========================================================= */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.feature-card {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,110,.1);
  border-radius: var(--r-lg);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--champagne), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.feature-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(212,175,110,.25);
  transform: translateY(-4px);
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,110,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  background: rgba(212,175,110,.08);
}
.feature-title {
  font-family: var(--fd); font-size: 1.35rem; font-weight: 400;
  color: #fff; margin-bottom: .6rem;
}
.feature-desc {
  font-size: .85rem; color: rgba(255,255,255,.48); line-height: 1.75;
}
@media(max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* =========================================================
   STAFF — Magazine Style
   ========================================================= */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}
.staff-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  border: 1px solid rgba(212,175,110,.08);
}
.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.staff-photo-wrap {
  position: relative; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--champagne-pale) 0%, var(--blush-pale) 100%);
  overflow: hidden;
}
.staff-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.staff-card:hover .staff-photo-wrap img { transform: scale(1.05); }
.staff-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(200,117,138,.3);
}
.staff-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,16,.8) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity var(--t);
}
.staff-card:hover .staff-photo-overlay { opacity: 1; }
.staff-overlay-cta {
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(212,175,110,.4);
  padding: .45rem 1rem; border-radius: 50px;
  transition: all var(--t);
}
.staff-overlay-cta:hover { background: var(--champagne); color: var(--noir); }
.staff-info {
  padding: 1.5rem 1.25rem;
}
.staff-name {
  font-family: var(--fd); font-size: 1.25rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: .3rem;
}
.staff-role {
  font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--champagne);
  background: rgba(212,175,110,.1);
  display: inline-block; padding: .25rem .7rem; border-radius: 50px;
  margin-bottom: .875rem;
}
.staff-bio {
  font-size: .82rem; color: var(--slate); line-height: 1.7;
}

/* =========================================================
   GALLERY — Masonry Lightbox
   ========================================================= */
.gallery-grid {
  columns: 3; gap: 1rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .6s ease;
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,11,16,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.gallery-item-overlay span {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  opacity: 0; transform: scale(.7);
  transition: all var(--t);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-item-overlay { background: rgba(13,11,16,.4); }
.gallery-item:hover .gallery-item-overlay span { opacity: 1; transform: scale(1); }
.gallery-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--champagne-pale), var(--blush-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(200,117,138,.3);
}
@media(max-width: 768px) { .gallery-grid { columns: 2; } }
@media(max-width: 480px) { .gallery-grid { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(13,11,16,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(16px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--r);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem;
  transition: all var(--t);
}
.lightbox-close:hover { background: rgba(255,255,255,.15); }

/* =========================================================
   TESTIMONIALS CAROUSEL
   ========================================================= */
.testi-carousel {
  overflow: hidden; position: relative;
}
.testi-track {
  display: flex; gap: 1.5rem;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,110,.1);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  position: relative;
}
.testi-quote {
  font-size: 3.5rem; line-height: 1;
  font-family: var(--fd);
  color: var(--champagne);
  opacity: .4;
  margin-bottom: 1rem;
  display: block;
}
.testi-text {
  font-family: var(--fc);
  font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: .875rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne-pale), var(--blush-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--blush);
  flex-shrink: 0;
}
.testi-author-name {
  font-family: var(--fd); font-size: .95rem; font-weight: 500; color: #fff;
}
.testi-stars { color: var(--champagne); font-size: .75rem; letter-spacing: 2px; }

.testi-controls {
  display: flex; justify-content: center;
  align-items: center; gap: 1.5rem;
  margin-top: 2.5rem;
}
.testi-dots { display: flex; gap: .5rem; }
.testi-dot-btn {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none; cursor: pointer; padding: 0;
  transition: all var(--t);
}
.testi-dot-btn.active {
  width: 24px; border-radius: 4px;
  background: var(--champagne);
}

@media(max-width: 900px) {
  .testi-card { flex: 0 0 calc(50% - .75rem); }
}
@media(max-width: 600px) {
  .testi-card { flex: 0 0 100%; }
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--noir);
  padding: 7rem 2.5rem;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,175,110,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(200,117,138,.06) 0%, transparent 50%);
}
.cta-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--champagne), transparent);
  margin: 0 auto 3rem;
}
.cta-eyebrow {
  font-size: .65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 1.5rem; display: block;
}
.cta-title {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff; font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.cta-title em { font-style: italic; color: var(--champagne); }
.cta-desc {
  color: rgba(255,255,255,.5); max-width: 400px; margin: 0 auto 2.5rem;
  font-size: .95rem; line-height: 1.75;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 1.75rem;
}
.blog-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(212,175,110,.08);
  transition: all var(--t);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.blog-img {
  height: 200px;
  background: linear-gradient(145deg, var(--champagne-pale) 0%, var(--blush-pale) 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(200,117,138,.25);
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1.5rem; }
.blog-cat {
  font-size: .62rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--champagne);
  background: rgba(212,175,110,.1);
  display: inline-block; padding: .2rem .7rem; border-radius: 50px;
  margin-bottom: .875rem;
}
.blog-title {
  font-family: var(--fd); font-size: 1.15rem;
  color: var(--charcoal); margin-bottom: .6rem; line-height: 1.35;
}
.blog-title a:hover { color: var(--blush); }
.blog-excerpt { font-size: .83rem; color: var(--slate); line-height: 1.65; margin-bottom: 1.25rem; }
.blog-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: var(--slate);
  border-top: 1px solid var(--ivory2);
  padding-top: .875rem;
}
.blog-read { color: var(--blush); font-weight: 600; font-size: .75rem; transition: color var(--t-fast); }
.blog-read:hover { color: var(--blush2); }

/* =========================================================
   PAGE HEADER
   ========================================================= */
.pg-hdr {
  background: var(--noir);
  padding: 9rem 2.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-hdr::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 60%, rgba(212,175,110,.07) 0%, transparent 65%);
}
.pg-hdr h1 { color: #fff; position: relative; z-index: 1; }
.pg-hdr .sec-eyebrow { position: relative; z-index: 1; margin-bottom: .75rem; display: block; }
.breadcrumb {
  font-size: .72rem; color: rgba(255,255,255,.35);
  margin-top: .75rem; position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(212,175,110,.6); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--champagne); }

/* =========================================================
   BOOKING PAGE
   ========================================================= */
.book-outer {
  background: var(--ivory2); padding: 4rem 2.5rem;
}
.book-wrap {
  max-width: 680px; margin: 0 auto;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(212,175,110,.1);
}
.book-header {
  background: var(--noir);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.book-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212,175,110,.09), transparent);
}
.book-header h2 {
  color: #fff; font-size: 1.8rem; position: relative; z-index: 1;
  margin-bottom: .4rem;
}
.book-header p {
  color: rgba(255,255,255,.5); font-size: .85rem; position: relative; z-index: 1;
}
.book-header-gem {
  display: block; margin: 0 auto .875rem; font-size: 1.2rem; color: var(--champagne);
  position: relative; z-index: 1;
}
.book-body { padding: 2.5rem; }

/* Form elements */
.form-label {
  display: block;
  font-size: .65rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: .4rem;
}
.form-field {
  width: 100%;
  padding: .82rem 1rem;
  border: 1.5px solid rgba(212,175,110,.2);
  border-radius: var(--r);
  font-family: var(--fb); font-size: .9rem;
  color: var(--charcoal); background: var(--ivory);
  outline: none; transition: all var(--t);
}
.form-field:focus {
  border-color: var(--champagne);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212,175,110,.1);
}
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.1rem; }
@media(max-width: 560px) { .form-row { grid-template-columns: 1fr; } .book-body { padding: 1.5rem; } }

/* Time slots */
.time-slots-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem;
}
.time-slot {
  padding: .55rem .3rem;
  border: 1.5px solid rgba(212,175,110,.2);
  border-radius: 8px;
  text-align: center; font-size: .75rem;
  cursor: pointer; transition: all var(--t);
  background: var(--ivory); font-family: var(--fb);
  color: var(--charcoal);
}
.time-slot:hover:not(.taken) {
  border-color: var(--champagne);
  background: var(--champagne-pale);
  color: #6B4A20;
}
.time-slot.sel {
  background: linear-gradient(135deg, var(--champagne), #B8943A);
  color: var(--noir); border-color: transparent;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(212,175,110,.3);
}
.time-slot.taken {
  background: #f5f5f5; color: #ccc;
  cursor: not-allowed; border-color: #eee;
  text-decoration: line-through;
}
.book-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--champagne), #B8943A);
  color: var(--noir); border: none; border-radius: 50px;
  font-size: .85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; margin-top: 1.25rem;
  font-family: var(--fb); transition: all var(--t);
  box-shadow: 0 4px 20px rgba(212,175,110,.3);
}
.book-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,110,.5);
}
.book-submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* =========================================================
   ALERTS
   ========================================================= */
.al { padding: .875rem 1.1rem; border-radius: var(--r); font-size: .85rem; margin-bottom: 1rem; }
.al-s { background: #f0faf4; color: #1a6335; border: 1px solid #a8d5b8; }
.al-e { background: #fef2f4; color: #c02030; border: 1px solid #f0a0aa; }
.al-i { background: var(--champagne-pale); color: #6B4A20; border: 1px solid rgba(212,175,110,.3); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info-title { font-size: clamp(1.8rem,3vw,2.5rem); color: var(--charcoal); margin-bottom: 2rem; }
.contact-item {
  display: flex; gap: 1.1rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--champagne-pale), var(--blush-pale));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item-body { padding-top: .35rem; }
.contact-item-label {
  font-size: .62rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--champagne); font-weight: 600; margin-bottom: .2rem;
}
.contact-item-val { font-size: .9rem; color: var(--charcoal); }
.contact-form-wrap {
  background: var(--noir);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid rgba(212,175,110,.1);
}
.contact-form-title {
  font-family: var(--fd); font-size: 1.6rem; color: #fff;
  margin-bottom: .4rem;
}
.contact-form-sub { font-size: .83rem; color: rgba(255,255,255,.45); margin-bottom: 1.75rem; }
.contact-form-wrap .form-field {
  background: rgba(255,255,255,.05);
  border-color: rgba(212,175,110,.15);
  color: #fff;
}
.contact-form-wrap .form-field:focus {
  background: rgba(255,255,255,.08);
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(212,175,110,.08);
}
.contact-form-wrap .form-field::placeholder { color: rgba(255,255,255,.25); }
.contact-form-wrap .form-label { color: rgba(255,255,255,.45); }
@media(max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,.5);
  padding: 5rem 2.5rem 2rem;
  border-top: 1px solid rgba(212,175,110,.08);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  font-family: var(--fd); font-size: 1.6rem; color: #fff;
  margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem;
}
.footer-logo-star { color: var(--champagne); font-size: .9rem; }
.footer-tagline { font-size: .85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,175,110,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .9rem;
  transition: all var(--t);
}
.footer-social-btn:hover {
  border-color: var(--champagne);
  color: var(--champagne);
  background: rgba(212,175,110,.08);
}
.footer-col-title {
  font-size: .62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  font-size: .83rem; color: rgba(255,255,255,.4);
  transition: color var(--t-fast);
  display: inline-flex; align-items: center; gap: .4rem;
}
.footer-links a::before {
  content: ''; width: 0; height: 1px; background: var(--champagne);
  transition: width var(--t);
}
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-links a:hover::before { width: 12px; }
.footer-contact-item { display: flex; gap: .6rem; margin-bottom: .7rem; font-size: .83rem; }
.footer-contact-icon { color: var(--champagne); flex-shrink: 0; }
.footer-divider {
  max-width: 1200px; margin: 0 auto;
  border: none; border-top: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.75rem;
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.25);
}
@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width: 580px) {
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pag { display: flex; justify-content: center; gap: .4rem; margin-top: 3rem; }
.pag a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  border: 1px solid rgba(212,175,110,.2);
  color: var(--slate); transition: all var(--t);
}
.pag a:hover, .pag a.on {
  border-color: var(--champagne);
  background: linear-gradient(135deg, var(--champagne), #B8943A);
  color: var(--noir); font-weight: 600;
  box-shadow: var(--shadow-gold);
}

/* =========================================================
   SERVICES PAGE — GROUPED
   ========================================================= */
.svc-category-group { margin-bottom: 4rem; }
.svc-cat-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,175,110,.15);
}
.svc-cat-label {
  font-family: var(--fd); font-size: 1.6rem; color: var(--charcoal);
}
.svc-cat-count {
  font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--champagne); background: rgba(212,175,110,.1);
  padding: .25rem .7rem; border-radius: 50px;
}
.svc-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 1.25rem; }

/* =========================================================
   FADE IN ANIMATIONS
   ========================================================= */
.fi { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }
.fi-l { opacity: 0; transform: translateX(-20px); transition: opacity .6s ease, transform .6s ease; }
.fi-l.vis { opacity: 1; transform: translateX(0); }
.fi-r { opacity: 0; transform: translateX(20px); transition: opacity .6s ease, transform .6s ease; }
.fi-r.vis { opacity: 1; transform: translateX(0); }
.fi-delay-1 { transition-delay: .1s !important; }
.fi-delay-2 { transition-delay: .2s !important; }
.fi-delay-3 { transition-delay: .3s !important; }
.fi-delay-4 { transition-delay: .4s !important; }
.fi-delay-5 { transition-delay: .5s !important; }

/* =========================================================
   STAFF PAGE FULL WIDTH
   ========================================================= */
.staff-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 2rem;
}

/* =========================================================
   RESPONSIVE GLOBAL
   ========================================================= */
@media(max-width: 768px) {
  .nav { padding: 0 1.25rem; }
  .hero-content { padding: 0 1.25rem; }
  .cta-section { padding: 5rem 1.25rem; }
  .pg-hdr { padding: 7rem 1.25rem 3rem; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   UTILITY
   ========================================================= */
.text-center { text-align: center; }
.text-champagne { color: var(--champagne); }
.mt-auto { margin-top: auto; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.divider {
  height: 1px; background: rgba(212,175,110,.12); margin: 2rem 0;
}
