/* ============================================
   PM Designer Boutique — Premium Luxury Styles
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --bg-primary: #FAF8F5;
  --bg-secondary: #F6EFE8;
  --bg-card: #FFFFFF;
  --accent-gold: #D4B483;
  --accent-gold-light: #E8D5B5;
  --accent-gold-dark: #B8956A;
  --blush-rose: #F7E7E6;
  --sage-green: #A8B5A2;
  --dusty-lavender: #E8DFF2;
  --text-primary: #2B2B2B;
  --text-secondary: #6B6B6B;
  --text-light: #9A9A9A;
  --white: #FFFFFF;
  --black: #1A1A1A;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(43, 43, 43, 0.04);
  --shadow-md: 0 8px 30px rgba(43, 43, 43, 0.06);
  --shadow-lg: 0 20px 60px rgba(43, 43, 43, 0.08);
  --shadow-xl: 0 30px 80px rgba(43, 43, 43, 0.10);
  --shadow-gold: 0 8px 30px rgba(212, 180, 131, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-elegant: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  --nav-height: 90px;
  --nav-height-scrolled: 72px;
  --container-max: 1320px;
  --section-padding: 120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.text-center {
  text-align: center;
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--blush-rose), var(--dusty-lavender));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 8px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 8px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--bg-secondary);
  margin: 32px auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--blush-rose));
  animation: preloaderFill 1.8s ease-in-out forwards;
  border-radius: 2px;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes preloaderFill {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ---- Section Header ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--accent-gold-dark);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 72px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 60px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: 12px;
  transition: transform var(--transition-smooth);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
  opacity: 0;
  transition: opacity var(--transition-smooth);
  border-radius: inherit;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(212, 180, 131, 0.4);
  transform: translateY(-2px);
}

.btn-primary span,
.btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--white);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all var(--transition-smooth);
}

.navbar {
  padding: 0 40px;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 180, 131, 0.1);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  transition: height var(--transition-smooth);
}

.navbar.scrolled .nav-container {
  height: var(--nav-height-scrolled);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 3px;
}

.navbar:not(.scrolled) .logo-main {
  color: var(--white);
}

.logo-divider {
  width: 1px;
  height: 28px;
  background: var(--accent-gold);
  opacity: 0.4;
}

.navbar:not(.scrolled) .logo-divider {
  background: rgba(255, 255, 255, 0.4);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.navbar:not(.scrolled) .logo-sub {
  color: rgba(255, 255, 255, 0.8);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-gold);
  transition: width var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: var(--white);
}

.nav-cta {
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 60px;
  transition: all var(--transition-smooth);
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 10001;
}

.toggle-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-smooth);
  border-radius: 2px;
}

.navbar:not(.scrolled) .toggle-line {
  background: var(--white);
}

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

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

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

/* Mobile Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 0;
  display: inline-block;
  transition: all var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
  transform: translateX(8px);
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 40px;
  padding: 16px 48px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 60px;
  transition: all var(--transition-smooth);
}

.mobile-nav-cta:hover {
  box-shadow: var(--shadow-gold);
}

.mobile-nav-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.mobile-nav-socials a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(43, 43, 43, 0.1);
  color: var(--text-secondary);
  font-size: 18px;
  transition: all var(--transition-smooth);
}

.mobile-nav-socials a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.hero:hover .hero-bg-image {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(43, 43, 43, 0.5) 40%,
    rgba(212, 180, 131, 0.2) 100%
  );
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

/* Floating Decorative Elements */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.hero-decor-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-gold), transparent 70%);
  top: -200px;
  right: -200px;
  animation: floatOrb1 20s ease-in-out infinite;
}

.hero-decor-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blush-rose), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: floatOrb2 25s ease-in-out infinite;
}

.hero-decor-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--dusty-lavender), transparent 70%);
  top: 40%;
  left: 60%;
  animation: floatOrb3 18s ease-in-out infinite;
}

.hero-petal {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50% 0 50% 50%;
  pointer-events: none;
}

