/* ============================================
   PHOTOGराPHY Studio — Global Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --black: #0B0B0B;
  --dark: #151515;
  --dark2: #1a1a1a;
  --beige: #E8DCC8;
  --gold: #B89B6D;
  --gold-light: #D4B896;
  --gold-dark: #8B7355;
  --white: #F8F6F1;
  --muted: #A9A39A;
  --muted2: #6B6560;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;

  --nav-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --border-gold: 1px solid rgba(184, 155, 109, 0.3);
  --border-white: 1px solid rgba(248, 246, 241, 0.1);
  --shadow-gold: 0 0 40px rgba(184, 155, 109, 0.15);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.text-gold { color: var(--gold); }
.text-beige { color: var(--beige); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-gold);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.logo-mark {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-logo:hover .logo-mark {
  transform: rotate(8deg);
}

.nav-logo--img {
  gap: 0;
}

.logo-full {
  display: block;
  height: 44px;
  width: auto;
  transition: var(--transition);
}

.nav-logo--img:hover .logo-full {
  opacity: 0.85;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

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

.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.6rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

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

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

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--dark);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: var(--border-gold);
}

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

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 1rem;
}

.mobile-nav-cta {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.mobile-nav-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-primary::before {
  background: transparent;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(248, 246, 241, 0.4);
}

.btn-outline:hover {
  color: var(--black);
  border-color: var(--gold);
}

.btn-outline::before {
  background: var(--gold);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-gold-outline:hover {
  color: var(--black);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 8rem 0;
}

.section-sm {
  padding: 5rem 0;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .label {
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.section-header h2 em {
  color: var(--gold);
  font-style: italic;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(184, 155, 109, 0.3);
}

.divider-center {
  justify-content: center;
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 11, 0.75) 0%,
    rgba(11, 11, 11, 0.4) 50%,
    rgba(11, 11, 11, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--beige);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

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

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.9) 0%, rgba(11,11,11,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content .label {
  margin-bottom: 0.8rem;
  display: block;
}

.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}

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

.breadcrumb-sep {
  color: var(--gold);
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--dark);
  border: var(--border-gold);
  overflow: hidden;
  transition: var(--transition);
}

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

.card-img {
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

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

.card-body {
  padding: 2rem;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 155, 109, 0.2);
  border-radius: 0;
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--dark);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
  padding: 3rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(184, 155, 109, 0.2);
}

/* ============================================
   PORTFOLIO MASONRY / GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(169, 163, 154, 0.3);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

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

.masonry-grid {
  columns: 3;
  column-gap: 1.2rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
  background: rgba(11, 11, 11, 0.6);
}

.masonry-caption {
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.masonry-item:hover .masonry-caption {
  transform: translateY(0);
  opacity: 1;
}

.masonry-caption .label {
  font-size: 0.65rem;
}

.masonry-caption h4 {
  font-size: 1rem;
  color: var(--white);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

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

.lightbox-caption .label { font-size: 0.65rem; }
.lightbox-caption h4 { color: var(--white); font-size: 1.1rem; }

.lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.lightbox-counter {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  border: var(--border-gold);
  padding: 2.5rem;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-dark);
  border-color: rgba(184, 155, 109, 0.5);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.service-card .btn {
  font-size: 0.7rem;
  padding: 0.6rem 1.4rem;
}

.service-card-img {
  overflow: hidden;
  margin: -2.5rem -2.5rem 2rem;
  aspect-ratio: 16/9;
}

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

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

/* ============================================
   PACKAGES
   ============================================ */
.package-card {
  background: var(--dark2);
  border: var(--border-gold);
  padding: 3rem 2.5rem;
  position: relative;
  transition: var(--transition);
}

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(184, 155, 109, 0.05) 100%);
}

.package-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  padding: 0.3rem 1rem;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.package-tier {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  margin: 1rem 0;
  line-height: 1;
}

.package-price span {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
}

.package-desc {
  font-size: 0.88rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: var(--border-gold);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--beige);
}

