/* ═══════════════════════════════════════════════════════════════════════════════
   HYATT PHOTOGRAPHY — PREMIUM DESIGN SYSTEM
   Monochrome · Dark Cinematic · Pure Editorial
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ────────────────────────────────────────────────── */
:root {
  /* Palette — Pure Monochrome */
  --bg-primary: #080808;
  --bg-secondary: #0F0F0F;
  --bg-card: #141414;
  --bg-elevated: #1C1C1C;
  --surface: #222222;

  --text-primary: #F0EDE8;
  --text-secondary: #8A8782;
  --text-muted: #4A4845;

  /* Accent — Pure White with variants */
  --accent: #FFFFFF;
  --accent-light: #F0EDE8;
  --accent-dark: #AAAAAA;
  --accent-glow: rgba(255, 255, 255, 0.06);
  --accent-glow-strong: rgba(255, 255, 255, 0.12);

  /* Highlight — Soft warm white for italic/em elements */
  --highlight: #E8E4DE;

  --white: #FFFFFF;
  --white-10: rgba(255,255,255,0.1);
  --white-06: rgba(255,255,255,0.06);
  --white-05: rgba(255,255,255,0.05);
  --white-03: rgba(255,255,255,0.03);
  --black-50: rgba(0,0,0,0.5);
  --black-70: rgba(0,0,0,0.7);
  --black-80: rgba(0,0,0,0.8);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Layout */
  --container-max: 1320px;
  --container-narrow: 860px;
  --gutter: 2rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration: 0.4s;
  --duration-slow: 0.8s;
  --duration-slower: 1.2s;

  /* Borders */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --border-subtle: 1px solid rgba(255,255,255,0.07);
  --border-mid: 1px solid rgba(255,255,255,0.12);
}

/* ─── LIGHT THEME OVERRIDES ────────────────────────────────────────────────── */
[data-theme="light"] {
  --bg-primary: #F7F5F0;    /* Warm, ultra-premium off-white */
  --bg-secondary: #EFECE6;  /* Soft concrete */
  --bg-card: #E6E2D9;       /* Fine cardboard */
  --bg-elevated: #DDD8CD;   /* Elegant grey-beige */
  --surface: #D0C9BA;       /* Warm light grey */

  --text-primary: #121212;  /* Cinematic charcoal */
  --text-secondary: #5C5954;/* Muted taupe */
  --text-muted: #9E9B95;    /* Soft grey */

  /* Light Theme Accent variants */
  --accent: #121212;
  --accent-light: #252525;
  --accent-dark: #666666;
  --accent-glow: rgba(0, 0, 0, 0.03);
  --accent-glow-strong: rgba(0, 0, 0, 0.08);

  --highlight: #2A2A2A;

  --white: #000000;
  --white-10: rgba(0, 0, 0, 0.08);
  --white-06: rgba(0, 0, 0, 0.04);
  --white-05: rgba(0, 0, 0, 0.03);
  --white-03: rgba(0, 0, 0, 0.02);
  --black-50: rgba(255, 255, 255, 0.5);
  --black-70: rgba(255, 255, 255, 0.7);
  --black-80: rgba(255, 255, 255, 0.8);

  --border-subtle: 1px solid rgba(0, 0, 0, 0.06);
  --border-mid: 1px solid rgba(0, 0, 0, 0.12);
}

/* ─── LIGHT THEME OVERRIDES &Legibility REFINEMENTS ────────────────────────── */
[data-theme="light"] .btn-outline {
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--text-primary);
}

[data-theme="light"] .btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-primary);
}

[data-theme="light"] .card-category {
  color: rgba(0, 0, 0, 0.55);
}

