/* ============================================================
   DECOR BY SHUBHAM — LUXURY WEDDING & EVENT DESIGN
   Main Stylesheet — Production Grade
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@200;300;400;500;600&family=Great+Vibes&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9e7a2f;
  --gold-pale: #f5ead8;
  --cream: #faf6f0;
  --cream-dark: #f0e8d8;
  --ivory: #fdf8f2;
  --charcoal: #1a1a1a;
  --dark-bg: #0d0b08;
  --dark-section: #111008;
  --dark-card: #1c1a12;
  --text-primary: #2c2416;
  --text-secondary: #6b5d4a;
  --text-light: #9e8e78;
  --white: #ffffff;
  --off-white: #f9f5ef;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e8c97a 50%, #c9a84c 100%);
  --gradient-gold-shine: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.4) 50%, transparent 100%);
  --gradient-dark: linear-gradient(180deg, #0d0b08 0%, #1a150a 100%);
  --gradient-hero: linear-gradient(to right, rgba(250,246,240,1) 0%, rgba(250,246,240,0) 100%);
  --gradient-section: linear-gradient(180deg, #faf6f0 0%, #f0e8d8 100%);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans: 'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-py: 100px;
  --section-py-sm: 70px;
  --container-max: 1400px;
  --container-px: 80px;
  --container-px-md: 40px;
  --container-px-sm: 20px;

  /* Shadows */
  --shadow-gold: 0 0 30px rgba(201,168,76,0.3);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-card-hover: 0 40px 80px rgba(0,0,0,0.2);
  --shadow-luxury: 0 8px 40px rgba(201,168,76,0.15);

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

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

body.loader-active {
  overflow: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ---------- Custom Cursor ---------- */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  mix-blend-mode: normal;
}

.custom-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.custom-cursor.cursor-hover {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.1);
  border-color: var(--gold-light);
}

/* ---------- Particle Canvas ---------- */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ============================================================
   INTRO LOADER
   ============================================================ */
#intro-loader {
  position: fixed;
  inset: 0;
  background: #0a0804;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

#intro-loader canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.intro-logo {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
}

.intro-logo span {
  font-family: var(--font-script);
  font-size: clamp(32px, 5vw, 56px);
  display: block;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(201,168,76,0.6);
  margin-top: 4px;
}

.intro-tagline {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
  opacity: 0;
}

.intro-tagline .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

.intro-progress {
  width: 200px;
  height: 1px;
  background: rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.intro-progress-bar {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gradient-gold);
  box-shadow: 0 0 10px var(--gold);
}

#skip-intro {
  position: absolute;
  top: 30px; right: 40px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 3;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 16px;
  border-radius: 2px;
}

#skip-intro:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.intro-light-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  pointer-events: none;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  transition: var(--transition-smooth);
  padding: 22px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header.scrolled {
  background: rgba(250,246,240,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 14px var(--container-px);
}

.header-logo {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.2;
}

.header-logo span {
  font-family: var(--font-script);
  font-size: 28px;
  display: block;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  line-height: 1;
}

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

.header-nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  transition: color 0.3s;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-consultation {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-consultation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-consultation:hover {
  color: var(--dark-bg);
  border-color: var(--gold);
}

.btn-consultation:hover::before {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,8,4,0.97);
  backdrop-filter: blur(30px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  transition: color 0.3s;
  transform: translateY(30px);
  opacity: 0;
}

.mobile-nav-links a:hover {
  color: var(--gold-light);
}

.mobile-nav.active .mobile-nav-links a {
  animation: mobileNavReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-nav-links a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-links a:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-links a:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-links a:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-links a:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-links a:nth-child(6) { animation-delay: 0.35s; }

@keyframes mobileNavReveal {
  to { transform: translateY(0); opacity: 1; }
}

.mobile-nav-footer {
  position: absolute;
  bottom: 40px;
  text-align: center;
}

.mobile-nav-footer .btn-gold {
  display: inline-block;
  margin-top: 20px;
}

.mobile-nav-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 20px auto;
  opacity: 0.4;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--gradient-gold);
  color: var(--dark-bg);
  padding: 14px 32px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 13px 28px;
  border: 1px solid rgba(44,36,22,0.3);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
}

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

.btn-ghost svg, .btn-gold svg {
  width: 14px; height: 14px;
  transition: transform 0.3s;
}

.btn-ghost:hover svg, .btn-gold:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before, .section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 60px;
}

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

.section-label-center {
  justify-content: center;
}

