/* ==========================================================================
   SHINES STUDDIO — Luxury Wedding Photography & Cinematography Landing Page
   Theme: Deep Obsidian Black, Warm Ivory & Muted Champagne Gold
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #0b0b0c;
  --bg-card: #141417;
  --bg-surface: #18181c;
  --bg-input: #202025;
  
  --gold-primary: #d4af37;
  --gold-light: #f4e8c1;
  --gold-dark: #a38029;
  --gold-gradient: linear-gradient(135deg, #f4e8c1 0%, #d4af37 50%, #aa8022 100%);
  
  --text-white: #f9f8f6;
  --text-body: #d1d1d6;
  --text-muted: #8e8e93;
  
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  --glass-bg: rgba(18, 18, 20, 0.85);
  --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions & Radii */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  color: var(--text-white);
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.dark-surface {
  background-color: var(--bg-surface);
}

.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.relative-z { position: relative; z-index: 2; }

.text-gold {
  color: var(--gold-primary);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons & Components */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold-gradient);
  color: #0b0b0c;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.35);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.btn-text {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}

.btn-text:hover {
  color: var(--gold-light);
  gap: 0.7rem;
}

/* Section Header Styles */
.section-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.heading-gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1.25rem 0 2rem 0;
}

/* Header Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: var(--transition-smooth);
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  padding: 0.5rem 0;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.official-logo-img {
  height: 98px; /* 25% size increase (~100px) */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .official-logo-img {
  height: 75px;
}

.official-logo-img:hover {
  transform: scale(1.03);
}

.official-logo-img-footer {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-body);
  text-transform: uppercase;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-gold);
  z-index: 2000;
  transition: var(--transition-smooth);
  box-shadow: -10px 0 30px rgba(0,0,0,0.9);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold-primary);
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.drawer-link {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
}

.drawer-link.highlight {
  color: var(--gold-primary);
  font-weight: 700;
}

.drawer-contact {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.contact-num {
  display: block;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 12, 0.8) 0%,
    rgba(11, 11, 12, 0.65) 50%,
    rgba(11, 11, 12, 0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 20, 22, 0.7);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
}

.hero-title {
  font-size: 4.25rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Quick Availability Checker */
.hero-quick-checker {
  background: var(--glass-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(16px);
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-luxury);
}

.checker-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.checker-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
}

.checker-input {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-white);
  outline: none;
  transition: var(--transition-smooth);
}

.checker-input:focus {
  border-color: var(--gold-primary);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 5px;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 30px;
  background: var(--gold-gradient);
  margin: 0 auto;
  animation: pulseHeight 2s infinite;
}

@keyframes pulseHeight {
  0%, 100% { height: 25px; opacity: 0.5; }
  50% { height: 40px; opacity: 1; }
}

/* STATS SECTION */
.stats-section {
  background: var(--bg-card);
  border-y: 1px solid var(--border-subtle);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
}