.package-feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.package-feature.unavailable {
  color: var(--muted2);
  opacity: 0.6;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border-bottom: 1px solid rgba(184, 155, 109, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 155, 109, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

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

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

.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(184, 155, 109, 0.2);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-control:focus {
  border-color: var(--gold);
  background: rgba(184, 155, 109, 0.05);
}

.form-control::placeholder {
  color: var(--muted2);
}

select.form-control option {
  background: var(--dark);
  color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: rgba(184, 155, 109, 0.1);
  border: 1px solid var(--gold);
}

.form-success h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-error {
  color: #e74c3c;
  font-size: 0.78rem;
  margin-top: 0.4rem;
  display: none;
}

.form-control.error {
  border-color: #e74c3c;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--dark2);
  border: var(--border-gold);
  padding: 2.5rem;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--beige);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.testimonial-role {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.9rem;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--dark);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  position: relative;
}

.process-step h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.process-step p {
  font-size: 0.82rem;
}

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
  background: var(--dark2);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.map-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 155, 109, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #080808;
  border-top: var(--border-gold);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .nav-logo {
  font-size: 1.4rem;
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.footer-brand .logo-mark {
  width: 46px;
  height: 46px;
}

.footer-brand .logo-full {
  height: 42px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-bottom: 2rem;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted2);
}

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

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

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

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

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

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9998;
  transform: scaleY(0);
  transform-origin: bottom;
}

/* ============================================
   RENTALS
   ============================================ */
.rental-card {
  background: var(--dark2);
  border: var(--border-gold);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.rental-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.rental-card .rental-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: -2rem -2rem 1.5rem;
}

.rental-card .rental-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.rental-card:hover .rental-img img {
  transform: scale(1.05);
}

.rental-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0.5rem 0;
}

.rental-desc {
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid var(--black);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}

.about-img-badge strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--black);
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.8rem;
  background: var(--dark2);
  border: var(--border-gold);
  transition: var(--transition);
}

.contact-info-item:hover {
  border-color: var(--gold);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--beige);
}

/* ============================================
   STUDIO RENTAL PAGE
   ============================================ */
.studio-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.studio-feature-icon {
  width: 8px;
  height: 8px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
  transform: rotate(45deg);
}

.studio-feature p {
  font-size: 0.9rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.italic { font-style: italic; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.bg-dark { background: var(--dark); }
.bg-dark2 { background: var(--dark2); }
.bg-black { background: var(--black); }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

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

.w-full { width: 100%; }
.d-block { display: block; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* 1200px */
@media (max-width: 1200px) {
  .container { padding: 0 2rem; }
  .navbar { padding: 0 2rem; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .masonry-grid { columns: 3; }
  .process-steps::before { display: none; }
}

/* 992px */
@media (max-width: 992px) {
  :root { --nav-height: 70px; }

  .nav-menu { display: none; }
  .hamburger { display: flex; }

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

  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 500px; }

  .masonry-grid { columns: 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .process-steps { flex-direction: column; gap: 2rem; }
  .stat-divider { display: none; }
  .stats-grid { gap: 3rem 2rem; }

  h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
}

/* 768px */
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .container { padding: 0 1.5rem; }
  .container-wide { padding: 0 1.5rem; }
  .navbar { padding: 0 1.5rem; }

  .hero-btns { flex-direction: column; align-items: flex-start; }

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

  .masonry-grid { columns: 2; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  .about-img-badge { width: 90px; height: 90px; }
  .about-img-badge strong { font-size: 1.5rem; }

  .section-header { margin-bottom: 3rem; }
}

/* 576px */
@media (max-width: 576px) {
  .grid-4 { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }

  .hero-eyebrow { display: none; }

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

  .gallery-filters { gap: 0.5rem; }
  .filter-btn { padding: 0.4rem 1rem; font-size: 0.65rem; }

  .package-card { padding: 2rem 1.5rem; }
}

/* 375px */
@media (max-width: 375px) {
  :root { --nav-height: 65px; }
  .nav-logo { font-size: 1.1rem; }
  .logo-mark { width: 32px; height: 32px; }
  .logo-full { height: 32px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }

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

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.wh-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.wh-float:hover {
  transform: scale(1.1);
}
.wh-float svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 155, 109, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(184, 155, 109, 0); }
}

.pulse { animation: pulse-gold 2s infinite; }

/* ============================================
   PAGE LOADER / PRELOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  animation: loader-pulse 1.8s ease-in-out infinite;
}

.loader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  margin: -56px 0 0 -56px;
  border: 2px solid rgba(184, 155, 109, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: loader-spin 1.1s linear infinite;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.92); opacity: 0.75; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-ring { animation: none; border-top-color: rgba(184, 155, 109, 0.15); }
  .loader-logo { animation: none; }
}
