/* ============================================
   LUMIÈRE & CO. — LUXURY WEDDING PHOTOGRAPHY
   Design System: Noir Editorial
   ============================================ */

/* --- VARIABLES --- */
:root {
  --black:       #0A0A0A;
  --dark:        #141414;
  --dark-2:      #1E1E1E;
  --dark-3:      #2A2A2A;
  --mid:         #4A4A4A;
  --light-mid:   #8A8A8A;
  --cream:       #E8E4DF;
  --cream-2:     #F2EDE8;
  --gold:        #C8B8A0;
  --gold-light:  #DDD0BC;
  --gold-dark:   #A89880;
  --white:       #FAFAF8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);

  --nav-h: 80px;
  --container: 1280px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-body); }

/* --- CUSTOM CURSOR --- */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
  opacity: 0.7;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--gold-light);
}

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

/* --- TYPOGRAPHY --- */
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 1rem;
  color: var(--light-mid);
  max-width: 560px;
  margin-top: 1rem;
  line-height: 1.8;
}
.section-header { margin-bottom: 3.5rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-dark {
  background: var(--gold);
  color: var(--black);
}
.btn-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn-dark:hover::before { transform: translateX(0); }
.btn-dark span, .btn-dark { position: relative; z-index: 1; }

.btn-light {
  background: var(--cream);
  color: var(--black);
}
.btn-light:hover { background: var(--white); }

.btn-ghost-light {
  border: 1px solid rgba(232, 228, 223, 0.4);
  color: var(--cream);
}
.btn-ghost-light:hover {
  border-color: var(--cream);
  background: rgba(232, 228, 223, 0.08);
}
.btn-full { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: gap 0.3s var(--ease-out);
}
.link-arrow svg { width: 18px; height: 18px; }
.link-arrow:hover { gap: 0.9rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-color: rgba(200, 184, 160, 0.12);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
  transition: color 0.3s;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.7);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(200, 184, 160, 0.4);
  color: var(--gold) !important;
  letter-spacing: 0.12em;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease-out) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: 760px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 0.5s; }
.hero-title-line:nth-child(2) { animation-delay: 0.65s; }
.hero-title-line:nth-child(3) { animation-delay: 0.8s; }
.hero-title .italic { font-style: italic; color: var(--gold); padding-left: 2rem; }
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(232, 228, 223, 0.75);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 1s var(--ease-out) forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.15s var(--ease-out) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.5);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 2;
  width: 100px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s 1.8s forwards;
  animation-name: fadeInRotate;
}
@keyframes fadeInRotate {
  from { opacity: 0; transform: rotate(-20deg) scale(0.8); }
  to   { opacity: 1; transform: rotate(0deg) scale(1); }
}
.hero-badge svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }
.hero-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.6;
}
.hero-badge-year {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-dot { color: var(--dark-3) !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid rgba(200, 184, 160, 0.1);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.intro-stat-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}
.intro-stat { border-left: 1px solid rgba(200, 184, 160, 0.3); padding-left: 1.5rem; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-mid);
}
.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.intro-heading em { font-style: italic; color: var(--gold); }
.intro-body {
  color: rgba(232, 228, 223, 0.65);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.portfolio-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-mid);
  border: 1px solid rgba(200, 184, 160, 0.15);
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
  padding: 0 var(--gutter);
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-location {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.portfolio-names {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  font-style: italic;
}
.portfolio-item.hidden { display: none; }
.portfolio-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ============================================
   FILM STRIP
   ============================================ */
.filmstrip-section {
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 184, 160, 0.08);
  border-bottom: 1px solid rgba(200, 184, 160, 0.08);
  background: var(--dark);
}
.filmstrip-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}
.filmstrip-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 var(--gutter);
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
}
.filmstrip-track:active { cursor: grabbing; }
.filmstrip-track::-webkit-scrollbar { display: none; }
.filmstrip-item {
  flex: 0 0 280px;
  height: 200px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}