.stat-number-wrapper {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.stat-number-raw {
  color: var(--gold-primary);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* HISTORY / EXPERIENCE SECTION */
.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.lead-text {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.quote-text {
  font-size: 1.15rem;
  color: var(--gold-light);
  border-left: 2px solid var(--gold-primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.experience-paragraphs p {
  margin-bottom: 1.25rem;
}

.experience-highlights {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-white);
}

.hl-icon {
  color: var(--gold-primary);
}

/* LUXURY COLLAGE FRAME COMPONENT */
.experience-media {
  position: relative;
}

.collage-wrapper {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-card {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-luxury);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), z-index 0.3s ease;
  background: var(--bg-card);
}

.collage-card:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10 !important;
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.collage-card-main {
  width: 320px;
  top: 0;
  left: 40px;
  z-index: 3;
  transform: rotate(-3deg);
}

.collage-card-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
}

.collage-card-sub {
  width: 220px;
  bottom: 0;
  right: 20px;
  z-index: 4;
  transform: rotate(4deg);
}

.collage-card-sub img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

.collage-card-third {
  width: 180px;
  top: 60px;
  right: 0px;
  z-index: 2;
  transform: rotate(8deg);
  border-color: rgba(255,255,255,0.2);
}

.collage-card-third img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.collage-badge {
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 5;
  background: rgba(11, 11, 12, 0.95);
  border: 1px solid var(--gold-primary);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-luxury);
}

.collage-badge .years {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.collage-badge .text {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* STYLES GRID SECTION */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.style-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.card-image-box {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.style-card:hover .card-image-box img {
  transform: scale(1.08);
}

.card-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 11, 12, 0.75);
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
}

.card-content {
  padding: 1.75rem;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* EMOTIONAL BANNER */
.emotional-section {
  position: relative;
  padding: 8rem 0;
  background-image: url('../assets/wedding_pyro_entrance.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.emotional-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 12, 0.88);
}

.emotional-tag {
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 1rem;
}

.emotional-headline {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.emotional-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.list-word {
  color: var(--text-white);
}

.emotional-body {
  font-size: 1.25rem;
  font-style: italic;
  max-width: 750px;
  margin: 0 auto 3rem auto;
  color: var(--text-body);
}

/* WEDDING JOURNEY SECTION */
.journey-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.journey-timeline-nav {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.3);
}

.timeline-step {
  padding: 1.25rem 1.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-bottom: 2px solid transparent;
}

.timeline-step:hover {
  color: var(--gold-light);
}

.timeline-step.active {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.journey-card-display {
  padding: 3rem;
}

.journey-card-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.step-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.step-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

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

.step-checklist li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.step-checklist li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.journey-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

/* PORTFOLIO MASONRY SECTION */
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #0b0b0c;
  border-color: var(--gold-primary);
  font-weight: 700;
}

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

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.portfolio-item.grid-item-tall {
  grid-row: span 2;
  height: 696px;
}

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

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

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

.item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 12, 0.95) 0%, rgba(11, 11, 12, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.item-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.35rem;
}

.item-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.item-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.btn-view-story {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 3rem;
  cursor: pointer;
  z-index: 3010;
}

.lightbox-content {
  position: relative;
  max-width: 1000px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-box {
  text-align: center;
  max-height: 80vh;
}

.lightbox-image-box img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

.lightbox-caption {
  margin-top: 1rem;
}

.lightbox-caption h3 {
  font-size: 1.5rem;
  color: var(--gold-light);
}

.lightbox-caption p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lightbox-nav {
  background: rgba(20, 20, 22, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3005;
}

.lightbox-nav.prev { left: -60px; }
.lightbox-nav.next { right: -60px; }

/* CINEMATIC FILMS SECTION */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-thumbnail-box {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 480px;
  background: #000;
}

.video-thumbnail-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-card-info {
  padding: 1.25rem;
}

.film-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.film-title {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.film-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.films-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feat-pill {
  font-size: 0.9rem;
  color: var(--gold-light);
}

/* WHY SHINES GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
}

.why-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.why-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* TESTIMONIALS SECTION */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--gold-primary);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.couple-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}

.couple-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* LOCAL TRUST & SEO SECTION */
.local-seo-card {
  background: linear-gradient(135deg, rgba(20, 20, 23, 0.9) 0%, rgba(11, 11, 12, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-luxury);
}

.location-pills {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem 0;
}

.loc-pill {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
}

.local-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.service-box:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.serv-img-box {
  width: 100%;
  height: 170px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.serv-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.serv-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.serv-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ SECTION */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* URGENCY BANNER */
.urgency-section {
  padding: 4rem 0;
}

.urgency-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(20, 20, 23, 0.95) 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.urgency-tag {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.urgency-title {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.urgency-text {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
}

/* LEAD GENERATION & CRM SECTION */
.enquiry-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.enquiry-info-side {
  padding: 3.5rem 2.5rem;
  background: linear-gradient(180deg, rgba(24, 24, 28, 0.9) 0%, rgba(11, 11, 12, 0.95) 100%);
  border-right: 1px solid var(--border-subtle);
}

.enquiry-heading {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.enquiry-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.enquiry-trust-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.point-item {
  display: flex;
  gap: 1rem;
}

.point-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.point-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-white);
}

.point-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.enquiry-direct-contacts {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.direct-call-btn, .whatsapp-direct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.direct-call-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
}

.whatsapp-direct-btn {
  background: #25d366;
  color: #fff;
}

/* CRM IFRAME EMBED CONTAINER */
.crm-embed-side {
  position: relative;
  background: var(--bg-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.crm-iframe {
  width: 100%;
  height: 720px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  background: #ffffff;
}

/* LUXURY CRM MODAL POPUP */
.crm-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.crm-modal.active {
  display: flex;
}

.crm-modal-container {
  position: relative;
  width: 100%;
  max-width: 820px;
  height: 90vh;
  max-height: 800px;
  background: var(--bg-card);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxury);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.crm-modal-header {
  padding: 1rem 1.5rem;
  background: rgba(11, 11, 12, 0.95);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crm-modal-title {
  font-size: 1.25rem;
  color: var(--gold-light);
}

.crm-modal-close {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
}

.crm-modal-body {
  flex-grow: 1;
  width: 100%;
  height: 100%;
}

.crm-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #ffffff;
}

/* FOOTER */
.site-footer {
  background: #060607;
  border-top: 1px solid var(--border-gold);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  margin: 1rem 0;
}

.footer-established {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.social-links a:hover {
  background: var(--gold-primary);
  color: #0b0b0c;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.contact-info-item {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.contact-info-item strong {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* STICKY MOBILE ACTION BAR */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  z-index: 1000;
  grid-template-columns: 1fr 1.2fr 1fr;
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.call-action { background: rgba(255, 255, 255, 0.08); color: #fff; }
.check-action { background: var(--gold-gradient); color: #0b0b0c; }
.whatsapp-action { background: #25d366; color: #fff; }

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .styles-grid, .why-grid, .testimonial-grid, .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item.grid-item-wide {
    grid-column: span 1;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .collage-wrapper {
    min-height: 420px;
  }
  .collage-card-main { width: 260px; }
  .collage-card-sub { width: 180px; }
}

@media (max-width: 768px) {
  .nav-menu, .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .checker-fields {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .styles-grid, .why-grid, .testimonial-grid, .video-grid, .portfolio-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item.grid-item-tall {
    height: 380px;
    grid-row: span 1;
  }
  .urgency-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .enquiry-card-wrapper {
    grid-template-columns: 1fr;
  }
  .enquiry-info-side, .crm-embed-side {
    padding: 2.5rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .journey-card-inner {
    grid-template-columns: 1fr;
  }
  .sticky-mobile-bar {
    display: grid;
  }
  .floating-whatsapp {
    bottom: 5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .official-logo-img { height: 72px; }
}