[data-theme="light"] .service-icon {
  color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .section-eyebrow::before {
  background: rgba(0, 0, 0, 0.18);
}

/* Light Theme Inner Page Hero Banner Refinements */
[data-theme="light"] .page-hero .parallax-overlay {
  background: rgba(247, 245, 240, 0.88) !important; /* Premium clean alabaster mask, removes dark grey overlay */
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .page-hero-title {
  color: var(--text-primary) !important; /* Sharp cinematic dark title */
}

[data-theme="light"] .page-hero-sub {
  color: var(--text-secondary) !important; /* Elegant taupe subtitle */
}

[data-theme="light"] .page-hero .section-eyebrow {
  color: var(--text-muted) !important;
}

[data-theme="light"] .page-hero .section-eyebrow::before {
  background: rgba(0, 0, 0, 0.15) !important;
}

/* Ensure text overlay readibility on dark parallax & hover containers in both themes */
.masonry-caption h3,
.grid-item figcaption,
.statement p,
.statement cite,
.cta-title {
  color: #F0EDE8 !important;
}

.masonry-caption p,
.cta-text {
  color: #A8A29E !important;
}

.masonry-cat {
  color: rgba(255, 255, 255, 0.5) !important;
}

.statement em,
.cta-title em {
  color: #E8E4DE !important;
  font-style: italic;
}

/* Global transitions for buttery-smooth theme switching */
body, header, nav, footer, section, div, p, span, h1, h2, h3, a, button, article, figure, blockquote, cite, input, textarea {
  transition: background-color var(--duration) var(--ease-out-quart),
              color var(--duration) var(--ease-out-quart),
              border-color var(--duration) var(--ease-out-quart),
              box-shadow var(--duration) var(--ease-out-quart),
              transform var(--duration) var(--ease-out-expo),
              opacity var(--duration) var(--ease-out-expo);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

::selection {
  background: var(--white);
  color: var(--bg-primary);
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

/* ─── SECTION ──────────────────────────────────────────────────────────────── */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 3rem;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.section-title em {
  font-style: italic;
  color: var(--highlight);
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .section-eyebrow {
  padding-left: 0;
}

.section-header .section-eyebrow::before {
  display: none;
}

/* ─── SCROLL REVEAL ANIMATIONS ─────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--duration-slower) var(--ease-out-expo),
              transform var(--duration-slower) var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: 0;
  transition: all var(--duration) var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out-expo);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--white);
  color: var(--bg-primary);
  border: 1px solid var(--white);
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 50px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.04);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* Text Links */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
}

.text-link .arrow {
  transition: transform var(--duration) var(--ease-out-expo);
}

.text-link:hover .arrow {
  transform: translateX(6px);
}

.text-link--large {
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--duration) var(--ease-out-quart);
}

.site-header.scrolled {
  background: rgba(12, 12, 12, 0.38);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03),
              inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(247, 245, 240, 0.38);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01),
              inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Light Theme Navigation Override */
[data-theme="light"] .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
[data-theme="light"] .nav-link:hover {
  color: var(--text-primary);
}
[data-theme="light"] .nav-link--cta {
  background: var(--text-primary);
  color: var(--bg-primary);
}
[data-theme="light"] .nav-link--cta:hover {
  background: rgba(0,0,0,0.8);
  color: var(--bg-primary);
}



/* Theme Toggle Button Styles */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all var(--duration) var(--ease-out-expo);
  position: relative;
  z-index: 1002;
  margin-left: 0.5rem;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05) rotate(15deg);
}

[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Toggle sun/moon visibility */
.theme-toggle .sun-icon {
  display: block;
}
.theme-toggle .moon-icon {
  display: none;
}

[data-theme="light"] .theme-toggle .sun-icon {
  display: none;
}
[data-theme="light"] .theme-toggle .moon-icon {
  display: block;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-md) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity var(--duration-fast);
}

.nav-logo:hover {
  opacity: 0.8;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--text-primary);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.55em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--duration-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width var(--duration) var(--ease-out-expo);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active-page {
  color: var(--white) !important;
}

.nav-link.active-page::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  opacity: 0.8;
  transition: all var(--duration) var(--ease-out-expo);
}

[data-theme="light"] .nav-link.active-page::before {
  background: var(--text-primary);
  box-shadow: none;
}

.nav-link--cta {
  color: var(--bg-primary);
  background: var(--white);
  padding: 0.6rem 1.6rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(255,255,255,0.12);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--duration) var(--ease-out-expo);
  transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PARALLAX SCROLL SYSTEM
   ═══════════════════════════════════════════════════════════════════════════════ */
.parallax-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* The magic: clips the fixed background to the section bounds */
  clip-path: inset(0); 
}

.parallax-bg-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.parallax-bg-wrap .img-placeholder,
.parallax-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.75);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ─── HERO SPLIT GRID SYSTEM ────────────────────────────────────────────────── */
.hero-split-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  overflow: hidden;
}

