/* ==========================================================================
   KALYANA GANEGODA — LUXURY EDITORIAL DESIGN SYSTEM & STYLESHEET
   Inspired by Kayla Fisher Photography | High-End Editorial Aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #fbfaf6;
  --bg-secondary: #f4f0e6;
  --bg-tertiary: #eae5d8;
  --bg-dark: #121210;
  --bg-dark-surface: #1c1a17;
  
  --text-main: #1e1d1a;
  --text-muted: #6b675f;
  --text-light: #9a9488;
  --text-white: #fbfaf6;
  --text-white-muted: #c5bfb4;
  
  --accent-olive: #68612f;
  --accent-olive-dark: #585125;
  --accent-olive-light: #7b733b;
  --accent-gold: #c8a97e;
  --accent-gold-hover: #dfc194;
  
  --border-light: rgba(30, 29, 26, 0.08);
  --border-dark: rgba(251, 250, 246, 0.12);
  --border-gold: rgba(200, 169, 126, 0.35);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-title: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Transitions */
  --container-max: 1380px;
  --header-height: 80px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
  --shadow-luxury: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent-olive);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, transform 0.1s ease-out;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(104, 97, 47, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

.cursor-hover .custom-cursor {
  width: 24px;
  height: 24px;
  background: var(--accent-gold);
  opacity: 0.8;
}

.cursor-hover .custom-cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--accent-gold);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-main);
}

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-olive);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: var(--accent-gold);
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--accent-olive);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.btn-gold:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: var(--text-main);
  color: var(--text-white);
}

.btn-text-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 3px;
}

/* ==========================================================================
   HEADER / TOP NAVIGATION (EXACT KAYLA FISHER 3-COLUMN EDITORIAL STYLE)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-primary);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-grid-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.header-nav-left,
.header-nav-right {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.header-nav-right {
  justify-content: flex-end;
}

.header-nav-item a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.header-nav-item a:hover {
  color: var(--accent-olive);
}

.header-inquire-link {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 1px;
}

.header-brand-center {
  text-align: center;
}

.header-logo-text {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1;
  white-space: nowrap;
}

/* Luxury Hamburger Button */
.header-drawer-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  margin-left: 0.5rem;
}

.header-drawer-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--text-main);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Fullscreen Luxury Hamburger Menu Drawer */
.luxury-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 18, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxury-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.luxury-menu-close-btn {
  position: absolute;
  top: 2rem;
  right: 3.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.luxury-menu-close-btn:hover {
  transform: rotate(90deg);
  color: var(--accent-gold);
}

.luxury-menu-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 6rem;
  max-width: 1200px;
  width: 90%;
}

.luxury-menu-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.luxury-menu-nav-list a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #ffffff;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.luxury-menu-nav-list a span.menu-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
}

.luxury-menu-nav-list a:hover {
  color: var(--accent-gold);
  padding-left: 1rem;
}

.luxury-menu-sidebar {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-white-muted);
}

.luxury-menu-sidebar h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.luxury-menu-sidebar p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ==========================================================================
   HERO SECTION (50/50 DUAL SPLIT & OVERLAY TYPOGRAPHY)
   ========================================================================== */
