/* ==========================================================================
   LUXE BEAUTY STUDIO & ACADEMY - FULLY RESPONSIVE LUXURY DESIGN SYSTEM
   Adaptive across all screens: 320px, 375px, 480px, 768px, 1024px, 1440px, 1920px+
   ========================================================================== */

/* --- Fonts & Design Tokens --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #FFFDF8;
  --color-cream: #F8F2E8;
  --color-cream-light: #FAF6F0;
  --color-champagne: #E9D7B6;
  --color-gold: #C9A96E;
  --color-gold-dark: #A98544;
  --color-gold-light: #E4CD9E;
  --color-charcoal: #1E1C1B;
  --color-charcoal-muted: #33302E;
  --color-gray: #68625D;
  --color-gray-light: #ECE7E1;
  --color-blush: #F5E6E8;
  --color-blush-dark: #D8A5AE;
  --color-white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 12px rgba(30, 28, 27, 0.04);
  --shadow-md: 0 12px 32px rgba(30, 28, 27, 0.08);
  --shadow-lg: 0 24px 60px rgba(30, 28, 27, 0.12);
  --shadow-gold: 0 12px 30px -10px rgba(201, 169, 110, 0.4);

  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  line-height: 1.6;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --- Fluid Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-charcoal);
}

.text-gold { color: var(--color-gold); }
.text-gold-dark { color: var(--color-gold-dark); }
.text-charcoal { color: var(--color-charcoal); }
.text-gray { color: var(--color-gray); }

/* --- Fluid Container & Layout --- */
.app-main-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.app-main-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3.5vw, 2.5rem);
  padding-right: clamp(1rem, 3.5vw, 2.5rem);
}

.section-padding {
  padding-top: clamp(3.5rem, 6vw + 1rem, 7.5rem);
  padding-bottom: clamp(3.5rem, 6vw + 1rem, 7.5rem);
}

.section-tag {
  font-size: clamp(0.7rem, 0.8vw + 0.5rem, 0.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-gold-dark);
  margin-bottom: 0.85rem;
  display: block;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw + 0.8rem, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.2vw + 0.5rem, 1.1rem) clamp(1.35rem, 2vw + 0.75rem, 2.5rem);
  font-size: clamp(0.68rem, 0.4vw + 0.55rem, 0.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  text-align: center;
  white-space: nowrap;
  min-height: 44px;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

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

.btn-dark {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.btn-dark:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1px solid rgba(30, 28, 27, 0.25);
  color: var(--color-charcoal);
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

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

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.68rem;
  min-height: 38px;
}

/* ==========================================================================
   1. FULL-SCREEN CINEMATIC INTRO VIDEO OVERLAY
   ========================================================================== */
.intro-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background-color: #080808;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.65s ease;
}

.intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video-ambient {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(40px) brightness(0.35);
  opacity: 0.65;
  pointer-events: none;
}

.intro-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 2rem);
  z-index: 2;
}

.intro-video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
  display: block;
}

.intro-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 55%, rgba(0, 0, 0, 0.75) 100%),
              linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 15%, transparent 85%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 3;
}

.intro-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.intro-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transition: width 0.15s linear;
}

.skip-intro-btn {
  position: absolute;
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  right: clamp(1.25rem, 3vw, 2.5rem);
  z-index: 20;
  background: rgba(18, 17, 16, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.skip-intro-btn:hover {
  background: rgba(201, 169, 110, 0.95);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* ==========================================================================
   2. HEADER & NAVIGATION BAR (ALWAYS VISIBLE, STICKY & FLUID)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  padding: 1.1rem 0;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 4px 20px rgba(30, 28, 27, 0.04);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid rgba(201, 169, 110, 0.32);
  box-shadow: 0 10px 30px rgba(30, 28, 27, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw + 0.8rem, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo span.accent {
  color: var(--color-gold);
}

.brand-logo span.sub {
  font-style: italic;
  font-weight: 400;
  font-size: 0.9em;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: clamp(1rem, 1.5vw, 1.75rem);
  list-style: none;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: clamp(0.68rem, 0.5vw + 0.3rem, 0.725rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(30, 28, 27, 0.8);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-gold-dark);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.2vw, 1.25rem);
  flex-shrink: 0;
}

.nav-insta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-charcoal);
  transition: var(--transition-fast);
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.nav-insta-icon:hover {
  color: var(--color-gold-dark);
  background: var(--color-cream);
  transform: translateY(-2px);
}

.nav-phone-link {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-size: clamp(0.7rem, 0.8vw, 0.75rem);
  font-weight: 600;
  color: var(--color-charcoal);
  transition: var(--transition-fast);
}

@media (min-width: 640px) {
  .nav-phone-link {
    display: flex;
  }
}

.nav-phone-link:hover {
  color: var(--color-gold-dark);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 10001;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-charcoal);
  transition: var(--transition-fast);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer Menu (Never compresses or squeezes page content) */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 28, 27, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 360px);
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-bg);
  z-index: 99999;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 2.25rem) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw + 0.5rem, 1.5rem);
  color: var(--color-charcoal);
  transition: var(--transition-fast);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