.hero-panel {
  flex: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: var(--space-xl) var(--gutter);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: flex 0.8s var(--ease-out-expo), border-color var(--duration);
}

.hero-panel:last-child {
  border-right: none;
}

[data-theme="light"] .hero-panel {
  border-right-color: rgba(0, 0, 0, 0.05);
}

/* Background image inside panel */
.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out-expo);
  z-index: 1;
}

/* Hover expansion */
.hero-panel:hover {
  flex: 1.45; /* Dynamic hover horizontal expand! */
}

.hero-panel:hover .panel-bg {
  transform: scale(1.08); /* Slow elegant zoom-in on hover */
}

/* Panel overlays */
.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.05) 50%,
    rgba(10, 10, 10, 0.72) 100%
  );
  opacity: 0.88;
  z-index: 2;
  transition: opacity var(--duration) var(--ease-out-quart);
}

[data-theme="light"] .panel-overlay {
  background: linear-gradient(
    180deg,
    rgba(247, 245, 240, 0.2) 0%,
    rgba(247, 245, 240, 0.05) 50%,
    rgba(247, 245, 240, 0.68) 100%
  );
}

.hero-panel:hover .panel-overlay {
  opacity: 0.6;
}

/* Content overlays */
.panel-content {
  position: relative;
  z-index: 3;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(0);
  transition: transform var(--duration) var(--ease-out-expo);
}

.panel-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--highlight);
  opacity: 0.55;
  transition: opacity var(--duration);
}

[data-theme="light"] .panel-number {
  color: var(--text-secondary);
}

.panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  line-height: 1.2;
}

[data-theme="light"] .panel-title {
  color: #121212;
}

.hero-panel:hover .panel-content {
  transform: translateY(-8px);
}

.hero-panel:hover .panel-number {
  opacity: 1;
}

/* Mobile: Horizontal touch swipe slider for the 3 portrait panels! */
@media (max-width: 768px) {
  .hero-split-grid {
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hero-split-grid::-webkit-scrollbar {
    display: none;
  }

  .hero-panel {
    border-right: none !important;
    border-bottom: none !important;
    flex: 0 0 100% !important; /* Full width per portrait panel! */
    width: 100% !important;
    height: 100vh !important;
    scroll-snap-align: start !important;
    padding: var(--space-2xl) var(--gutter) var(--space-xl) !important;
  }

  .hero-panel:hover {
    flex: 0 0 100% !important;
  }

  /* Add a dynamic hint on mobile so users know they can swipe */
  .hero-split-grid::after {
    content: 'Swipe to explore →';
    position: absolute;
    bottom: var(--gutter);
    left: var(--gutter);
    z-index: 10;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--highlight);
    opacity: 0.55;
    pointer-events: none;
    animation: swipePulse 2s ease-in-out infinite;
  }

  @keyframes swipePulse {
    0%, 100% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(5px); }
  }
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.4) 0%,
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.3) 70%,
    rgba(8,8,8,0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(247,245,240,0.4) 0%,
    rgba(247,245,240,0.1) 40%,
    rgba(247,245,240,0.2) 70%,
    rgba(247,245,240,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.hero-title-line {
  display: block;
  font-size: clamp(3rem, 8vw, 7rem);
  animation: fadeInUp 1s var(--ease-out-expo) both;
  color: var(--white);
}

.hero-title-line:nth-child(1) { animation-delay: 0.5s; }
.hero-title-line:nth-child(2) { animation-delay: 0.7s; }
.hero-title-line:nth-child(3) { animation-delay: 0.9s; }

.hero-title-italic {
  font-style: italic;
  color: var(--highlight);
  font-weight: 200;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s var(--ease-out-expo) 1.1s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out-expo) 1.3s both;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: fadeInUp 1s var(--ease-out-expo) 1.8s both;
}

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

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   PAGE HERO (Inner Pages)
   ═══════════════════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero--short {
  min-height: 50vh;
}

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

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

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem var(--gutter) 3rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: #F0EDE8 !important;
  margin-bottom: var(--space-sm);
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: #A8A29E !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-hero .section-eyebrow {
  color: rgba(255, 255, 255, 0.5) !important;
}