.hero-petal-1 { top: 20%; left: 15%; animation: floatPetal 12s ease-in-out infinite; }
.hero-petal-2 { top: 60%; right: 20%; animation: floatPetal 15s ease-in-out infinite 2s; width: 8px; height: 8px; }
.hero-petal-3 { bottom: 30%; left: 40%; animation: floatPetal 10s ease-in-out infinite 4s; width: 16px; height: 16px; }
.hero-petal-4 { top: 30%; right: 35%; animation: floatPetal 14s ease-in-out infinite 1s; width: 10px; height: 10px; }

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(1.1); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  25% { transform: translateY(-30px) rotate(90deg); opacity: 0.25; }
  50% { transform: translateY(-10px) rotate(180deg); opacity: 0.1; }
  75% { transform: translateY(-40px) rotate(270deg); opacity: 0.2; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding-left: 80px;
}

.hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.hero-label::before {
  content: '';
  width: 50px;
  height: 1.5px;
  background: var(--accent-gold);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent-gold-light);
}

.hero-description {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 44px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-indicator span {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 12px;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  margin: 0 auto;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-elegant);
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--bg-primary);
  box-shadow: var(--shadow-lg);
}

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

.about-accent-box {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-md);
  opacity: 0.3;
}

.about-experience-badge {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--white);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.badge-text {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 4px;
  display: block;
}

.about-content {
  padding-right: 20px;
}

.about-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin: 40px 0 44px;
  padding: 32px 0;
  border-top: 1px solid rgba(43, 43, 43, 0.08);
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-gold-dark);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ============================================
   COLLECTIONS
   ============================================ */
.collections {
  background: var(--bg-secondary);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.collection-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-elegant);
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.collection-card-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-card:hover .collection-card-image img {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.6), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.collection-count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(212, 180, 131, 0.8);
  padding: 6px 16px;
  border-radius: 30px;
}

.collection-card-content {
  padding: 28px 32px 32px;
}

.collection-card-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.collection-card-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  transition: all var(--transition-smooth);
}

.collection-link i {
  font-size: 11px;
  transition: transform var(--transition-smooth);
}

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

.collection-link:hover i {
  transform: translateX(6px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  background: var(--bg-primary);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.04);
  transition: all var(--transition-elegant);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--blush-rose));
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.why-card:hover::before {
  transform: scaleX(1);
}

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

.why-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-rose), var(--bg-secondary));
  color: var(--accent-gold-dark);
  font-size: 26px;
  transition: all var(--transition-smooth);
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--white);
  transform: scale(1.1);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   BRIDAL JOURNEY / TIMELINE
   ============================================ */
.journey {
  background: var(--bg-secondary);
  overflow: hidden;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-track {
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 3px;
  background: rgba(212, 180, 131, 0.2);
  border-radius: 3px;
  z-index: 0;
}

.timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--blush-rose), var(--dusty-lavender));
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.timeline-step {
  text-align: center;
}

.step-marker {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 28px auto 0;
}

.step-dot {
  width: 14px;
  height: 14px;
  background: var(--bg-secondary);
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all var(--transition-smooth);
}

.timeline-step.active .step-dot {
  background: var(--accent-gold);
  box-shadow: 0 0 0 6px rgba(212, 180, 131, 0.2);
}

.step-ring {
  position: absolute;
  inset: -4px;
  border: 1.5px solid rgba(212, 180, 131, 0.3);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition-smooth);
}

.timeline-step.active .step-ring {
  opacity: 1;
  transform: scale(1);
}

.step-content {
  margin-top: 32px;
  padding: 0 8px;
}

.step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent-gold-dark);
  font-size: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.timeline-step.active .step-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7), transparent);
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.95);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 24px;
  padding: 12px;
  z-index: 20001;
  transition: color var(--transition-fast);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--accent-gold);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonial-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.testimonial-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-gold);
  top: -150px;
  right: -150px;
}

.testimonial-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--blush-rose);
  bottom: -150px;
  left: -100px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card > div:first-child,