.section-label-center::before {
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-family: var(--font-serif);
}

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

/* Hero uses full-width left-padded layout, NOT centered container */
#hero .container {
  max-width: 100%;
  width: 100%;
  padding-left: var(--container-px);
  padding-right: 0;
}

.hero-bg-image {
  position: absolute;
  top: 0; right: 0;
  width: 75%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(250,246,240,1) 0%,
    rgba(250,246,240,1) 38%,
    rgba(250,246,240,0.85) 50%,
    rgba(250,246,240,0.15) 68%,
    rgba(250,246,240,0) 82%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 560px;
  padding-top: 110px;
  padding-bottom: 80px;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #8b6514;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  color: #1a0d02;
  margin-bottom: 10px;
}

.hero-title em {
  font-style: italic;
  color: #8b6514;
  display: block;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 500;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #4a3e2e;
  max-width: 380px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  right: 42%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 110px; height: 110px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(201,168,76,0.4);
  animation: rotateBadge 20s linear infinite;
}

.hero-badge-text {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark-bg);
  line-height: 1.8;
}

@keyframes rotateBadge {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-portrait {
  position: absolute;
  right: 25%;
  bottom: 0;
  width: 300px;
  z-index: 3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  overflow: hidden;
}

.hero-portrait img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: var(--container-px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.scroll-line {
  width: 50px; height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: white;
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  to { left: 100%; }
}

/* ============================================================
   ABOUT SECTION — 3-column: image | text | stats
   ============================================================ */
#about {
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}

/* Full-bleed 3-column wrapper — no container padding so image reaches edge */
.about-inner {
  display: grid;
  grid-template-columns: 38% 1fr 280px;
  min-height: 520px;
  align-items: stretch;
}

/* ── LEFT: Image column ── */
.about-image-col {
  position: relative;
  overflow: hidden;
}

.about-main-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
}

/* ── MIDDLE: Text column ── */
.about-text-col {
  padding: 80px 60px 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-col .section-label {
  color: var(--gold);
  margin-bottom: 20px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 28px;
}

.about-title em {
  font-style: italic;
  color: var(--gold-light);
}

.about-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}

/* ── RIGHT: Stats column ── */
.about-stats-col {
  border-left: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
  gap: 0;
  background: rgba(0,0,0,0.15);
}

.about-stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition-fast);
}

.about-stat-item:last-child {
  border-bottom: none;
}

.about-stat-item:hover {
  transform: translateX(4px);
}

.about-stat-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.about-stat-icon svg {
  width: 18px;
  height: 18px;
}

.about-stat-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.about-stat-number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.about-stat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--ivory);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-title {
  font-size: clamp(32px, 4vw, 52px);
}

.services-slider-wrap {
  position: relative;
}

.services-slider {
  overflow: hidden;
  padding: 20px 0 40px;
}

.services-track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  user-select: none;
}

.services-track:active {
  cursor: grabbing;
}

.service-card {
  flex: 0 0 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--dark-card);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  cursor: pointer;
  opacity: 1 !important; /* prevent GSAP opacity flash */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover), 0 0 30px rgba(201,168,76,0.2);
}

.service-card-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 20px 22px;
  background: linear-gradient(transparent, rgba(10,8,4,0.88) 50%, rgba(10,8,4,0.97));
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.service-card-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.service-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color 0.4s;
  pointer-events: none;
}

.service-card:hover .service-card-border {
  border-color: rgba(201,168,76,0.4);
}

.services-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(250,246,240,0.9);
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
  z-index: 10;
}

.services-nav:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.services-nav svg {
  width: 16px; height: 16px;
  color: var(--gold-dark);
  transition: color 0.3s;
}

.services-nav:hover svg {
  color: var(--dark-bg);
}

.services-nav-prev { left: -22px; }
.services-nav-next { right: -22px; }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
#portfolio {
  background: var(--dark-bg);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.portfolio-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.portfolio-title em {
  font-style: italic;
  color: var(--gold-light);
}

.portfolio-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}

.portfolio-link:hover {
  gap: 16px;
}

.portfolio-link svg {
  width: 16px; height: 16px;
}

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

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.portfolio-card:first-child {
  grid-column: span 1;
  aspect-ratio: 3/4;
  grid-row: span 1;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10,8,4,0.9));
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.portfolio-card-info .card-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.portfolio-card-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
}

.portfolio-card-border {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201,168,76,0);
  border-radius: calc(var(--radius-md) - 4px);
  transition: border-color 0.5s;
  pointer-events: none;
}