.page-hero .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.25) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PLACEHOLDER IMAGES
   ═══════════════════════════════════════════════════════════════════════════════ */
.img-placeholder,
.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 50%, var(--surface) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.015) 20px,
      rgba(255,255,255,0.015) 21px
    );
}

.img-placeholder::after {
  content: attr(data-placeholder);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Camera icon in placeholder */
.img-placeholder::after {
  content: '📷  ' attr(data-placeholder);
}

.hero-placeholder {
  min-height: 100vh;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   INTRO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.intro-description {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--white-05);
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.image-frame .img-placeholder {
  min-height: 500px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURED HORIZONTAL SCROLL
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-featured {
  background: var(--bg-secondary);
  overflow: hidden;
}

.featured-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) var(--bg-secondary);
  padding: 0 var(--gutter);
  margin-bottom: var(--space-xl);
  cursor: grab;
}

.featured-scroll:active {
  cursor: grabbing;
}

.featured-scroll::-webkit-scrollbar {
  height: 1px;
}
.featured-scroll::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
.featured-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 1px;
}

.featured-track {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  width: max-content;
}

.featured-card {
  flex: 0 0 320px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: transform var(--duration) var(--ease-out-expo);
}

.featured-card:hover {
  transform: translateY(-8px);
}

.featured-card-img {
  width: 320px;
  height: 420px;
  overflow: hidden;
}

.featured-card-img .img-placeholder,
.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.featured-card:hover .featured-card-img .img-placeholder,
.featured-card:hover .featured-card-img img {
  transform: scale(1.08);
}

.featured-card-info {
  padding: var(--space-md);
}

.card-category {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.featured-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 0.3rem;
}

.featured-cta {
  text-align: center;
  padding-top: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out-expo);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity var(--duration);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.12);
  background: var(--bg-elevated);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-number {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--white-05);
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STATEMENT / QUOTE
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-statement {
  background: var(--bg-secondary);
}

.section-statement::before {
  content: '"';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--font-display);
  font-size: 30rem;
  color: var(--white-05);
  line-height: 1;
  pointer-events: none;
}

.statement {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.statement p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-primary);
}

.statement em {
  color: var(--highlight);
  font-style: italic;
  font-weight: 200;
}

.statement cite {
  display: block;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PHOTO GRID (Homepage)
   ═══════════════════════════════════════════════════════════════════════════════ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--space-sm);
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

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

.grid-item--tall {
  grid-row: span 2;
}

.grid-item .img-placeholder,
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.grid-item:hover .img-placeholder,
.grid-item:hover img {
  transform: scale(1.06);
}

.grid-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease-out-expo);
}

.grid-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */
.section-cta {
  background: var(--bg-primary);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.cta-title em {
  color: var(--highlight);
  font-style: italic;
  font-weight: 200;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto var(--space-xl);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PORTFOLIO — MASONRY GALLERY
   ═══════════════════════════════════════════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.filter-tab {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  color: var(--text-secondary);
  border: 1px solid var(--white-10);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out-expo);
}

.filter-tab:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.filter-tab.active {
  color: var(--bg-primary);
  background: var(--white);
  border-color: var(--white);
}

.masonry-gallery {
  columns: 3;
  column-gap: var(--space-sm);
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--space-sm);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo),
              box-shadow 0.6s var(--ease-out-expo);
}

[data-theme="light"] .masonry-item {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.masonry-item:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .masonry-item:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.masonry-img {
  overflow: hidden;
}

.masonry-img .img-placeholder,
.masonry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-expo);
  min-height: 250px;
}

.masonry-item--tall .masonry-img .img-placeholder {
  min-height: 450px;
}

.masonry-item--wide .masonry-img .img-placeholder {
  min-height: 200px;
}

.masonry-item:hover .masonry-img .img-placeholder,
.masonry-item:hover .masonry-img img {
  transform: scale(1.06);
}

.masonry-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease-out-expo);
}

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

.masonry-cat {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.masonry-caption h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 0.3rem;
}

.masonry-caption p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* ─── LIGHTBOX ─────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease-out-expo);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
  transition: color var(--duration-fast);
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent);
}

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

