/* ============================================
   KODAK EXPRESS USHA PHOTO STUDIO
   Complete Stylesheet — All 5 Pages
   ============================================ */

/* ─── 1. CSS Variables ─── */
:root {
  --black: #0A0A0A;
  --charcoal: #141414;
  --white: #F5F0EB;
  --gold: #C8972A;
  --gold-muted: #9A7420;
  --gold-glow: 0 0 20px rgba(200, 151, 42, 0.35);
  --text-muted: #888880;
  --border-dark: rgba(245, 240, 235, 0.08);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-2xl: 144px;
  --section-gap: 120px;
  --container-max: 1280px;
  --container-pad: clamp(20px, 5vw, 80px);
  --radius: 4px;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ─── 3. Intro Overlay ─── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

#intro-overlay.hidden {
  transform: translateY(-100%);
}

#intro-overlay .intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-align: center;
}

#intro-overlay .intro-text .gold {
  color: var(--gold);
}

/* ─── 4. Custom Cursor ─── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #C8972A;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(200, 151, 42, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s, height 0.25s, border-color 0.25s;
}

@media (hover: none) {
  * { cursor: auto !important; }
  .cursor-dot,
  .cursor-ring { display: none !important; }
}

/* ─── 5. Navigation ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
  background: transparent;
}

#navbar.nav-scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

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

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s ease;
  position: relative;
}

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

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 40px;
  padding: 10px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-menu .nav-link {
  font-size: 32px;
  font-family: 'Cormorant Garamond', serif;
  text-transform: none;
  letter-spacing: 0;
}

/* ─── 6. Hero — particles & content ─── */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── 7. Hero Section ─── */
#hero,
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.hero-content-wrapper,
.hero-inner,
.hero > .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  box-sizing: border-box;
  min-height: 0;
  flex: 1;
  padding: clamp(96px, 14vh, 140px) 80px clamp(80px, 10vh, 120px);
  position: relative;
  z-index: 2;
}

.hero-text,
.hero-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  padding-left: 0;
  padding-right: 0;
  max-width: min(620px, 100%);
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex: 1;
}

.hero-img-stack {
  position: relative;
  width: 340px;
  height: 440px;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-img-1 {
  width: 220px;
  height: 290px;
  top: 60px;
  left: 10px;
  transform: rotate(-6deg);
  z-index: 1;
  animation: floatImg1 5s ease-in-out infinite;
  border: 1px solid rgba(200, 151, 42, 0.2);
}

.hero-img-2 {
  width: 200px;
  height: 260px;
  top: 40px;
  left: 90px;
  transform: rotate(2deg);
  z-index: 3;
  animation: floatImg2 6s ease-in-out infinite;
  border: 1px solid rgba(200, 151, 42, 0.4);
}

.hero-img-3 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 0;
  transform: rotate(5deg);
  z-index: 2;
  animation: floatImg3 4.5s ease-in-out infinite;
  border: 2px solid rgba(200, 151, 42, 0.6);
}

@keyframes floatImg1 {
  0%, 100% { transform: rotate(-6deg) translateY(0px); }
  50% { transform: rotate(-6deg) translateY(-12px); }
}

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

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

.hero-img:hover {
  z-index: 10 !important;
  transition: transform 0.3s ease, z-index 0s;
  animation-play-state: paused;
}

.hero-img-1:hover {
  transform: rotate(-6deg) translateY(-16px) scale(1.04);
}

.hero-img-2:hover {
  transform: rotate(2deg) translateY(-16px) scale(1.04);
}

.hero-img-3:hover {
  transform: rotate(5deg) translateY(-16px) scale(1.04);
}

.hero-img-stack::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(200, 151, 42, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-img-stack::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(200, 151, 42, 0.07);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite 0.5s;
  pointer-events: none;
}

@keyframes ringPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 1;
  }
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.hero-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8972A, transparent);
  margin: 24px 0;
  animation: drawLine 1.4s ease forwards 1.2s;
}

@keyframes drawLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 120px;
    opacity: 1;
  }
}

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.split-inner {
  display: inline-block;
  transform: translateY(110%);
}

.split-inner.revealed {
  animation: slideUp 0.6s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.6;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounceArrow 1.5s ease-in-out infinite;
  color: var(--text-muted);
  font-size: 24px;
}

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

/* ─── 8. Horizontal Marquee ─── */
.marquee-section {
  background: var(--black);
  padding: 24px 0;
  overflow: hidden;
}

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

.marquee-track img {
  width: 280px;
  height: 187px;
  object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.85;
  flex-shrink: 0;
}

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