.hero-split-fullscreen {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 620px;
  margin-top: var(--header-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #0e0d0b;
  overflow: hidden;
}

.hero-split-col {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-split-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-split-col.col-bw img {
  filter: grayscale(100%) contrast(108%) brightness(96%);
}

.hero-split-overlay-gradient {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  pointer-events: none;
}

/* Center Delicate Monogram Crest */
.hero-center-monogram {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(14, 13, 11, 0.2);
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-center-monogram::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.hero-center-monogram span {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: #ffffff;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1;
}

/* Center Monumental Typography */
.hero-center-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  text-align: center;
  color: #ffffff;
  z-index: 10;
  pointer-events: none;
}

.hero-headline-massive {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-headline-massive .for-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9em;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: normal;
  margin-right: 0.2em;
  display: inline-block;
}

.hero-tagline-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 1.75rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   FEATURED PROJECTS INTERACTIVE LIST SECTION (EXACT KAYLA FISHER SCREENSHOT 1)
   ========================================================================== */
.featured-projects-section {
  padding: 8rem 0 5rem;
  background-color: var(--bg-primary);
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.featured-projects-title-wrap {
  margin-bottom: 3.5rem;
}

.featured-title-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  color: var(--text-main);
  line-height: 1;
  display: block;
}

.featured-title-caps {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1;
  display: block;
}

.featured-projects-list {
  border-top: 1px solid var(--border-light);
}

.featured-project-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.2rem 0.5rem;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-project-row:hover,
.featured-project-row.active {
  padding-left: 1.5rem;
  border-color: var(--text-main);
}

.featured-project-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.featured-project-row:hover .featured-project-name,
.featured-project-row.active .featured-project-name {
  color: var(--accent-olive);
}

.featured-project-action {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.featured-project-row:hover .featured-project-action {
  color: var(--accent-olive);
  border-color: var(--accent-olive);
}

.featured-project-preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  background-color: var(--bg-secondary);
}

.featured-project-preview-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s ease;
  transform: scale(1.05);
}

.featured-project-preview-frame img.active {
  opacity: 1;
  transform: scale(1);
}

/* Publication Press Logos */
.press-publications-banner {
  padding: 4.5rem 0 6rem;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.press-logos-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.press-logo-item {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #8c877b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.press-logo-item.script-font {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  font-size: 1.85rem;
}

.press-logo-item:hover {
  color: var(--text-main);
}

/* ==========================================================================
   BEHIND THE LENS — OLIVE GREEN SPLIT SECTION (EXACT KAYLA FISHER SCREENSHOT 2)
   ========================================================================== */
.behind-lens-split-section {
  position: relative;
  width: 100%;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background-color: var(--accent-olive);
  overflow: hidden;
}

.behind-lens-photo-side {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.behind-lens-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behind-lens-center-crest {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(104, 97, 47, 0.35);
  backdrop-filter: blur(5px);
}

.behind-lens-center-crest span {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: #ffffff;
  font-style: italic;
  letter-spacing: -0.05em;
}

.behind-lens-content-side {
  background-color: var(--accent-olive);
  padding: 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #ffffff;
}

.behind-lens-kicker {
  position: absolute;
  top: 3.5rem;
  right: 5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.behind-lens-kicker::after {
  content: '';
  width: 25px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.behind-lens-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 2rem;
}

.behind-lens-bio {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.behind-lens-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 3px;
  display: inline-block;
  width: fit-content;
  transition: all 0.25s ease;
}

.behind-lens-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  padding-left: 0.5rem;
}

/* ==========================================================================
   MARQUEE STATEMENT STRIP
   ========================================================================== */
.statement-marquee {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-white-muted);
}

.marquee-item .marquee-star {
  color: var(--accent-gold);
}

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

/* ==========================================================================
   ABOUT / BRAND BIO SECTION
   ========================================================================== */
.about-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-portrait-stack {
  position: relative;
}

.about-portrait-main {
  width: 90%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

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

.about-experience-card {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: var(--bg-primary);
  padding: 2rem 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--border-light);
  text-align: center;
}

.exp-num {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--accent-olive);
  line-height: 1;
}

.exp-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.about-story {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.about-quote-box {
  border-left: 3px solid var(--accent-olive);
  padding-left: 1.75rem;
  margin: 2.5rem 0;
}

.about-quote-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
}

/* ==========================================================================
   OFFERINGS & SERVICES
   ========================================================================== */
.offerings-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}

.service-row-item {
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.service-row-item:hover {
  background-color: rgba(244, 240, 230, 0.5);
  padding-left: 2rem;
  padding-right: 2rem;
}

.service-row-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.service-meta-left {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

.service-idx {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-olive);
}

.service-main-heading h3 {
  font-size: 1.85rem;
  font-weight: 400;
}

.service-price-tag {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--accent-olive);
}

.service-expand-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-row-item.active .service-expand-icon {
  transform: rotate(45deg);
  background: var(--bg-dark);
  color: #fff;
}

.service-row-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.service-row-item.active .service-row-details {
  max-height: 500px;
  padding-top: 2rem;
}

.service-details-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 4px;
}

.service-hover-preview {
  position: fixed;
  pointer-events: none;
  width: 280px;
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  z-index: 100;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-hover-preview.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.service-hover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   PORTFOLIO CURATED GALLERY
   ========================================================================== */
.portfolio-section {
  padding: 8rem 0;
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.portfolio-header .section-title {
  color: var(--text-white);
}

.portfolio-filter-tabs {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tab-btn {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-white-muted);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-tab-btn.active, .filter-tab-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.portfolio-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s ease;
}

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

.portfolio-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-dark-surface);
}

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