.portfolio-card:hover .portfolio-card-border {
  border-color: rgba(201,168,76,0.5);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us {
  background: var(--dark-bg);
  padding: var(--section-py) 0;
  position: relative;
}

#why-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.why-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

.why-header {
  flex: 0 0 280px;
  margin-bottom: 0;
}

.why-label-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.why-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0;
}

.why-line {
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.3);
}

.why-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.why-title em {
  font-style: italic;
  color: var(--gold);
}

.why-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  text-align: left;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.05);
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.why-card-icon svg {
  width: 22px;
  height: 22px;
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--cream);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-label::before {
  display: block;
}

.testimonials-header .section-title {
  font-size: clamp(30px, 4vw, 50px);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-serif);
  font-size: 100px;
  color: var(--gold-light);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,168,76,0.3);
}

.testimonial-quote-icon {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-style: italic;
}

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

.testimonial-author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}

.testimonial-author-info h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.testimonial-author-info span {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
#instagram {
  background: var(--cream);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.instagram-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.instagram-left .section-title {
  font-size: clamp(28px, 3.5vw, 44px);
}

.instagram-handle {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: var(--gold-dark);
  margin-top: 16px;
  margin-bottom: 12px;
}

.instagram-label-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 12px 28px;
  border-radius: 2px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.instagram-follow-btn:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

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

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.insta-item-overlay svg {
  width: 28px; height: 28px;
  color: white;
}

/* ============================================================
   CONTACT / CONSULTATION SECTION
   ============================================================ */
#contact {
  background: var(--cream-dark);
  padding: var(--section-py) 0;
}

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

.contact-left .section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  margin-bottom: 20px;
}

.contact-tagline {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
}

.contact-info-icon svg {
  width: 14px; height: 14px;
  color: var(--gold-dark);
}

.contact-info-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-text strong {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Consultation Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,168,76,0.12);
}

.form-card-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-card-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--ivory);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

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

.form-group select {
  cursor: pointer;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark-bg);
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.footer-brand .logo-name {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.footer-brand p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: var(--transition-fast);
  font-size: 14px;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

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

.whatsapp-float svg {
  width: 26px; height: 26px;
  color: white;
}

.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  cursor: pointer;
  transition: var(--transition-fast);
  opacity: 0;
  visibility: hidden;
  border: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.scroll-top-btn svg {
  width: 18px; height: 18px;
  color: var(--dark-bg);
}

/* ============================================================
   LIGHT SWEEP EFFECT
   ============================================================ */
.light-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.gold-divider {
  width: 60px; height: 1px;
  background: var(--gradient-gold);
  margin: 20px 0;
}

.gold-divider-center {
  margin: 20px auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  :root {
    --container-px: 60px;
    --section-py: 80px;
  }
  .hero-bg-image { width: 62%; }
  .hero-bg-image { width: 62%; }
  .service-card { flex: 0 0 calc(25% - 18px); }
}

@media (max-width: 1024px) {
  :root {
    --container-px: 40px;
    --section-py: 70px;
  }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-secondary { right: -20px; bottom: -20px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card:first-child { grid-row: span 2; }
  .instagram-layout { grid-template-columns: 1fr; gap: 40px; }
  .instagram-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-badge { right: 38%; width: 90px; height: 90px; }
}

@media (max-width: 768px) {
  :root {
    --container-px: var(--container-px-sm);
    --section-py: 60px;
  }
  .hero-bg-image {
    width: 100%;
    opacity: 0.3;
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(250,246,240,0.92) 0%, rgba(250,246,240,0.9) 100%);
  }
  .hero-content { max-width: 100%; padding-top: 120px; }
  .hero-badge { display: none; }
  .hero-portrait { display: none; }
  .hero-scroll-indicator { left: 20px; }
  .about-img-secondary { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card:first-child { grid-column: span 2; aspect-ratio: 16/9; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-nav { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .header-right .btn-consultation { display: none; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  #header { padding: 18px 20px; }
  #header.scrolled { padding: 12px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .hero-title em { font-size: 36px; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .custom-cursor, .custom-cursor-dot { display: none; }
}

/* ============================================================
   SPARKLE PARTICLES
   ============================================================ */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.8) 0%, transparent 70%);
  animation: sparkleAnim 0.8s forwards;
}

@keyframes sparkleAnim {
  0% { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0); }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold { color: var(--gold-dark); }
.text-italic { font-style: italic; }
.mt-auto { margin-top: auto; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
