/* ================================================================
   DANIELA BAKES RD — Design System & Styles
   ================================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --navy: #2B3A67;
  --navy-dark: #1E2A4A;
  --navy-deeper: #151D35;
  --blush: #C9A89A;
  --blush-deep: #A87E6C;
  --blush-ink: #8F6A57;
  --blush-light: #D4C4B8;
  --blush-lighter: #E8DDD6;
  --cream: #F5F0EB;
  --cream-dark: #EDE5DD;
  --white: #FEFCFA;
  --gold: #C8A96E;
  --gold-dark: #A6874C;
  --gold-light: #D4BA85;

  /* Semantic text colors (WCAG-friendly, no gray-on-gray) */
  --text-body: #3E4A6E;
  --text-muted: #56618A;
  --text-soft: #6B7494;
  --text-on-dark: rgba(255, 255, 255, 0.78);
  --text-on-dark-soft: rgba(255, 255, 255, 0.6);

  /* Elevation scale */
  --shadow-sm: 0 2px 8px rgba(43, 58, 103, 0.06);
  --shadow-md: 0 8px 24px rgba(43, 58, 103, 0.1);
  --shadow-lg: 0 20px 50px rgba(43, 58, 103, 0.14);
  --shadow-xl: 0 30px 70px rgba(43, 58, 103, 0.18);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s var(--ease-out-quart);
  --transition-medium: 0.4s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);

  /* Layout */
  --max-width: 1280px;
  --nav-height: 80px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--navy-dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--blush);
  color: var(--navy-dark);
}

/* ── Focus visible (keyboard accessibility) ── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ── Custom scrollbar (brand-toned) ── */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blush), var(--blush-deep));
  border-radius: 6px;
  border: 3px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blush-deep);
}

/* ── Utility Classes ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blush-ink);
  margin-bottom: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Delicate ornament lines flanking section labels */
.section-label::before,
.section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blush));
  flex-shrink: 0;
}

.section-label::after {
  background: linear-gradient(90deg, var(--blush), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: var(--space-md);
  text-wrap: balance;
}

.section-title em {
  font-style: italic;
  color: var(--blush-deep);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  text-align: center;
  text-wrap: pretty;
}

/* ── Animated reveal setup ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  will-change: opacity, transform;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}


/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
  background: rgba(254, 252, 250, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 30px rgba(43, 58, 103, 0.08);
  border-bottom: 1px solid rgba(201, 168, 154, 0.25);
  height: 70px;
}

.navbar .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.navbar.scrolled .nav-logo img {
  width: 40px;
  height: 40px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.nav-logo-text span {
  color: var(--blush);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.2px;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blush);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--navy);
}

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

.nav-links .nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 34px;
  min-height: 48px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white) !important;
  opacity: 1 !important;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px !important;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease-out-expo) !important;
  box-shadow: 0 4px 16px rgba(43, 58, 103, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-links .nav-cta::after {
  display: none !important;
}

/* Shine sweep on hover */
.nav-links .nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.nav-links .nav-cta:hover::before {
  left: 135%;
}

.nav-links .nav-cta:hover {
  background: linear-gradient(150deg, var(--blush) 0%, var(--gold-light) 100%);
  color: var(--navy-dark) !important;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 154, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.nav-links .nav-cta svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

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

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

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


/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    160deg,
    var(--cream) 0%,
    var(--white) 30%,
    var(--blush-lighter) 60%,
    var(--cream-dark) 100%
  );
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Subtle film grain for tactile, artisanal feel */
.hero::after,
.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Decorative shapes */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero-deco-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 154, 0.3) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: floatSlow 15s ease-in-out infinite;
}

.hero-deco-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(43, 58, 103, 0.12) 0%, transparent 70%);
  bottom: -5%;
  left: -5%;
  animation: floatSlow 18s ease-in-out infinite reverse;
}

.hero-deco-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.18) 0%, transparent 70%);
  top: 30%;
  left: 20%;
  animation: floatSlow 12s ease-in-out infinite 3s;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-15px, 20px) scale(0.95); }
  75% { transform: translate(10px, -10px) scale(1.02); }
}

/* Particles canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: rgba(254, 252, 250, 0.65);
  border: 1px solid rgba(201, 168, 154, 0.45);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: var(--space-md);
  letter-spacing: -2px;
}

/* Hide hero elements until GSAP animateHero() runs */
.hero-badge,
.hero-title .line,
.hero-subtitle,
.hero-actions > *,
.scroll-indicator {
  visibility: hidden;
}