.portfolio-card:hover .portfolio-card-img-wrap img {
  transform: scale(1.08);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 13, 11, 0.9) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.portfolio-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 11, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.lightbox-media-wrap img {
  max-height: 75vh;
  width: auto;
  object-fit: contain;
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Testimonials */
.testimonials-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.testimonials-slider-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card-single {
  display: none;
}

.testimonial-card-single.active {
  display: block;
}

.testimonial-stars {
  color: var(--accent-olive);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.testimonial-quote-large {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.testimonial-client-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.test-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  cursor: pointer;
}

/* Inquiry Section */
.inquiry-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.inquiry-form-card {
  background: var(--bg-secondary);
  padding: 3.5rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 0.95rem;
}

.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 6rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-white-muted);
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE OPTIMIZATION
   ========================================================================== */

@media (max-width: 1024px) {
  .header-grid-layout {
    padding: 0 2rem;
  }
  
  .header-nav-left, .header-nav-right {
    gap: 1.25rem;
  }

  .header-logo-text {
    font-size: 1.45rem;
    letter-spacing: 0.15em;
  }

  .about-grid, 
  .inquiry-grid, 
  .footer-grid, 
  .featured-projects-grid, 
  .behind-lens-split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .featured-projects-right {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .featured-project-preview-frame {
    height: 420px;
  }

  .behind-lens-photo-side {
    height: 480px;
  }

  .behind-lens-content-side {
    padding: 4rem 2.5rem;
  }

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

  .luxury-menu-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .luxury-menu-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
  }
}

@media (max-width: 850px) {
  /* Site Header Mobile Bar */
  .site-header {
    height: 62px;
  }

  .header-grid-layout {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 1.25rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .header-nav-left,
  .header-nav-right .header-nav-item:not(:last-child) {
    display: none !important;
  }

  .header-nav-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header-brand-center {
    text-align: left !important;
    flex-grow: 1 !important;
    overflow: hidden !important;
  }

  .header-logo-text {
    font-size: clamp(0.95rem, 4.2vw, 1.3rem) !important;
    letter-spacing: 0.12em !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    display: inline-block !important;
    line-height: 1.2 !important;
  }

  .header-drawer-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 8px !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }

  .header-drawer-toggle span {
    display: block !important;
    width: 22px !important;
    height: 1.5px !important;
    background-color: var(--text-main) !important;
  }

  /* Fullscreen Hero on Mobile (50/50 Dual Split Preserved) */
  .hero-split-fullscreen {
    height: 88vh;
    min-height: 540px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-split-col img {
    height: 100%;
    object-fit: cover;
  }

  .hero-center-content {
    top: 54%;
    width: 92%;
  }

  .hero-headline-massive {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.05;
  }

  .hero-headline-massive .for-script {
    font-size: 0.85em;
  }

  .hero-tagline-sub {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 1rem;
    padding: 0 0.5rem;
  }

  /* Featured Projects Section */
  .featured-projects-section {
    padding: 4.5rem 0 3rem;
  }

  .featured-projects-title-wrap {
    margin-bottom: 1.75rem;
  }

  .featured-title-script {
    font-size: 2rem;
  }

  .featured-title-caps {
    font-size: 2.2rem;
  }

  .featured-project-row {
    padding: 1.35rem 0.25rem;
  }

  .featured-project-name {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .featured-project-action {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }

  .featured-project-preview-frame {
    height: 300px;
  }

  /* Press Publication Bar */
  .press-publications-banner {
    padding: 2.5rem 0;
  }

  .press-logos-track {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 2.5rem;
    padding-bottom: 0.5rem;
  }

  .press-logo-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    font-size: 0.85rem;
  }

  /* Behind The Lens Split */
  .behind-lens-split-section {
    grid-template-columns: 1fr;
  }

  .behind-lens-photo-side {
    height: 360px;
  }

  .behind-lens-content-side {
    padding: 3.5rem 1.5rem;
  }

  .behind-lens-title-caps {
    font-size: 2.2rem;
  }

  .behind-lens-bio-p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  /* Portfolio & Offerings */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-card-thumb {
    height: 360px;
  }

  .service-card-interactive {
    padding: 1.5rem;
  }

  .service-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 4.5rem 0;
  }

  .testimonial-quote-large {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  /* Inquiry Form */
  .inquiry-section {
    padding: 4.5rem 0;
  }

  .inquiry-form-card {
    padding: 2rem 1.25rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-group-full {
    grid-column: span 1;
  }

  .form-control,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
    padding: 0.85rem 1rem;
  }

  /* Luxury Fullscreen Menu Modal */
  .luxury-menu-modal,
  .luxury-menu-overlay {
    padding: 5.5rem 1.5rem 2.5rem;
  }

  .luxury-nav-menu-link,
  .luxury-menu-nav-list a {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
    line-height: 1.2;
    padding: 0.45rem 0;
  }

  .luxury-menu-close-btn {
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem;
  }

  /* Footer */
  .site-footer {
    padding: 4rem 0 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Touch Cursor Removal */
  .custom-cursor, 
  .custom-cursor-follower {
    display: none !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor, 
  .custom-cursor-follower {
    display: none !important;
  }
}