.mobile-insta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold-dark);
}

/* ==========================================================================
   3. HERO SECTION & HERO MEDIA
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: clamp(6.5rem, 10vw, 8.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background-color: var(--color-bg);
  overflow: hidden;
  width: 100%;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0.92) contrast(1.05);
}

.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 253, 248, 0.75) 50%, rgba(255, 253, 248, 0.4) 100%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-tag-line {
  width: 32px;
  height: 1px;
  background-color: var(--color-gold);
}

.hero-tag-text {
  font-size: clamp(0.68rem, 0.6vw + 0.4rem, 0.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-gold-dark);
}

.hero-title {
  font-size: clamp(2.35rem, 5.5vw + 0.5rem, 5.25rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}

.hero-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  font-weight: 400;
  color: var(--color-gray);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-light);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-gold-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: clamp(0.65rem, 0.5vw + 0.4rem, 0.75rem);
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-media-wrapper {
  position: relative;
  width: 100%;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-container:hover img {
  transform: scale(1.04);
}

.hero-badge-floating {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  background-color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-cream);
  display: none;
  align-items: center;
  gap: 0.85rem;
  max-width: 260px;
  z-index: 10;
}

@media (min-width: 640px) {
  .hero-badge-floating {
    display: flex;
  }
}

.badge-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-dark);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.badge-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.badge-subtitle {
  font-size: 0.7rem;
  color: var(--color-gray);
}

/* ==========================================================================
   4. ABOUT SANCTUARY SECTION
   ========================================================================== */
.about-section {
  background-color: var(--color-cream-light);
  position: relative;
  width: 100%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-frame {
  position: relative;
  width: 100%;
}

.about-img-main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  width: 100%;
}

@media (min-width: 768px) {
  .about-img-main {
    aspect-ratio: 4 / 5;
  }
}

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

.about-quote-box {
  background-color: var(--color-bg);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 3px solid var(--color-gold);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-charcoal);
  margin-bottom: 0.65rem;
  line-height: 1.6;
}

.about-quote-author {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-dark);
}

.about-feature-list {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 540px) {
  .about-feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.85rem, 0.5vw + 0.6rem, 0.925rem);
  font-weight: 600;
  color: var(--color-charcoal);
}

.feature-icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

/* ==========================================================================
   5. BESPOKE SERVICES MENU (7 DEDICATED SERVICES)
   ========================================================================== */
.services-section {
  background-color: var(--color-bg);
  width: 100%;
}

.services-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray-light);
  width: 100%;
}

.tab-btn {
  padding: 0.55rem 1.25rem;
  font-size: clamp(0.68rem, 0.4vw + 0.5rem, 0.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gray);
  border-radius: var(--radius-full);
  background-color: var(--color-cream-light);
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--color-charcoal);
  background-color: var(--color-champagne);
}

.tab-btn.active {
  color: var(--color-white);
  background-color: var(--color-charcoal);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  width: 100%;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(233, 215, 182, 0.45);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.service-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-charcoal-muted);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(30, 28, 27, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  padding: 0.3rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
}

.service-card-body {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-category {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-dark);
  margin-bottom: 0.4rem;
}

.service-title {
  font-size: clamp(1.15rem, 1.2vw + 0.6rem, 1.35rem);
  margin-bottom: 0.65rem;
  color: var(--color-charcoal);
}

.service-desc {
  font-size: clamp(0.85rem, 0.5vw + 0.55rem, 0.9rem);
  color: var(--color-gray);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-light);
  margin-top: auto;
}

.service-book-btn {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-dark);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.service-book-btn:hover {
  color: var(--color-charcoal);
  transform: translateX(4px);
}

/* ==========================================================================
   6. LUXE BEAUTY & NAIL ACADEMY SECTION
   ========================================================================== */
.academy-section {
  background-color: var(--color-cream);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.academy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .academy-grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

.academy-media-frame {
  position: relative;
  width: 100%;
}

.academy-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 169, 110, 0.4);
  background-color: var(--color-charcoal);
  width: 100%;
}

.academy-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.academy-media-frame:hover .academy-img-wrapper img {
  transform: scale(1.03);
}

.academy-floating-badge {
  position: absolute;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: var(--transition-fast);
}