.filmstrip-item::before, .filmstrip-item::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 20px;
  background: repeating-linear-gradient(
    to bottom,
    var(--dark) 0px,
    var(--dark) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 2;
}
.filmstrip-item::before { left: 0; }
.filmstrip-item::after  { right: 0; }
.filmstrip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  filter: sepia(0.15) contrast(1.05);
}
.filmstrip-item:hover img { transform: scale(1.08); filter: sepia(0) contrast(1); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 85%;
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 45%;
  overflow: hidden;
  border: 4px solid var(--dark);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-award-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border-radius: 50%;
}
.about-award-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-award-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.about-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-body {
  color: rgba(232, 228, 223, 0.65);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
  padding: 2rem;
  border: 1px solid rgba(200, 184, 160, 0.12);
  background: rgba(200, 184, 160, 0.03);
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 184, 160, 0.2);
}
.about-feature-icon svg { width: 16px; height: 16px; color: var(--gold); }
.feature-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.feature-desc {
  font-size: 0.82rem;
  color: var(--light-mid);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.services-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 300;
  color: rgba(200, 184, 160, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(200, 184, 160, 0.1);
  border: 1px solid rgba(200, 184, 160, 0.1);
}
.service-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.4s;
}
.service-card:hover { background: var(--dark); }
.service-card.featured {
  background: var(--dark-2);
}
.service-card.featured:hover { background: var(--dark-3); }
.service-badge-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.3rem 0.8rem;
}
.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(200, 184, 160, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.service-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.service-tagline {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200, 184, 160, 0.1);
}
.service-list li {
  font-size: 0.88rem;
  color: rgba(232, 228, 223, 0.65);
  padding-left: 1.2rem;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.service-price {
  font-size: 0.85rem;
  color: var(--light-mid);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.service-price strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  display: block;
  margin-top: 0.2rem;
}
.service-btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 184, 160, 0.3);
  color: var(--gold);
  transition: all 0.3s;
}
.service-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.service-card.featured .service-btn {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.service-card.featured .service-btn:hover {
  background: var(--gold-light);
}
.services-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--light-mid);
}
.services-note a {
  color: var(--gold);
  transition: color 0.3s;
}
.services-note a:hover { color: var(--gold-light); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0;
}
.testimonials-bg img { width: 100%; height: 100%; object-fit: cover; }
.testimonials-overlay {
  position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.88);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials-slider {
  position: relative;
  min-height: 280px;
  margin-bottom: 3rem;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  max-width: 860px;
  margin-bottom: 2.5rem;
}
.testimonial-quote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -2rem;
  margin-right: 0.3rem;
  font-family: var(--font-display);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.testimonial-location {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.testimonial-stars {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-top: 0.5rem;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.testimonial-prev, .testimonial-next {
  width: 44px; height: 44px;
  border: 1px solid rgba(200, 184, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.testimonial-prev svg, .testimonial-next svg { width: 18px; height: 18px; }
.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.testimonial-dots { display: flex; gap: 0.5rem; }
.dot {
  width: 20px; height: 1px;
  background: rgba(200, 184, 160, 0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  width: 40px;
}

/* ============================================
   PRESS
   ============================================ */
.press {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(200, 184, 160, 0.08);
  border-bottom: 1px solid rgba(200, 184, 160, 0.08);
  background: var(--dark);
}
.press-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light-mid);
  text-align: center;
  margin-bottom: 1.5rem;
}
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.press-logo {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(200, 184, 160, 0.4);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.press-logo:hover { color: var(--gold); }
.press-sep { color: rgba(200, 184, 160, 0.2); font-size: 1.2rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-body {
  color: rgba(232, 228, 223, 0.65);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(232, 228, 223, 0.65);
}
.contact-info-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact-social {
  display: flex;
  gap: 0.8rem;
}
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(200, 184, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-mid);
  transition: all 0.3s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 184, 160, 0.05);
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(200, 184, 160, 0.04);
  border: 1px solid rgba(200, 184, 160, 0.15);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200, 184, 160, 0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200, 184, 160, 0.07);
}
.form-group select option { background: var(--dark-2); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.75rem;
  color: var(--light-mid);
  text-align: center;
  margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(200, 184, 160, 0.1);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 184, 160, 0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-mid);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(232, 228, 223, 0.5);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}
.footer-social a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 228, 223, 0.4);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(200, 184, 160, 0.3);
  letter-spacing: 0.05em;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(200, 184, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.lightbox-close svg { width: 20px; height: 20px; }
.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  width: auto;
  height: auto;
}
.lightbox-info { text-align: center; }
#lightboxNames {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
}
#lightboxLocation {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal-up, .reveal-left, .reveal-right, .reveal-item {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-item  { transform: translateY(30px); }

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .portfolio-masonry { grid-template-columns: repeat(3, 1fr); }
  .portfolio-item.wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-social { align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem var(--gutter);
    gap: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease-out);
    border-bottom: 1px solid rgba(200,184,160,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.wide { grid-column: span 2; }
  .portfolio-item.tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .portfolio-masonry { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .press-logos { flex-direction: column; align-items: center; }
  .press-sep { display: none; }
}