.lightbox-img img,
.lightbox-img .img-placeholder {
  max-height: 75vh;
  max-width: 85vw;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-info {
  text-align: center;
  margin-top: var(--space-md);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 1rem;
  transition: color var(--duration-fast);
  background: none;
  border: none;
}

.lightbox-nav:hover {
  color: var(--accent);
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-image {
  position: relative;
}

.about-image .image-frame--large .img-placeholder {
  min-height: 600px;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--accent);
  opacity: 0.2;
  border-radius: var(--radius-sm);
  z-index: -1;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.about-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: var(--border-subtle);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--duration) var(--ease-out-expo);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.value-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* BTS Gallery */
.bts-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.bts-item {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.bts-item .img-placeholder,
.bts-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.bts-item .img-placeholder {
  min-height: 350px;
}

.bts-item:hover .img-placeholder,
.bts-item:hover img {
  transform: scale(1.05);
}

/* Testimonials */
.section-testimonials {
  background: var(--bg-secondary);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A8A29E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

/* Contact Info Cards */
.contact-info-card {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  margin-bottom: var(--space-md);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text-primary);
}

a.contact-detail-value:hover {
  color: var(--accent);
}

/* Social Card */
.contact-social-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all var(--duration-fast);
}

.contact-social-link:hover {
  color: var(--accent);
  background: var(--surface);
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-fast);
}

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--duration-fast);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform var(--duration) var(--ease-out-expo);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

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

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--gutter) var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-10);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}

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

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

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

.footer-links a,
.footer-links li {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-contact-info svg {
  flex-shrink: 0;
  color: var(--accent);
}

.footer-bottom {
  border-top: var(--border-subtle);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-signature {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sig-author {
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 0.1rem;
}

.sig-author::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--highlight, #BFA58A);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sig-spark {
  color: var(--highlight, #BFA58A);
  font-size: 0.6rem;
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sig-author:hover {
  color: var(--highlight, #BFA58A) !important;
  letter-spacing: 0.16em;
}

.sig-author:hover::after {
  width: 100%;
}

.sig-author:hover .sig-spark {
  transform: rotate(180deg) scale(1.2);
}

@media (max-width: 768px) {
  .footer-signature {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    align-items: center;
  }
  .sig-divider {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .masonry-gallery { columns: 2; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-item--wide { grid-column: span 2; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --gutter: 1.2rem;
    --space-3xl: 5rem;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out-expo);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
  }

  .nav-link--cta {
    margin-top: var(--space-sm);
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
  }

  /* Light Theme Mobile Nav Overrides */
  [data-theme="light"] .nav-menu {
    background: rgba(247, 245, 240, 0.98) !important;
  }
  
  [data-theme="light"] .nav-link {
    color: rgba(0, 0, 0, 0.55) !important;
  }

  [data-theme="light"] .nav-link:hover,
  [data-theme="light"] .nav-link.active-page {
    color: #121212 !important;
  }

  [data-theme="light"] .nav-link.active-page::before {
    background: #121212 !important;
  }

  [data-theme="light"] .hamburger-line {
    background: #121212 !important;
  }

  /* Layout */
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .bts-gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .masonry-gallery { columns: 1; }
  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .grid-item--wide { grid-column: span 1; }
  .grid-item--tall { grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-stats { gap: var(--space-lg); }

  .hero-title-line {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .featured-card {
    flex: 0 0 270px;
  }

  .featured-card-img {
    width: 270px;
    height: 350px;
  }

  .page-hero {
    min-height: 45vh;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SMOOTH LOADING
   ═══════════════════════════════════════════════════════════════════════════════ */
body.loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

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

.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CUSTOM CURSOR (Desktop only)
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (pointer: fine) {
  .custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s var(--ease-out-quart),
                width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo),
                background 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }

  .custom-cursor.hovering {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GRAIN OVERLAY (Cinematic texture)
   ═══════════════════════════════════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON (Monochrome Glassmorphic)
   ═══════════════════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Dark Theme (Default): Light button with black icon */
[data-theme="dark"] .whatsapp-float {
  background: rgba(255, 255, 255, 0.9);
  color: #080808;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Light Theme: Dark button with light icon */
[data-theme="light"] .whatsapp-float {
  background: rgba(18, 18, 18, 0.9);
  color: #F7F5F0;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .whatsapp-float:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover svg {
  transform: rotate(8deg) scale(1.1);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 2rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
}