.academy-floating-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.academy-floating-badge.top-badge {
  top: 1.25rem;
  right: -0.75rem;
}

.academy-floating-badge.bottom-badge {
  bottom: 1.25rem;
  left: -0.75rem;
}

@media (max-width: 768px) {
  .academy-floating-badge.top-badge {
    right: 0.5rem;
    top: 0.5rem;
    padding: 0.5rem 0.85rem;
  }
  .academy-floating-badge.bottom-badge {
    left: 0.5rem;
    bottom: 0.5rem;
    padding: 0.5rem 0.85rem;
  }
}

.badge-accent-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.badge-main-text {
  font-family: var(--font-serif);
  font-size: clamp(0.8rem, 0.5vw + 0.5rem, 0.95rem);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
}

.badge-sub-text {
  font-size: 0.68rem;
  color: var(--color-gold-dark);
  font-weight: 600;
}

.academy-lead-desc {
  color: var(--color-gray);
  font-size: clamp(0.95rem, 0.8vw + 0.5rem, 1.05rem);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.academy-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
  width: 100%;
}

@media (min-width: 540px) {
  .academy-modules-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.academy-module-card {
  background: var(--color-white);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  transition: var(--transition-fast);
}

.academy-module-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.module-number {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.module-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-charcoal);
  margin-bottom: 0.35rem;
}

.module-desc {
  font-size: 0.825rem;
  color: var(--color-gray);
  line-height: 1.5;
}

.academy-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.85rem, 0.4vw + 0.6rem, 0.9rem);
  font-weight: 600;
  color: var(--color-charcoal);
}

.perk-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.academy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

@media (max-width: 480px) {
  .academy-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   7. BRIDAL & RENTAL JEWELLERY SECTION
   ========================================================================== */
.bridal-section {
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bridal-hero-banner {
  background: linear-gradient(rgba(30, 28, 27, 0.68), rgba(30, 28, 27, 0.8)),
    url('https://images.unsplash.com/photo-1595777457583-95e059d581b8?q=80&w=2070') center/cover no-repeat;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-md);
  color: var(--color-white);
  text-align: center;
  margin-bottom: 3.5rem;
}

.bridal-banner-title {
  color: var(--color-white);
  font-size: clamp(2rem, 4.5vw + 0.5rem, 3.75rem);
  margin-bottom: 0.85rem;
}

.bridal-banner-subtitle {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-champagne);
  max-width: 640px;
  margin: 0 auto 1.75rem;
  font-weight: 300;
}

.bridal-packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  width: 100%;
}

@media (min-width: 860px) {
  .bridal-packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bridal-card {
  background: var(--color-white);
  border: 1px solid var(--color-champagne);
  border-radius: var(--radius-md);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.bridal-card.featured {
  border: 2px solid var(--color-gold);
  box-shadow: var(--shadow-md);
}

@media (min-width: 860px) {
  .bridal-card.featured {
    transform: scale(1.03);
  }
}

.bridal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bridal-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-gold);
  color: var(--color-white);
  padding: 0.3rem 1.1rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: var(--radius-full);
}

.bridal-card-title {
  font-size: clamp(1.35rem, 1.5vw + 0.5rem, 1.65rem);
  text-align: center;
  margin-bottom: 0.4rem;
}

.bridal-card-subtitle {
  font-size: 0.725rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-dark);
  margin-bottom: 1.5rem;
}

.bridal-includes-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bridal-include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: clamp(0.85rem, 0.4vw + 0.55rem, 0.9rem);
  color: var(--color-charcoal);
  line-height: 1.5;
}

.bridal-check-icon {
  color: var(--color-gold-dark);
  font-weight: bold;
  flex-shrink: 0;
}

/* ==========================================================================
   8. INSTAGRAM SHOWCASE SECTION
   ========================================================================== */
.insta-cta-section {
  background: linear-gradient(135deg, #1E1C1B 0%, #292624 100%);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  width: 100%;
}

.insta-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .insta-cta-inner {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }
}

.insta-cta-icon {
  width: clamp(64px, 8vw, 84px);
  height: clamp(64px, 8vw, 84px);
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 16px 36px rgba(220, 39, 67, 0.35);
}

.insta-cta-text {
  flex-grow: 1;
}

.insta-cta-title {
  color: var(--color-white);
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.4rem);
  margin-bottom: 0.4rem;
}

.insta-cta-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.9rem, 0.8vw + 0.5rem, 1.05rem);
  max-width: 600px;
  margin-bottom: 0.75rem;
}