.testimonial-quote,
.testimonial-stars,
.testimonial-text,
.testimonial-author {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  color: var(--accent-gold);
  font-size: 32px;
  margin-bottom: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-gold);
  font-size: 16px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 32px;
  font-style: italic;
  background: transparent;
  backdrop-filter: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold-light);
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(43, 43, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-smooth);
}

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

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.15);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.testimonial-dot.active {
  background: var(--accent-gold);
  width: 32px;
  border-radius: 5px;
}

/* ============================================
   APPOINTMENT / BOOKING
   ============================================ */
.appointment {
  background: var(--bg-primary);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.appointment-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
}

.appointment-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.appointment-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 180, 131, 0.15), rgba(212, 180, 131, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  font-size: 12px;
  flex-shrink: 0;
}

.appointment-feature span {
  font-size: 15px;
  color: var(--text-primary);
}

.appointment-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(43, 43, 43, 0.04);
}

.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 0 8px;
  border: none;
  border-bottom: 1.5px solid rgba(43, 43, 43, 0.1);
  background: transparent;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-smooth);
}

.form-group label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 15px;
  color: var(--text-light);
  pointer-events: none;
  transition: all var(--transition-smooth);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -4px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-smooth);
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 43, 43, 0.04);
  transition: all var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-rose), var(--bg-secondary));
  color: var(--accent-gold-dark);
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold-dark);
  transition: all var(--transition-smooth);
}

.contact-card-link i {
  font-size: 11px;
  transition: transform var(--transition-smooth);
}

.contact-card-link:hover {
  color: var(--accent-gold);
}

.contact-card-link:hover i {
  transform: translateX(4px);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 480px;
  background: var(--bg-secondary);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo .logo-main {
  color: var(--accent-gold);
}

.footer-logo .logo-divider {
  background: rgba(212, 180, 131, 0.4);
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-smooth);
}

.footer-socials a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.newsletter-input-wrapper {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  overflow: hidden;
  transition: border-color var(--transition-smooth);
}

.newsletter-input-wrapper:focus-within {
  border-color: var(--accent-gold);
}

.newsletter-input-wrapper input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 14px;
  outline: none;
}

.newsletter-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrapper button {
  padding: 14px 20px;
  color: var(--accent-gold);
  font-size: 16px;
  transition: all var(--transition-smooth);
}

.newsletter-input-wrapper button:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 9998;
  transition: all var(--transition-smooth);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 104px;
  width: 48px;
  height: 48px;
  background: var(--white);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43, 43, 43, 0.06);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-gold);
  color: var(--white);
  border-color: var(--accent-gold);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  :root {
    --section-padding: 100px;
  }

  .container {
    padding: 0 32px;
  }

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

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

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

@media (max-width: 992px) {
  :root {
    --section-padding: 80px;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
    max-width: 100%;
    padding: 0 32px;
  }

  .hero {
    justify-content: center;
  }

  .hero-label::before {
    display: none;
  }

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-img-secondary {
    right: 20px;
    bottom: -30px;
    width: 180px;
    height: 230px;
  }

  .about-experience-badge {
    right: 10px;
  }

  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .timeline-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .timeline-track {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --nav-height: 72px;
    --nav-height-scrolled: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .hero-heading {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-description {
    font-size: 15px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collection-card-image {
    height: 260px;
  }

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 28px 20px;
  }

  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .gallery-item-wide {
    grid-column: span 1;
  }

  .testimonial-card {
    padding: 32px;
  }

  .testimonial-text {
    font-size: 17px;
  }

  .appointment-form-wrapper {
    padding: 32px;
  }

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

  .about-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 56px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .mobile-nav-link {
    font-size: 28px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 84px;
    width: 42px;
    height: 42px;
  }

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}

/* ---- Prefers Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ---- Print ---- */
@media print {
  .nav-header,
  .whatsapp-float,
  .back-to-top,
  .scroll-progress,
  .preloader {
    display: none !important;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 40px 0;
  }

  body {
    color: #000;
    background: #fff;
  }
}