/* ─── 9. Section Reveals ─── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.card:nth-child(1) { transition-delay: 0s; }
.card:nth-child(2) { transition-delay: 0.12s; }
.card:nth-child(3) { transition-delay: 0.24s; }
.card:nth-child(4) { transition-delay: 0.36s; }

.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.24s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.36s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.48s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.6s; }
.services-grid .service-card:nth-child(7) { transition-delay: 0.72s; }
.services-grid .service-card:nth-child(8) { transition-delay: 0.84s; }
.services-grid .service-card:nth-child(9) { transition-delay: 0.96s; }
.services-grid .service-card:nth-child(10) { transition-delay: 1.08s; }
.services-grid .service-card:nth-child(11) { transition-delay: 1.2s; }
.services-grid .service-card:nth-child(12) { transition-delay: 1.32s; }

.portfolio-grid .portfolio-item:nth-child(1) { transition-delay: 0s; }
.portfolio-grid .portfolio-item:nth-child(2) { transition-delay: 0.12s; }
.portfolio-grid .portfolio-item:nth-child(3) { transition-delay: 0.24s; }
.portfolio-grid .portfolio-item:nth-child(4) { transition-delay: 0.36s; }
.portfolio-grid .portfolio-item:nth-child(5) { transition-delay: 0.48s; }
.portfolio-grid .portfolio-item:nth-child(6) { transition-delay: 0.6s; }
.portfolio-grid .portfolio-item:nth-child(7) { transition-delay: 0.72s; }
.portfolio-grid .portfolio-item:nth-child(8) { transition-delay: 0.84s; }
.portfolio-grid .portfolio-item:nth-child(9) { transition-delay: 0.96s; }
.portfolio-grid .portfolio-item:nth-child(10) { transition-delay: 1.08s; }
.portfolio-grid .portfolio-item:nth-child(11) { transition-delay: 1.2s; }
.portfolio-grid .portfolio-item:nth-child(12) { transition-delay: 1.32s; }
.portfolio-grid .portfolio-item:nth-child(13) { transition-delay: 1.44s; }
.portfolio-grid .portfolio-item:nth-child(14) { transition-delay: 1.56s; }
.portfolio-grid .portfolio-item:nth-child(15) { transition-delay: 1.68s; }

.values-grid .value-card:nth-child(1) { transition-delay: 0s; }
.values-grid .value-card:nth-child(2) { transition-delay: 0.12s; }
.values-grid .value-card:nth-child(3) { transition-delay: 0.24s; }
.values-grid .value-card:nth-child(4) { transition-delay: 0.36s; }

h2.animated-heading {
  position: relative;
  display: inline-block;
}

h2.animated-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C8972A;
  transition: width 0.6s ease 0.3s;
}

h2.animated-heading.revealed::after {
  width: 60px;
}

.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-stagger .reveal-child {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.revealed .reveal-child:not(.testimonial-card) {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed .testimonial-card.reveal-child {
  transform: translateY(0);
}

.testimonials-grid.reveal-stagger.revealed .testimonial-card.reveal-child:not(.active) {
  opacity: 0.58;
}

.testimonials-grid.reveal-stagger.revealed .testimonial-card.reveal-child.active {
  opacity: 1;
}

/* ─── 10. Typography Helpers ─── */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 16px;
}

/* ─── 11. About Teaser ─── */
.about-teaser {
  background: var(--black);
  padding: var(--section-gap) var(--container-pad);
}

.about-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

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

.about-text p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.stats-row {
  display: flex;
  gap: 32px;
  margin: 32px 0;
}

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

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-separator {
  color: var(--gold);
  font-size: 24px;
  align-self: center;
}

.gold-link {
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.gold-link:hover {
  gap: 12px;
}

/* ─── 12. Services Grid ─── */
.services-section {
  background: var(--charcoal);
  padding: var(--section-gap) var(--container-pad);
}

.services-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--black);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--gold);
  transition: height 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  height: 2px;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.service-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── 13. Portfolio Grid ─── */
.portfolio-section {
  background: var(--black);
  padding: var(--section-gap) var(--container-pad);
}

.portfolio-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.portfolio-grid {
  columns: 3;
  column-gap: 14px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 151, 42, 0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

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

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.category-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 10, 10, 0.8);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 3;
}

/* Shimmer loading */
.shimmer {
  background: linear-gradient(90deg, #141414 25%, #1a1a1a 50%, #141414 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── 14. Lightbox ─── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

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

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

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: var(--white);
  opacity: 0.7;
  cursor: pointer;
  z-index: 9002;
  transition: opacity 0.3s ease;
  background: none;
  border: none;
  padding: 8px;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  opacity: 0.5;
  font-size: 48px;
  cursor: pointer;
  z-index: 9002;
  transition: opacity 0.3s ease;
  background: none;
  border: none;
  padding: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 14px;
  z-index: 9002;
}

/* ─── 15. Testimonials ─── */
.testimonials-section {
  background: var(--charcoal);
  padding: var(--section-gap) var(--container-pad);
}

.testimonials-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--black);
  padding: 48px 36px;
  border-radius: var(--radius);
  position: relative;
  transition: opacity 0.45s ease, border-color 0.3s ease, transform 0.45s ease;
  border: 1px solid transparent;
}