.insta-handle-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  background: rgba(201, 169, 110, 0.15);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.insta-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   9. CONTACT & BOOKING SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--color-cream-light);
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  width: 100%;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.contact-info-card {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title {
  color: var(--color-white);
  font-size: clamp(1.85rem, 3vw + 0.5rem, 2.4rem);
  margin-bottom: 0.85rem;
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.88rem, 0.5vw + 0.55rem, 0.95rem);
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-detail-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-light);
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  font-size: clamp(0.88rem, 0.5vw + 0.55rem, 0.95rem);
  color: var(--color-white);
  line-height: 1.5;
}

.contact-quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 480px) {
  .contact-quick-buttons .btn {
    width: 100%;
  }
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background-color: #1EBE5D;
}

/* Contact Form */
.form-wrapper {
  background-color: var(--color-white);
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-champagne);
  width: 100%;
}

.form-group {
  margin-bottom: 1.25rem;
  width: 100%;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 540px) {
  .form-group-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-charcoal);
  margin-bottom: 0.45rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background-color: var(--color-cream-light);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-charcoal);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

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

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: 2rem;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3.5rem;
  width: 100%;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-insta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-light);
  transition: var(--transition-fast);
}

.footer-insta-pill:hover {
  color: var(--color-white);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ==========================================================================
   11. INTERACTIVE 2-STEP WHATSAPP BOOKING MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 28, 27, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2.5vw, 1.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--color-bg);
  width: min(94vw, 560px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  max-height: 90dvh;
  display: flex;
  flex-direction: column;
}

.modal-backdrop.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem) 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-gray-light);
}

.modal-step-indicator {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold-dark);
  display: block;
  margin-bottom: 0.2rem;
}

.modal-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-cream-light);
  border: 1px solid var(--color-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-charcoal);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.modal-body {
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-step-container {
  display: none;
}

.modal-step-container.active {
  display: block;
  animation: fadeInStep 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-selection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  width: 100%;
}

@media (min-width: 480px) {
  .service-selection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-radio-card {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
}

.service-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card-content {
  padding: 0.85rem 1rem;
  background-color: var(--color-cream-light);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.service-radio-card:hover .radio-card-content {
  border-color: var(--color-gold);
  background-color: var(--color-white);
}

.service-radio-card input[type="radio"]:checked + .radio-card-content {
  border-color: var(--color-gold);
  background-color: var(--color-cream);
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.25);
}

.radio-card-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.15rem;
}

.radio-card-sub {
  font-size: 0.7rem;
  color: var(--color-gray);
}

.modal-actions-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   12. SERVICE PRICE TAG
   ========================================================================== */
.service-price {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1vw + 0.6rem, 1.25rem);
  font-weight: 700;
  color: var(--color-charcoal);
}

/* ==========================================================================
   13. HERO VIDEO FOCUS TOGGLE BUTTON
   ========================================================================== */
.video-focus-toggle-btn {
  position: absolute;
  bottom: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2.5rem);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 28, 27, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-champagne);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid rgba(201, 169, 110, 0.35);
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.video-focus-toggle-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Hero video-focus mode: fade content to show video clearly */
.hero-section.video-focus .hero-overlay-vignette {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.2) 0%, rgba(255, 253, 248, 0.05) 100%);
}

.hero-section.video-focus .hero-video-bg {
  filter: brightness(1.05) contrast(1.1);
}

/* ==========================================================================
   14. TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: clamp(1.25rem, 3vw, 2rem);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 200000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: min(320px, 90vw);
  max-width: 90vw;
  pointer-events: none;
}

.toast-notification.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   15. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   16. ACADEMY IMG OVERLAY (inner gradient polish)
   ========================================================================== */
.academy-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 28, 27, 0.45) 0%, transparent 50%);
  pointer-events: none;
}

/* ==========================================================================
   17. GLOBAL ANTI-OVERFLOW SAFETY NET
   ========================================================================== */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

section, header, footer, nav, aside, div {
  max-width: 100%;
}

/* ==========================================================================
   18. BRIDAL PRICE TAG (legacy, kept for compatibility)
   ========================================================================== */
.bridal-price-tag {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-gray-light);
}

/* ==========================================================================
   19. VERY SMALL SCREEN OVERRIDES (< 380px)
   ========================================================================== */
@media (max-width: 380px) {
  .brand-logo {
    font-size: 1.05rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .hero-stats {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.65rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .nav-insta-icon {
    width: 32px;
    height: 32px;
  }
}

/* ==========================================================================
   20. TABLET REFINEMENTS (768px – 991px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-media-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-badge-floating {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
  }

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

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

  .bridal-packages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bridal-card.featured {
    transform: none;
  }
}

/* ==========================================================================
   21. LARGE DESKTOP REFINEMENTS (>= 1440px)
   ========================================================================== */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
  }

  .hero-title {
    font-size: clamp(4.5rem, 5vw, 5.5rem);
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1540px;
  }
}