/* ============================================
   RESET & BASE
   ============================================ */
:root {
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --accent: #c9a96e;
  --accent-light: rgba(201, 169, 110, 0.15);
  --accent-glow: rgba(201, 169, 110, 0.3);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

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

img, video {
  display: block;
  max-width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.lang-toggle {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 20px;
  overflow: hidden;
  margin-right: 16px;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--accent);
  color: #111;
}

.lang-btn:hover:not(.active) {
  color: rgba(255,255,255,0.8);
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.mobile-menu-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu-links a {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.mobile-menu-links a:hover {
  opacity: 1;
}

.mobile-lang-toggle {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 32px;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1d1d1f;
  border: 1.5px solid rgba(255, 77, 77, 0.4);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 90vw;
  text-align: center;
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Inline form error text */
.booking-error-text,
.contact-error-text {
  color: #ff4d4d;
  font-size: 0.72rem;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.2s ease;
}
.booking-error-text.visible,
.contact-error-text.visible {
  opacity: 1;
  max-height: 24px;
}

/* ============================================
   HERO VIDEO SECTION
   ============================================ */
.hero-wrapper {
  height: 250vh;
  position: relative;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-container {
  width: 100%;
  height: 100%;
  position: relative;
  will-change: transform, border-radius;
  transition: border-radius 0.05s linear;
  overflow: hidden;
  transform: scale(1);
  border-radius: 0;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-video-container video.visible {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  will-change: opacity;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  will-change: opacity;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.scroll-indicator .chevron {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================
   SECTIONS — SHARED
   ============================================ */
.section {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: #000;
  color: #fff;
}

.section-light {
  background: #f5f5f5;
  color: #111;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   INTRO TEXT SECTION
   ============================================ */
.intro-section {
  padding: 160px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: #000;
}

.intro-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  text-align: center;
  max-width: 800px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.intro-text .word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-text .word.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* ============================================
   PORTFOLIO SECTION — sidebar + masonry grid
   ============================================ */
.portfolio-section {
  padding: 80px 0 0;
  background: #000;
}

/* Two-column layout wrapper */
.portfolio-layout {
  display: flex;
}

/* ---- LEFT SIDEBAR ---- */
.portfolio-sidebar {
  width: 180px;
  min-width: 160px;
  padding: 0 32px 48px 40px;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  z-index: 10;
}

/* Category Navigation — vertical */
.portfolio-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio-categories a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.portfolio-categories a:hover {
  color: rgba(255,255,255,0.8);
}

.portfolio-categories a.active {
  color: var(--accent);
}

.portfolio-categories a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
}

/* ---- RIGHT: MASONRY GRID ---- */
.portfolio-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0 5px 5px 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  aspect-ratio: 3 / 4;
}

.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.portfolio-item.hidden {
  display: none;
}

/* View More button */
.portfolio-more-wrapper {
  padding: 24px 0 48px;
  text-align: center;
  margin-left: 180px; /* align with grid, past sidebar */
}

.portfolio-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-more-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.portfolio-more-btn svg {
  transition: transform 0.3s ease;
}

.portfolio-more-btn:hover svg {
  transform: translateY(2px);
}

.portfolio-more-btn.hidden {
  display: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 160px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 600px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.about-content {
  max-width: 480px;
}

.about-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 24px;
}

.about-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.about-description {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.7;
  font-weight: 300;
}

.about-content .reveal-line {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content .reveal-line.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SERVICES SECTION — Apple-style expandable accordion
   ============================================ */
.services-section {
  padding: 100px 0 120px;
  overflow: hidden;
}

.services-header {
  padding: 0 clamp(24px, 5vw, 64px);
  margin-bottom: 48px;
  max-width: 800px;
}

.services-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.services-subtitle {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* Accordion container */
.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 clamp(24px, 5vw, 64px);
  max-width: 1400px;
  margin: 0 auto;
}

/* Card — collapsed state */
.service-card {
  background: #1d1d1f;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card header — always visible, clickable */
.service-card-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-card-header:hover {
  background: rgba(255,255,255,0.03);
}

.service-card-image {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card-header:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-intro {
  flex: 1;
  min-width: 0;
}

.service-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.service-card-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 4px;
}

.service-card-price {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* Toggle button (+/×) */
.service-card-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-toggle:hover {
  background: rgba(255,255,255,0.15);
}

.service-card-toggle svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card.expanded .service-card-toggle svg {
  transform: rotate(45deg);
}

/* Expandable body — Apple-style grid-template-rows animation */
.service-card-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card.expanded .service-card-body {
  grid-template-rows: 1fr;
}

.service-card-details {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease 0.05s;
}

.service-card.expanded .service-card-details {
  opacity: 1;
  transition: opacity 0.4s ease 0.15s;
}

/* Detail content — 3-column grid */
.service-card-details-inner {
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0 24px;
  padding-top: 28px;
}

.service-detail-column h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-detail-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-column li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.service-detail-column li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* Packages */
.service-package {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-package:last-child {
  border-bottom: none;
}

.service-package strong {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

.service-package-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 4px 0 8px;
  letter-spacing: -0.02em;
}

.service-package p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

.service-price-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.4;
  font-style: italic;
}

/* Meta details */
.service-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
}

.service-meta dt {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.service-meta dd {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin: 0;
}

/* CTA button */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-cta:hover {
  background: #d4b87a;
  transform: scale(1.03);
}

/* Music Video Reel Banner */
.service-card-reel {
  position: relative;
  width: calc(100% - 48px);
  overflow: hidden;
  border-radius: 16px;
  margin: 0 24px 28px;
}

.service-card-reel video {
  display: block;
  width: 100%;
}

/* Crop baked-in letterbox bars from cinematic reel */
[data-service="cinematic"] .service-card-reel {
  aspect-ratio: 2.67 / 1;
}
[data-service="cinematic"] .service-card-reel video {
  height: 100%;
  object-fit: cover;
}

.service-card-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 40%);
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
}

.service-card-reel-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ============================================
   BOOKING SECTION — multi-step form
   ============================================ */
.booking-section {
  padding: 120px 0 160px;
  min-height: 100vh;
}

.booking-section .section-heading {
  margin-bottom: 56px;
}

/* Progress Indicator */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.booking-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.booking-progress-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  background: transparent;
}

.booking-progress-step.active .booking-progress-number {
  border-color: var(--accent);
  color: #000;
  background: var(--accent);
}

.booking-progress-step.completed .booking-progress-number {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.booking-progress-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.4s ease;
}

.booking-progress-step.active .booking-progress-label { color: var(--accent); }
.booking-progress-step.completed .booking-progress-label { color: rgba(255,255,255,0.5); }

.booking-progress-line {
  flex: 1;
  height: 1.5px;
  background: rgba(255,255,255,0.08);
  position: relative;
  margin: 0 12px;
  margin-bottom: 22px;
}

.booking-progress-line-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}

.booking-progress-line.filled .booking-progress-line-fill { width: 100%; }

/* Form Wrapper & Track */
.booking-form-wrapper {
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
  transition: height 0.5s cubic-bezier(0.22,1,0.36,1);
}

.booking-form-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}

.booking-step {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease 0.15s;
}

.booking-step.active { opacity: 1; }

.booking-step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  text-align: center;
}

/* Step 1: Service Cards */
.booking-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.booking-service-card {
  background: #1d1d1f;
  border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  cursor: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  position: relative;
}

.booking-service-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.booking-service-card.selected {
  border-color: var(--accent);
  background: var(--accent-light);
}

.booking-service-card.selected::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3,8 7,12 13,4'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.booking-service-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.booking-service-card.selected .booking-service-icon { color: #fff; }
.booking-service-icon svg { width: 100%; height: 100%; }

.booking-service-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.booking-service-desc {
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.5;
  line-height: 1.4;
}

/* Package Tier Selector */
.booking-tier-wrapper {
  margin-top: 0;
}

.booking-tier-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 6px 0;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.booking-tier-back:hover {
  color: var(--accent);
}

.booking-tier-back svg {
  transition: transform 0.2s ease;
}

.booking-tier-back:hover svg {
  transform: translateX(-2px);
}

.booking-step-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  text-align: center;
  color: var(--accent);
}

.booking-tier-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-tier-card {
  background: #1d1d1f;
  border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  position: relative;
}

.booking-tier-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.booking-tier-card.selected {
  border-color: var(--accent);
  background: var(--accent-light);
}

.booking-tier-card.selected::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3,8 7,12 13,4'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.booking-tier-info { flex: 1; min-width: 0; }

.booking-tier-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.booking-tier-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.booking-tier-desc {
  font-size: 0.78rem;
  font-weight: 300;
  opacity: 0.45;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .booking-tier-card {
    padding: 16px 18px;
  }
}

/* Form Fields */
.booking-fields {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.booking-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.booking-optional {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.5;
  font-weight: 400;
}

.booking-input {
  background: #1d1d1f;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.booking-input:focus { border-color: var(--accent); }
.booking-input::placeholder { color: rgba(255,255,255,0.2); }
.booking-input.error { border-color: #ff4d4d; }

/* ── Custom Date Picker ── */
.date-picker-field { position: relative; }

.date-picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.date-picker-trigger:focus { border-color: var(--accent); }
.date-picker-trigger.has-value .date-picker-value { color: #fff; }
.date-picker-value { color: rgba(255,255,255,0.2); font-size: 0.95rem; }
.date-picker-icon { color: rgba(255,255,255,0.4); flex-shrink: 0; transition: color 0.2s; }
.date-picker-trigger:hover .date-picker-icon,
.date-picker-trigger:focus .date-picker-icon { color: var(--accent); }

.date-picker-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 100;
  background: #1d1d1f;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.95) translateY(-4px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.date-picker-dropdown.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.date-picker-month-year {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.date-picker-month-year:hover { background: rgba(255,255,255,0.06); color: var(--accent); }

/* Month/Year selector view */
.date-picker-year-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.date-picker-year-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.date-picker-month-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.date-picker-month-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border: none;
  background: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.date-picker-month-cell:hover { background: rgba(201,169,110,0.15); }
.date-picker-month-cell.current { box-shadow: inset 0 0 0 1.5px var(--accent); }
.date-picker-month-cell.selected { background: var(--accent); color: #1d1d1f; font-weight: 600; }
.date-picker-month-cell.selected.current { box-shadow: none; }
.date-picker-month-cell.disabled { opacity: 0.18; pointer-events: none; }
.date-picker-nav {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}
.date-picker-nav:hover { color: var(--accent); background: rgba(255,255,255,0.05); }
.date-picker-nav.disabled { opacity: 0.15; pointer-events: none; }

.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 6px;
}
.date-picker-weekdays span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 4px 0;
}

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.date-picker-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border: none;
  background: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.date-picker-day:hover { background: rgba(201,169,110,0.15); }
.date-picker-day.today {
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.date-picker-day.selected {
  background: var(--accent);
  color: #1d1d1f;
  font-weight: 600;
}
.date-picker-day.selected.today { box-shadow: none; }
.date-picker-day.disabled {
  opacity: 0.18;
  pointer-events: none;
  cursor: default;
}
.date-picker-day.other-month { visibility: hidden; }

@media (max-width: 768px) {
  .date-picker-dropdown { padding: 14px 12px; }
  .date-picker-day { font-size: 0.85rem; min-height: 40px; }
}

.booking-select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4,6 8,10 12,6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.booking-select option { background: #1d1d1f; color: #fff; }
.booking-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.booking-add-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.booking-add-location:hover { color: #fff; }

.booking-location-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.25);
  font-size: 1.1rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.booking-location-remove:hover { color: #ff4d4d; }

/* Step 4: Review */
.booking-review {
  display: flex;
  flex-direction: column;
}

.booking-review-group {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.booking-review-group:first-child { padding-top: 0; }
.booking-review-group:last-child { border-bottom: none; }

.booking-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.booking-review-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}

.booking-review-edit {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: none;
  padding: 3px 8px;
  border-radius: 4px;
  transition: color 0.3s ease, background 0.3s ease;
}

.booking-review-edit:hover { color: #fff; background: rgba(255,255,255,0.08); }

.booking-review-value {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}

/* Nav Buttons */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 640px;
  margin: 44px auto 0;
  padding: 0 40px env(safe-area-inset-bottom, 0px);
}

.booking-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 60px;
  padding: 15px 34px;
  cursor: none;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.booking-btn-back {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.12);
}

.booking-btn-back:hover { color: #fff; border-color: rgba(255,255,255,0.35); }

.booking-btn-next {
  background: #fff;
  color: #000;
}

.booking-btn-next:hover { transform: scale(1.03); }
.booking-btn-next:active { transform: scale(0.98); }

/* Success State */
.booking-success {
  display: none;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 80px 40px;
}

.booking-success.visible {
  display: block;
  animation: bookingFadeIn 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}

.booking-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  opacity: 0;
  transform: scale(0.5);
  animation: bookingIconPop 0.6s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}

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

.booking-success-icon svg polyline {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: bookingCheckDraw 0.5s ease 0.5s forwards;
}

.booking-success-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.booking-success-text {
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.5;
  line-height: 1.6;
}

@keyframes bookingFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bookingIconPop {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bookingCheckDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes bookingShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 40px calc(40px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.footer-email {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  transition: opacity 0.3s ease, color 0.3s ease;
  margin-bottom: 36px;
}

.footer-email:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.6);
  transition: fill 0.3s ease;
}

.footer-social-link:hover svg {
  fill: var(--accent);
}

.footer-copy {
  font-size: 0.7rem;
  opacity: 0.45;
  letter-spacing: 0.1em;
}

/* ============================================
   SCROLL REVEAL BASE
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .portfolio-sidebar {
    width: 160px;
    min-width: 140px;
    padding: 0 24px 48px 24px;
  }

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

  .portfolio-more-wrapper {
    margin-left: 160px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    height: 400px;
  }

  .service-card-details-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .service-detail-column:nth-child(3) {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .service-detail-column:nth-child(3) .service-meta {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .lang-toggle {
    margin-right: 12px;
  }

  .hero-subtitle {
    letter-spacing: 0.15em;
  }

  .portfolio-section {
    padding: 60px 0 0;
  }

  .portfolio-layout {
    flex-direction: column;
  }

  .portfolio-sidebar {
    width: 100%;
    min-width: auto;
    height: auto;
    position: sticky;
    top: 56px;
    padding: 12px 16px;
    flex-direction: row;
    align-items: center;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 50;
  }

  .portfolio-categories {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
  }

  .portfolio-categories::-webkit-scrollbar {
    display: none;
  }

  .portfolio-categories a {
    font-size: 0.6rem;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
  }

  .portfolio-categories a:hover {
    background: rgba(255,255,255,0.1);
  }

  .portfolio-categories a.active {
    background: rgba(201,169,110,0.15);
    border-color: rgba(201,169,110,0.3);
  }

  .portfolio-categories a.active::after {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 4px;
  }

  .portfolio-more-wrapper {
    margin-left: 0;
  }

  .about-grid {
    padding: 0 24px;
  }

  .about-image {
    height: 300px;
  }

  .service-card-header {
    gap: 16px;
    padding: 16px 20px;
  }

  .service-card-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .service-card-headline {
    font-size: 1rem;
  }

  .service-card-details-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 28px;
    margin: 0 20px;
  }

  .service-package-price {
    font-size: 1.3rem;
  }

  .service-cta {
    width: 100%;
    justify-content: center;
  }

  .service-card-reel {
    margin: 0 20px 24px;
    width: calc(100% - 40px);
    border-radius: 12px;
  }

  .intro-section {
    padding: 100px 24px;
  }

  .container {
    padding: 0 24px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .cursor-dot, .cursor-ring {
    display: none !important;
  }

  .portfolio-item,
  .booking-service-card,
  .booking-btn,
  .booking-add-location,
  .booking-review-edit,
  .booking-location-remove {
    cursor: pointer;
  }

  .booking-section {
    padding: 100px 0 120px;
  }

  .booking-form-wrapper,
  .booking-progress {
    padding: 0 24px;
  }

  .booking-nav {
    padding: 0 24px env(safe-area-inset-bottom, 0px);
  }

  .booking-services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .booking-service-card {
    padding: 20px 18px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    text-align: left;
    align-items: center;
  }

  .booking-service-icon {
    margin: 0;
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
  }

  .booking-service-name { margin-bottom: 0; align-self: end; }
  .booking-service-desc { align-self: start; }

  .booking-field-row {
    grid-template-columns: 1fr;
  }

  .booking-progress-label { font-size: 0.55rem; }

  .booking-progress-number {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .booking-btn {
    padding: 13px 24px;
    font-size: 0.8rem;
  }

  /* Disable film grain on mobile — mix-blend-mode + fixed hurts scroll perf */
  .film-grain {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    letter-spacing: 0.08em;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }

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

/* ============================================
   CUSTOM CURSOR — simple dot + ring
   ============================================ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: width 0.3s cubic-bezier(0.23,1,0.32,1),
              height 0.3s cubic-bezier(0.23,1,0.32,1),
              border-color 0.3s ease,
              opacity 0.3s ease;
  will-change: transform;
}

.cursor-ring.hover {
  width: 40px;
  height: 40px;
  border-color: rgba(255,255,255,0.8);
}

@media (hover: none) and (pointer: coarse) {
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
  a, button,
  .portfolio-item,
  .booking-service-card,
  .booking-btn,
  .booking-add-location,
  .booking-review-edit,
  .booking-location-remove,
  .service-card-header {
    cursor: pointer;
  }
}

/* ============================================
   LIGHTBOX — 3D flip expand
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.lightbox-overlay.active {
  background: rgba(0,0,0,0.92);
  pointer-events: all;
  cursor: pointer;
  opacity: 1;
}

.lightbox-image-wrapper {
  position: fixed;
  z-index: 5001;
  pointer-events: none;
  display: none;
  perspective: 1200px;
}

.lightbox-image-wrapper.animating {
  transition: top 0.7s cubic-bezier(0.22,1,0.36,1),
              left 0.7s cubic-bezier(0.22,1,0.36,1),
              width 0.7s cubic-bezier(0.22,1,0.36,1),
              height 0.7s cubic-bezier(0.22,1,0.36,1);
}

.lightbox-flipper {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.22,1,0.36,1);
}

.lightbox-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.lightbox-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-front {
  z-index: 2;
}

.lightbox-back {
  transform: rotateY(180deg);
}

.lightbox-info {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 5002;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
  pointer-events: none;
}

.lightbox-info.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lightbox-info-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.lightbox-info-category {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 32px;
  z-index: 5003;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s, background 0.2s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.lightbox-close::before,
.lightbox-close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #fff;
}

.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }

/* ============================================
   SMOOTH SCROLLBAR (WEBKIT)
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

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

/* ============================================
   FILM GRAIN OVERLAY
   ============================================ */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ============================================
   PAGE INTRO — Falling Photos Reveal
   ============================================ */
.page-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

/* When fading: bg goes transparent (hero shows), name dissolves */
.page-intro.fading {
  background: transparent;
  transition: background 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-intro.fading .intro-name {
  opacity: 0;
  transition: opacity 1s ease 0.15s;
}
.page-intro.done { display: none; }

/* Container for scattered photos */
.intro-photos {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Each photo — positioned absolutely, looks like a real print */
.intro-photo {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: calc(var(--w) * var(--ar));
  transform: translateY(0) rotate(var(--r));
  background: #1a1a1a;
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  overflow: hidden;
  will-change: transform, opacity;
  transition: transform var(--dur) cubic-bezier(0.45, 0, 1, 0.35),
              opacity 0.4s ease calc(var(--dur) * 0.55);
}

.intro-photo.drop {
  transform: translateY(max(120vh, 900px)) rotate(calc(var(--r) + var(--dr)));
  opacity: 0;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Name sits behind photos — matches hero-title exactly */
.intro-name {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.intro-name h1,
.intro-name .intro-name-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin: 0;
  margin-bottom: 16px;
}
.intro-name p {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 768px) {
  .intro-name p { letter-spacing: 0.15em; }
}
@media (max-width: 480px) {
  .intro-name h1,
.intro-name .intro-name-title { letter-spacing: 0.08em; }
  .intro-name p  { letter-spacing: 0.08em; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
/* ─── TESTIMONIALS ─────────────────────────────── */
.testimonials-section {
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}

/* Featured hero testimonial */
.testimonial-featured {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, rgba(201,169,110,0.02) 100%);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 20px;
  position: relative;
}

.testimonial-featured::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 40px;
  font-size: 6rem;
  font-family: var(--font-heading);
  color: rgba(201,169,110,0.12);
  line-height: 1;
  pointer-events: none;
}

.testimonial-featured-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 24px;
}

.testimonial-featured-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.testimonial-featured-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #a0803c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: #0a0a0a;
  flex-shrink: 0;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
}

.testimonial-role {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 2px;
  text-align: left;
}

/* Scrollable cards row */
.testimonials-scroll-wrapper {
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.testimonials-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 40px 20px;
  scrollbar-width: none;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 320px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  scroll-snap-align: start;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-4px);
}

.testimonial-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-card-stars svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.testimonial-card-quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

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

.testimonial-card-author .testimonial-avatar {
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-featured {
    margin: 0 20px 48px;
    padding: 36px 24px;
  }
  .testimonial-card {
    flex: 0 0 280px;
  }
  .testimonials-scroll {
    padding: 8px 20px 20px;
  }
}

/* ============================================
   LIGHTBOX NAVIGATION ARROWS
   ============================================ */
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5003;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease 0.4s, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.lightbox-arrow svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

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

.lightbox-counter {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

@media (max-width: 768px) {
  /* Hide arrows on mobile — swipe to navigate */
  .lightbox-arrow {
    display: none !important;
  }

  /* Reduce perspective on mobile — 1200px is too aggressive on small viewports */
  .lightbox-image-wrapper {
    perspective: 600px;
  }

  .lightbox-face {
    border-radius: 4px;
  }

  .lightbox-info {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .lightbox-close {
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: 12px;
    width: 40px;
    height: 40px;
  }

  /* Swipe hint on counter */
  .lightbox-counter::after {
    content: '  ·  swipe';
    opacity: 0.5;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 120px 0 100px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: #1d1d1f;
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-item[open] {
  background: #222224;
}

.faq-question {
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(255,255,255,0.4);
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
  border-color: var(--accent);
}

.faq-question:hover {
  color: #fff;
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq-list {
    padding: 0 20px;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 0.92rem;
  }
  .faq-answer {
    padding: 0 20px 20px;
    font-size: 0.85rem;
  }
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-section {
  padding: 120px 0 100px;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-field label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.contact-input {
  background: #1d1d1f;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-input:focus { border-color: var(--accent); }
.contact-input::placeholder { color: rgba(255,255,255,0.2); }
.contact-input.error { border-color: #ff4d4d; }

.contact-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact-submit {
  align-self: flex-start;
  padding: 14px 36px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 60px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-submit:hover { transform: scale(1.03); }
.contact-submit:active { transform: scale(0.98); }
.contact-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.contact-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.contact-success.visible {
  display: block;
  animation: bookingFadeIn 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}

.contact-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

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

.contact-success h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-success p {
  font-size: 0.92rem;
  font-weight: 300;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 0 24px;
  }
  .contact-field-row {
    grid-template-columns: 1fr;
  }
  .contact-submit {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   SECTION HEADINGS — shared
   ============================================ */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 40px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.section-heading h3 {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
}

/* ============================================
   KEYBOARD FOCUS STYLES
   ============================================ */
.booking-service-card:focus-visible,
.booking-tier-card:focus-visible,
.portfolio-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.booking-service-card:focus-visible {
  border-color: var(--accent);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .intro-text .word {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .portfolio-item {
    opacity: 1;
    transform: none;
  }

  .service-card {
    opacity: 1;
    transform: none;
  }

  .about-content .reveal-line {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-video-container {
    transition: none;
  }

  .page-intro {
    display: none !important;
  }
}