.testimonial-card.active {
  border: 1px solid rgba(200, 151, 42, 0.3);
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dot.active {
  background: var(--gold);
}

/* ─── 16. Filter Tabs ─── */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid var(--border-dark);
  color: var(--white);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ─── 17. Process Timeline ─── */
.process-section {
  background: var(--black);
  padding: var(--section-gap) var(--container-pad);
}

.process-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(200, 151, 42, 0.4);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.step-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--black);
  color: var(--gold);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── 18. Values Grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--black);
  padding: 48px 36px;
  border-radius: var(--radius);
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── 19. Rating Strip ─── */
.rating-strip {
  background: var(--gold);
  padding: 40px var(--container-pad);
  text-align: center;
}

.rating-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--black);
}

/* ─── 20. Contact Form ─── */
.contact-section {
  background: var(--black);
  padding: var(--section-gap) var(--container-pad);
}

.contact-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 64px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-info-item .icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item.address { color: var(--white); }
.contact-info-item.phone { color: var(--gold); }
.contact-info-item.hours { color: var(--text-muted); }

.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.contact-socials a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.contact-socials a:hover {
  color: var(--gold);
}

.contact-form-card {
  background: var(--charcoal);
  border: 1px solid rgba(200, 151, 42, 0.3);
  border-radius: var(--radius);
  padding: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border-dark);
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200, 151, 42, 0.15);
}

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

.form-submit {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  padding: 16px;
  width: 100%;
  border-radius: var(--radius);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit:hover {
  background: var(--gold-muted);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px;
}

.form-success.show {
  display: block;
}

.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
}

/* ─── 21. CTA Banner ─── */
.cta-banner {
  background: var(--gold);
  padding: 80px var(--container-pad);
  text-align: center;
}

.cta-banner .section-title {
  color: var(--black);
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: var(--black);
  color: var(--gold);
  border-radius: 40px;
  padding: 14px 40px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-banner .btn-primary:hover {
  background: var(--charcoal);
}

/* ─── 22. Footer ─── */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 64px var(--container-pad) 32px;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo .logo-main {
  font-size: 28px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-socials a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

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

.footer-bottom {
  max-width: var(--container-max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── 23. Page Hero (for sub-pages) ─── */
.page-hero {
  background: var(--black);
  padding: 160px var(--container-pad) 80px;
  text-align: center;
}

.page-hero .section-title {
  margin-bottom: 16px;
}

/* ─── 24. Map Section ─── */
.map-section {
  padding: 0 var(--container-pad) var(--section-gap);
}

.map-container {
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) invert(1) contrast(0.85);
  display: block;
}

/* ─── 25. Responsive ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  #hero {
    padding: 0;
  }

  .hero-content-wrapper,
  .hero-inner,
  .hero > .container {
    flex-direction: column;
    align-items: center;
    padding: 96px 24px 96px;
    gap: 12px;
    justify-content: flex-start;
    flex: 1;
    width: 100%;
  }

  .hero-text,
  .hero-content {
    max-width: 100%;
    text-align: center;
    flex: 0 0 auto;
  }

  .hero-visual {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    min-height: min(46vh, 400px);
    margin-top: 8px;
    justify-content: center;
    align-items: center;
    padding-bottom: 16px;
  }

  .hero-img-stack {
    transform: scale(0.78);
    transform-origin: center center;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin: 0 auto;
  }

  .hero-line {
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    columns: 2;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .stats-row {
    justify-content: center;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content-wrapper,
  .hero-inner,
  .hero > .container {
    padding-top: 88px;
    padding-bottom: 80px;
  }

  .hero-img-stack {
    transform: scale(0.66);
  }

  .portfolio-grid {
    columns: 1;
  }
  
  .hero-title {
    font-size: clamp(36px, 10vw, 48px);
  }
  
  .section-title {
    font-size: clamp(28px, 8vw, 32px);
  }
  
  .contact-form-card {
    padding: 32px 24px;
  }
  
  .marquee-track img {
    width: 200px;
    height: 133px;
  }
}

/* ─── 26. Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  #particles-canvas {
    display: none;
  }

  .hero-img {
    animation: none !important;
    opacity: 1 !important;
  }

  .hero-img-stack::before,
  .hero-img-stack::after {
    animation: none !important;
  }

  .hero-line {
    width: 120px !important;
    opacity: 1 !important;
    animation: none;
  }

  #hero .hero-title .word-inner {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  
  .marquee-track {
    animation: none;
  }
  
  #intro-overlay {
    display: none;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-section,
  .reveal-left,
  .reveal-stagger,
  .reveal-stagger .reveal-child {
    opacity: 1 !important;
    transform: none !important;
  }

  h2.animated-heading::after {
    width: 60px !important;
  }

  .testimonials-grid .testimonial-card {
    opacity: 1 !important;
  }
}

/* ─── 27. Utility Classes ─── */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }

.hidden {
  display: none !important;
}