.hero-title .accent {
  color: var(--blush-deep);
  font-style: italic;
  /* Soft golden marker highlight behind the accent words */
  background-image: linear-gradient(
    to top,
    rgba(200, 169, 110, 0.28) 0%,
    rgba(200, 169, 110, 0.28) 28%,
    transparent 28%
  );
  padding: 0 0.12em;
  border-radius: 4px;
}

.hero-title .sparkle {
  display: inline-block;
  animation: sparkleFloat 3s ease-in-out infinite;
}

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(10deg); }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  text-align: center;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  min-height: 52px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 8px 30px rgba(43, 58, 103, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(43, 58, 103, 0.35);
}

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

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

.btn-primary:hover {
  color: var(--navy-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  min-height: 52px;
  background: rgba(254, 252, 250, 0.55);
  color: var(--navy);
  border: 1.5px solid rgba(43, 58, 103, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease-out-expo);
}

.btn-secondary:hover {
  border-color: var(--blush-deep);
  background: rgba(201, 168, 154, 0.14);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--navy), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}


/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about {
  padding: var(--space-3xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-text {
  padding-right: var(--space-xl);
}

.about-text .section-subtitle {
  margin-bottom: var(--space-lg);
}

.about-description {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  text-wrap: pretty;
}

.about-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

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

/* Hairline separators between stats */
.stat-item + .stat-item {
  border-left: 1px solid rgba(201, 168, 154, 0.4);
  padding-left: var(--space-xl);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  /* Equal-width digits: the number never wobbles while counting up */
  font-variant-numeric: tabular-nums;
}

.stat-number .accent {
  color: var(--blush);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.about-visual {
  position: relative;
}

/* Offset golden frame behind the photo — boutique gallery detail */
.about-visual::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px;
  right: -22px;
  bottom: -22px;
  border: 1.5px solid rgba(200, 169, 110, 0.45);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

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

/* Decorative card floating on top of image */
.about-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  padding: 20px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(43, 58, 103, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-float-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blush), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.about-float-card .card-text {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.about-float-card .card-text span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  opacity: 0.6;
}


/* ================================================================
   GALLERY / CREATIONS SECTION
   ================================================================ */
.gallery {
  padding: var(--space-3xl) 0;
  background: var(--cream);
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

/* Filter tabs — Premium sliding pill */
.gallery-filters {
  display: inline-flex;
  justify-content: center;
  gap: 4px;
  margin-top: 28px;
  background: rgba(43, 58, 103, 0.04);
  border: 1px solid rgba(43, 58, 103, 0.08);
  border-radius: var(--radius-full);
  padding: 5px;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Sliding pill indicator */
.filter-pill {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: var(--navy);
  border-radius: var(--radius-full);
  z-index: 0;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(43, 58, 103, 0.25);
}

.filter-btn {
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.6;
  background: transparent;
  border: none;
  transition: opacity 0.35s ease, color 0.35s ease, transform 0.2s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.filter-btn:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.filter-btn:active {
  transform: scale(0.97);
}

.filter-btn.active {
  opacity: 1;
  color: var(--white);
}

/* Masonry Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: var(--space-xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: all 0.5s var(--ease-out-expo);
  box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

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

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(30, 42, 74, 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: var(--white);
}

.gallery-overlay-text h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-overlay-text span {
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Touch devices: captions always visible (never hover-only info) */
@media (hover: none) {
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(
      180deg,
      transparent 55%,
      rgba(30, 42, 74, 0.82) 100%
    );
  }
}


/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(21, 29, 53, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  transform: scale(0.9);
  transition: transform 0.5s var(--ease-out-expo);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}


/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services {
  padding: var(--space-3xl) 0;
  background: var(--white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  padding: 40px 28px 36px;
  background: var(--cream);
  border-radius: var(--radius-xl);
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
  border: 1.5px solid rgba(201, 168, 154, 0.18);
  text-align: center;
}

/* Golden accent line that draws in on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--gold));
  border-radius: 0 0 3px 3px;
  transition: width 0.5s var(--ease-out-expo);
  z-index: 2;
}

.service-card:hover::after {
  width: 60%;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  border-radius: var(--radius-xl);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--blush);
  box-shadow: 0 20px 50px rgba(43, 58, 103, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blush-lighter), var(--blush));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto var(--space-md);
  box-shadow: 0 6px 16px rgba(201, 168, 154, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.05);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blush), var(--gold-light));
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.5s ease;
}

.service-card:hover .service-title {
  color: var(--white);
}

.service-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  transition: all 0.5s ease;
  text-wrap: pretty;
}

.service-card:hover .service-desc {
  color: var(--white);
  opacity: 0.85;
}


/* ================================================================
   INSTAGRAM / MARQUEE SECTION
   ================================================================ */
.instagram-section {
  padding: var(--space-2xl) 0;
  background: var(--navy-dark);
  overflow: hidden;
  position: relative;
}

.instagram-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.instagram-header .section-label {
  color: var(--gold-light);
}

.instagram-header .section-title {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.instagram-header .section-title em {
  color: var(--gold-light);
}

.instagram-header .section-subtitle {
  color: var(--text-on-dark);
  margin: 0 auto;
}

.instagram-header .section-label::before {
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.instagram-header .section-label::after {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out-expo);
}

.marquee-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.4s var(--ease-out-expo);
}

.instagram-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.instagram-link svg {
  width: 18px;
  height: 18px;
}


/* ================================================================
   CONTACT / CTA SECTION
   ================================================================ */
.contact {
  padding: var(--space-3xl) 0;
  background: linear-gradient(
    160deg,
    var(--cream) 0%,
    var(--blush-lighter) 50%,
    var(--cream-dark) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-content {
  position: relative;
  z-index: 2;
}

.contact .section-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact .section-subtitle {
  margin: 0 auto var(--space-xl);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 48px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #25D366, #128C7E, #25D366);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 50px rgba(37, 211, 102, 0.4);
}

.contact-cta:hover::before {
  opacity: 1;
}

.contact-cta svg {
  width: 24px;
  height: 24px;
}

.contact-info {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--blush-deep);
}

/* Floating confetti / sparkle decorations */
.contact-deco {
  position: absolute;
  pointer-events: none;
}

.contact-deco-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.15) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  filter: blur(60px);
  animation: floatSlow 12s ease-in-out infinite;
}

.contact-deco-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 154, 0.2) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  filter: blur(50px);
  animation: floatSlow 10s ease-in-out infinite reverse;
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-deeper);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
  position: relative;
}

/* Golden hairline crowning the footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--blush), transparent);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo-text span {
  color: var(--blush);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-on-dark-soft);
  margin-bottom: var(--space-md);
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
}

.footer-socials a:hover {
  background: var(--blush);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-on-dark-soft);
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--blush);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-on-dark-soft);
}

.footer-bottom a {
  font-size: 0.8rem;
  color: var(--text-on-dark-soft);
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--blush);
}


/* ================================================================
   LOADING SCREEN
   ================================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loader-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 3px;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blush), var(--gold-light));
  border-radius: 2px;
  animation: loaderFill 1.8s var(--ease-out-expo) forwards;
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}


/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */

/* Tablet */
@media (max-width: 1024px) {
  /* ── Navigation: hamburger menu from tablet down ── */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(254, 252, 250, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-text {
    padding-right: 0;
    text-align: center;
  }

  .about-text .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-float-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 65px;
  }

  section {
    padding: 50px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* ── Hero ── */
  .hero {
    min-height: 85vh;
    padding-top: var(--nav-height);
  }

  .hero-title {
    letter-spacing: -1px;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-title br {
    display: none;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    padding: 0 10px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .scroll-indicator {
    bottom: 1.2rem;
  }

  /* ── Section titles — hide br, fix sizes ── */
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
  }

  .section-title {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }

  .section-title br {
    display: none;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  /* ── About ── */
  .about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }

  .about-text {
    text-align: center;
    padding-right: 0;
  }

  .about-text .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .about-description {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .about-image-wrapper {
    max-width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
  }

  /* Tighter golden frame so it never bleeds off-screen */
  .about-visual::before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border-radius: 16px;
  }

  .about-float-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    padding: 12px 18px;
  }

  .about-float-card .card-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .about-float-card .card-text {
    font-size: 0.8rem;
  }

  .about-stats {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
  }

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

  .stat-item + .stat-item {
    padding-left: 24px;
  }

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

  .stat-label {
    font-size: 0.68rem;
  }

  /* ── Gallery ── */
  .gallery-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
    margin: 24px 0 0 0;
    gap: 8px;
    width: 100%;
    border-radius: 0;
    border: none;
    background: transparent;
  }

  .filter-pill {
    display: none;
  }

  .filter-btn {
    padding: 9px 18px;
    font-size: 0.78rem;
    flex-shrink: 0;
    background: rgba(43, 58, 103, 0.06);
    border-radius: var(--radius-full);
  }

  .filter-btn.active {
    background: var(--navy);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 14px;
  }

  .gallery-item {
    border-radius: 12px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: span 1;
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .gallery-overlay-text h4 {
    font-size: 0.85rem;
  }

  .gallery-overlay-text span {
    font-size: 0.65rem;
  }

  /* ── Services ── */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-card {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin: 0 auto 8px;
  }

  .service-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .service-desc {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  /* ── Instagram marquee ── */
  .marquee-item {
    width: 170px;
    height: 170px;
    border-radius: 12px;
  }

  /* ── Contact ── */
  .contact-cta {
    padding: 14px 32px;
    font-size: 0.92rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* ── Lightbox ── */
  .lightbox-nav {
    width: 36px;
    height: 36px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 75vh;
    border-radius: 10px;
  }

  .lightbox-counter {
    bottom: 16px;
    font-size: 0.72rem;
  }

  /* ── Floating WA button ── */
  .floating-wa {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .floating-wa svg {
    width: 22px;
    height: 22px;
  }

  /* ── Section divider ── */
  .section-divider {
    padding: 12px 0;
  }

  .section-divider-track span {
    font-size: 0.85rem;
    padding: 0 8px;
  }
}

@media (max-width: 420px) {
  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  .gallery-grid {
    gap: 6px;
  }

  .services-grid {
    gap: 6px;
  }

  .service-card {
    padding: 16px 10px;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .service-title {
    font-size: 0.82rem;
  }

  .service-desc {
    font-size: 0.7rem;
  }

  .marquee-item {
    width: 140px;
    height: 140px;
  }

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

  .about-stats {
    gap: 16px;
  }

  .stat-item + .stat-item {
    padding-left: 16px;
  }

  .section-label::before,
  .section-label::after {
    width: 20px;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: 0.72rem;
  }
}

/* ── Smooth scroll offset for anchors ── */
section[id] {
  scroll-margin-top: var(--nav-height);
}

/* ── Reduced motion: respect user preference ── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ================================================================
   SCROLL PROGRESS BAR
   ================================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  background: transparent;
}

.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blush), var(--gold), var(--blush));
  background-size: 200% 100%;
  animation: progressGradient 3s ease infinite;
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(201, 168, 154, 0.5);
}

@keyframes progressGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  margin: -3px 0 0 -3px;
  transition: width 0.3s ease, height 0.3s ease, margin 0.3s ease, background 0.3s ease;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: -18px 0 0 -18px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              margin 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

.cursor-dot.cursor-hover {
  width: 0;
  height: 0;
  margin: 0;
}

.cursor-ring.cursor-hover {
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.cursor-ring.cursor-view {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
  .custom-cursor {
    display: none !important;
  }
}


/* ================================================================
   SECTION DIVIDERS (Horizontal text marquee)
   ================================================================ */
.section-divider {
  overflow: hidden;
  padding: 20px 0;
  background: var(--cream);
  border-top: 1px solid rgba(43, 58, 103, 0.06);
  border-bottom: 1px solid rgba(43, 58, 103, 0.06);
}

.section-divider.divider-dark {
  background: var(--navy-dark);
  border-color: rgba(255, 255, 255, 0.05);
}

.section-divider-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.section-divider-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--navy);
  opacity: 0.3;
  padding: 0 12px;
  letter-spacing: 1.5px;
}

.divider-dark .section-divider-track span {
  color: var(--white);
  opacity: 0.15;
}

.section-divider-track .divider-dot {
  font-size: 0.7rem;
  opacity: 0.35;
  color: var(--blush);
  padding: 0 8px;
}

.divider-dark .section-divider-track .divider-dot {
  color: var(--gold-light);
  opacity: 0.3;
}


/* ================================================================
   FLOATING WHATSAPP BUTTON
   ================================================================ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 9990;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s var(--ease-out-expo);
}

.floating-wa:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
}


/* ================================================================
   LOADER COUNTER
   ================================================================ */
.loader-counter {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.3;
  margin-top: 16px;
  letter-spacing: 2px;
}

.loader-counter span::after {
  content: '%';
  font-size: 1.5rem;
  opacity: 0.6;
  margin-left: 2px;
}


/* ================================================================
   LIGHTBOX COUNTER
   ================================================================ */
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.5;
  letter-spacing: 2px;
}


/* ================================================================
   HERO TITLE LINE WRAPS (for GSAP split animation)
   ================================================================ */
.hero-title .line {
  overflow: visible;
  display: block;
  padding: 0 10px 10px 10px;
}


/* ================================================================
   WORD WRAP (for staggered text reveals)
   ================================================================ */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 4px;
}

.word-wrap .word {
  display: inline-block;
}
