/* ============================================================
   MIHIRA STUDIOS — Shared CSS
============================================================ */
:root {
  --orange: #E8471A;
  --orange-dark: #C73D16;
  --dark: #1A1A1A;
  --dark-2: #111111;
  --warm-white: #FAF7F2;
  --cream: #F5EFE6;
  --gold: #C9A96E;
  --gray: #8C8278;
  --gray-light: #D4CEC8;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--warm-white);
  overflow-x: hidden;
  cursor: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
/* Page transition — only applied during JS navigation, never on page load */
body.page-leaving { opacity: 0 !important; pointer-events: none; }
/* Safety: fade-out class no longer makes body invisible on load */
body.fade-out { opacity: 1; }
body.fade-in { opacity: 1; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ============================================================
   PAGE LOAD OVERLAY
============================================================ */
#page-loader {
  position: fixed; inset: 0;
  background: var(--dark-2);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.8s, transform 0.8s;
}
#page-loader.hidden { opacity: 0; pointer-events: none; transform: translateY(-100%); }
.loader-logo { animation: loaderPulse 1.5s ease infinite; }
@keyframes loaderPulse { 0%,100%{opacity:0.4;transform:scale(0.95)} 50%{opacity:1;transform:scale(1.05)} }
.loader-text { font-family: var(--font-serif); font-size: 0.9rem; font-style: italic; color: var(--gold); letter-spacing: 0.08em; }
.loader-bar { width: 160px; height: 1px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.loader-bar::after { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,var(--orange),transparent); animation:loaderBar 1.2s ease infinite; }
@keyframes loaderBar { to { left: 100%; } }

/* ============================================================
   CUSTOM CURSOR
============================================================ */
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity 0.3s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(232,71,26,0.5); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-smooth), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--orange); background: rgba(232,71,26,0.08); }

/* ============================================================
   NAVIGATION
============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-logo {
  display: flex; align-items: center; gap: 0;
}
.nav-logo img { height: 58px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,247,242,0.75); position: relative;
  transition: color 0.3s; font-weight: 400;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--warm-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px; background: var(--orange);
  color: white !important; font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s; font-weight: 500;
}
.nav-cta:hover { background: var(--orange-dark); transform: scale(1.04); box-shadow: 0 8px 24px rgba(232,71,26,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; padding: 8px; z-index: 1001;
}
.hamburger span { width: 24px; height: 1.5px; background: var(--warm-white); transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--dark-2); z-index: 999;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 80px 48px;
  transform: translateX(100%); transition: transform 0.5s var(--ease-smooth);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { overflow: hidden; margin-bottom: 8px; }
.mobile-menu ul a {
  font-family: var(--font-serif); font-size: clamp(2rem,6vw,3.5rem);
  font-weight: 300; color: var(--warm-white); display: block;
  padding: 8px 0; transition: color 0.3s;
  transform: translateY(100%); opacity: 0;
}
.mobile-menu.open ul a { transform: translateY(0); opacity: 1; transition: transform 0.5s var(--ease-smooth), opacity 0.5s, color 0.3s; }
.mobile-menu ul li:nth-child(1) a { transition-delay:0.1s; }
.mobile-menu ul li:nth-child(2) a { transition-delay:0.15s; }
.mobile-menu ul li:nth-child(3) a { transition-delay:0.2s; }
.mobile-menu ul li:nth-child(4) a { transition-delay:0.25s; }
.mobile-menu ul li:nth-child(5) a { transition-delay:0.3s; }
.mobile-menu ul li:nth-child(6) a { transition-delay:0.35s; }
.mobile-menu ul a:hover { color: var(--orange); }
.mobile-menu-footer { position: absolute; bottom: 48px; left: 48px; display: flex; gap: 24px; }
.mobile-menu-footer a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); transition: color 0.3s; }
.mobile-menu-footer a:hover { color: var(--orange); }

/* ============================================================
   SHARED COMPONENTS
============================================================ */
section { position: relative; }

.section-reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.section-reveal.visible { opacity: 1; transform: translateY(0); }

.label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); font-family: var(--font-sans); font-weight: 400;
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.label::before { content:''; width:32px; height:1px; background:var(--orange); }

.btn-primary {
  padding: 16px 40px; background: var(--orange); color: white;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px; font-weight: 500; display: inline-block;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover { background: var(--orange-dark); transform: scale(1.04); box-shadow: 0 12px 32px rgba(232,71,26,0.45); }

.btn-outline {
  padding: 15px 40px; border: 1px solid rgba(250,247,242,0.3);
  color: var(--warm-white); font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 2px; font-weight: 400; display: inline-block;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: var(--orange); background: rgba(232,71,26,0.08); }

.section-header { text-align: center; margin-bottom: 72px; }
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 300; line-height: 1.2; color: var(--warm-white);
}
.section-title em { color: var(--orange); font-style: italic; }

/* ============================================================
   MARQUEE STRIP
============================================================ */
.marquee-strip {
  background: rgba(26,20,10,0.95);
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding: 14px 0; overflow: hidden; position: relative; z-index: 5;
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  white-space: nowrap; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); font-family: var(--font-sans);
  padding: 0 32px; opacity: 0.8;
}
.marquee-dot { color: var(--orange); opacity: 1; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================================
   INTRO STATEMENT
============================================================ */
.intro-statement { background: var(--cream); padding: 120px 48px; text-align: center; }
.intro-statement blockquote {
  font-family: var(--font-serif); font-size: clamp(1.8rem,4.5vw,3.5rem);
  font-weight: 300; color: var(--dark); line-height: 1.4; max-width: 900px;
  margin: 0 auto; font-style: italic;
}
.intro-statement .em { color: var(--orange); font-style: normal; font-weight: 500; }
.intro-statement cite {
  display: block; margin-top: 32px; font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray); font-style: normal; font-family: var(--font-sans);
}

/* ============================================================
   WHY MIHIRA CARDS
============================================================ */
.why-mihira { background: var(--dark); padding: 120px 48px; }
.why-mihira-inner { max-width: 1200px; margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: linear-gradient(145deg,rgba(255,255,255,0.03),rgba(255,255,255,0.01));
  border: 1px solid rgba(201,169,110,0.15); border-radius: 4px;
  padding: 48px 36px; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
  transform-style: preserve-3d;
}
.feature-card::before {
  content:''; position:absolute; top:0; left:0; width:100%; height:3px;
  background: linear-gradient(90deg,var(--orange),var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.2); }
.card-num { font-family:var(--font-serif); font-size:4rem; font-weight:300; color:rgba(232,71,26,0.15); line-height:1; margin-bottom:24px; }
.card-title { font-family:var(--font-serif); font-size:1.5rem; font-weight:500; color:var(--warm-white); margin-bottom:16px; }
.card-text { font-size:0.9rem; color:var(--gray); line-height:1.8; font-weight:300; }

/* ============================================================
   GALLERY TEASER
============================================================ */
.gallery-teaser { background: var(--dark-2); padding: 100px 48px; }
.gallery-teaser-inner { max-width: 1400px; margin: 0 auto; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(12,1fr);
  grid-template-rows: repeat(3,200px); gap: 8px; margin: 56px 0;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 2px; cursor: none; }
.gallery-item:nth-child(1) { grid-column:1/5; grid-row:1/3; }
.gallery-item:nth-child(2) { grid-column:5/8; grid-row:1/2; }
.gallery-item:nth-child(3) { grid-column:8/13; grid-row:1/2; }
.gallery-item:nth-child(4) { grid-column:5/9; grid-row:2/4; }
.gallery-item:nth-child(5) { grid-column:9/13; grid-row:2/3; }
.gallery-item:nth-child(6) { grid-column:1/5; grid-row:3/4; }

.gallery-item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.6s var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to top,rgba(232,71,26,0.85) 0%,transparent 60%);
  opacity:0; transition:opacity 0.4s;
  display:flex; align-items:flex-end; padding:20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size:0.75rem; letter-spacing:0.15em; text-transform:uppercase; color:white; font-weight:400; }
.gallery-cta { text-align: center; }

/* ============================================================
   TAGLINE BREAK
============================================================ */
.tagline-break {
  background: var(--dark); padding: 120px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.tagline-break::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%,rgba(232,71,26,0.06) 0%,transparent 70%);
}
.tagline-quote {
  font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 300; color: var(--warm-white); position: relative; display: inline-block;
}
.tagline-quote em { color: var(--gold); }
.tagline-quote::after {
  content:''; display:block; width:0; height:2px;
  background: var(--orange); margin: 20px auto 0;
}
.tagline-quote.visible::after { animation: underlineGrow 2s var(--ease-smooth) 0.5s forwards; }
@keyframes underlineGrow { to { width: 200px; } }

/* ============================================================
   LEGACY PAGE
============================================================ */
.legacy-section { background: var(--cream); padding: 140px 48px; }
.legacy-inner { max-width: 1200px; margin: 0 auto; }
.legacy-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.legacy-text h2 {
  font-family: var(--font-serif); font-size: clamp(2.2rem,4vw,3.5rem);
  font-weight: 300; color: var(--dark); line-height: 1.2; margin-bottom: 32px;
}
.legacy-text h2 em { color: var(--orange); }
.legacy-text p { font-size:1rem; color:#4A3F35; line-height:1.9; margin-bottom:20px; font-weight:300; }
.legacy-pullquote {
  background: var(--dark); color: var(--warm-white); padding: 40px;
  border-radius: 2px; margin-top: 40px; position: relative; border-left: 3px solid var(--orange);
}
.legacy-pullquote::before {
  content:'"'; font-family:var(--font-serif); font-size:8rem; color:var(--orange); opacity:0.2;
  position:absolute; top:-20px; left:20px; line-height:1;
}
.legacy-pullquote p { font-family:var(--font-serif); font-size:1.2rem; font-style:italic; line-height:1.7; color:var(--warm-white); margin:0; }
.legacy-pullquote cite { display:block; margin-top:16px; font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); font-style:normal; font-family:var(--font-sans); }

.timeline { position: relative; }
.timeline::before { content:''; position:absolute; left:16px; top:8px; bottom:8px; width:1px; background:linear-gradient(to bottom,var(--orange),transparent); }
.timeline-item { display:flex; gap:32px; margin-bottom:48px; position:relative; }
.timeline-dot { width:32px; height:32px; flex-shrink:0; border:2px solid var(--orange); border-radius:50%; background:var(--cream); display:flex; align-items:center; justify-content:center; position:relative; z-index:1; transition:background 0.3s; }
.timeline-dot::after { content:''; width:8px; height:8px; background:var(--orange); border-radius:50%; }
.timeline-item:hover .timeline-dot { background: var(--orange); }
.timeline-item:hover .timeline-dot::after { background: white; }
.timeline-year { font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--orange); font-weight:500; margin-bottom:4px; }
.timeline-title { font-family:var(--font-serif); font-size:1.1rem; font-weight:500; color:var(--dark); margin-bottom:6px; }
.timeline-desc { font-size:0.88rem; color:#6A5A50; line-height:1.7; font-weight:300; }

.stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(140,130,120,0.2); margin-top:100px; }
.stat-box { background:var(--dark); padding:48px 32px; text-align:center; }
.stat-number { font-family:var(--font-serif); font-size:clamp(2.5rem,5vw,4rem); font-weight:300; color:var(--orange); line-height:1; margin-bottom:8px; }
.stat-label { font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gray); font-weight:300; }

/* ============================================================
   ARTIST PAGE
============================================================ */
.artist-section { background: var(--dark); padding: 140px 48px; }
.artist-inner { max-width: 1200px; margin: 0 auto; }
.artist-portrait-wrap { text-align: center; margin-bottom: 80px; }
.artist-portrait {
  width: 280px; height: 280px; border-radius: 50%;
  margin: 0 auto 32px; border: 3px solid var(--orange);
  box-shadow: 0 0 0 8px rgba(232,71,26,0.1), 0 0 60px rgba(232,71,26,0.25);
  position: relative; overflow: hidden;
}
.artist-portrait img { width:100%; height:100%; object-fit:cover; object-position: top center; }
.artist-name {
  font-family: var(--font-serif); font-size: clamp(2.2rem,5vw,3.8rem);
  font-weight: 300; color: var(--warm-white);
}
.artist-subtitle { font-size:0.85rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); font-weight:300; margin-top:12px; }
.artist-bio { display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-bottom:80px; margin-top:48px; }
.artist-bio p { font-size:1rem; line-height:1.9; color:rgba(250,247,242,0.7); font-weight:300; margin-bottom:16px; }
.achievements-section { margin-bottom: 80px; }
.achievements-scroll { display:flex; gap:20px; overflow-x:auto; padding:8px 0 20px; scrollbar-width:thin; scrollbar-color:var(--orange) transparent; }
.achievement-card {
  flex-shrink:0; background:rgba(255,255,255,0.03); border:1px solid rgba(201,169,110,0.15);
  border-radius:4px; padding:32px 28px; min-width:240px;
  transition:border-color 0.3s, background 0.3s;
}
.achievement-card:hover { border-color:var(--orange); background:rgba(232,71,26,0.05); }
.achievement-icon { width:40px; height:40px; margin-bottom:16px; background:rgba(232,71,26,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.achievement-icon span { font-size:1.2rem; }
.achievement-title { font-family:var(--font-serif); font-size:1rem; font-weight:500; color:var(--warm-white); margin-bottom:8px; }
.achievement-desc { font-size:0.8rem; color:var(--gray); line-height:1.6; }
.artist-big-quote {
  text-align:center; background:rgba(255,255,255,0.02);
  border-top:1px solid rgba(201,169,110,0.1); border-bottom:1px solid rgba(201,169,110,0.1);
  padding:80px 48px;
}
.artist-big-quote blockquote { font-family:var(--font-serif); font-size:clamp(1.6rem,3.5vw,2.5rem); font-weight:300; font-style:italic; color:var(--warm-white); max-width:800px; margin:0 auto; line-height:1.5; }
.artist-big-quote blockquote em { color:var(--orange); font-style:normal; }
.artist-big-quote cite { display:block; margin-top:24px; font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); font-style:normal; font-family:var(--font-sans); }

/* ============================================================
   GALLERY PAGE
============================================================ */
.gallery-section { background: var(--dark-2); padding: 140px 48px; }
.gallery-page-inner { max-width: 1400px; margin: 0 auto; }
.filter-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:48px; justify-content:center; }
.filter-btn {
  padding:10px 24px; border:1px solid rgba(201,169,110,0.2); border-radius:24px;
  font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gray);
  background:transparent; transition:all 0.3s; cursor:none;
}
.filter-btn.active, .filter-btn:hover { border-color:var(--orange); color:var(--orange); background:rgba(232,71,26,0.08); }

.masonry-grid { columns:3; column-gap:12px; }
.masonry-item { break-inside:avoid; margin-bottom:12px; position:relative; overflow:hidden; border-radius:2px; cursor:none; transition:opacity 0.4s, transform 0.4s; }
.masonry-item.hidden { opacity:0; transform:scale(0.95); display:none; }
.masonry-item img { width:100%; height:auto; object-fit:cover; display:block; transition:transform 0.5s var(--ease-smooth); }
.masonry-item:hover img { transform:scale(1.04); }
.masonry-hover {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(232,71,26,0.9) 0%,transparent 60%);
  opacity:0; transition:opacity 0.4s; display:flex; flex-direction:column;
  justify-content:flex-end; padding:20px;
}
.masonry-item:hover .masonry-hover { opacity:1; }
.masonry-hover-title { font-family:var(--font-serif); font-size:1rem; color:white; font-weight:400; }
.masonry-hover-cat { font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.7); }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position:fixed; inset:0; background:rgba(0,0,0,0.95);
  z-index:9999; display:none; align-items:center; justify-content:center;
}
.lightbox.open { display:flex; }
.lightbox-img { max-width:90vw; max-height:90vh; border-radius:2px; animation:lightboxIn 0.4s var(--ease-smooth); object-fit:contain; }
@keyframes lightboxIn { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:scale(1)} }
.lightbox-close {
  position:absolute; top:24px; right:24px; width:48px; height:48px;
  border:1px solid rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:1.2rem; cursor:none;
  transition:border-color 0.3s, background 0.3s; background:transparent;
}
.lightbox-close:hover { border-color:var(--orange); background:rgba(232,71,26,0.2); }
.lightbox-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border:1px solid rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:white; font-size:1.1rem; cursor:none; transition:border-color 0.3s; background:transparent;
}
.lightbox-nav:hover { border-color:var(--orange); }
.lightbox-prev { left:24px; }
.lightbox-next { right:24px; }
.lightbox-counter { position:absolute; bottom:24px; left:50%; transform:translateX(-50%); font-size:0.75rem; letter-spacing:0.1em; color:rgba(255,255,255,0.5); }

/* ============================================================
   SERVICES PAGE
============================================================ */
.services-section { background: var(--warm-white); padding: 140px 0; }
.services-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.service-block {
  display:grid; grid-template-columns:1fr 1fr; gap:80px;
  align-items:center; margin-bottom:100px; padding-bottom:100px;
  border-bottom:1px solid rgba(140,130,120,0.2);
}
.service-block:last-child { border-bottom:none; margin-bottom:0; }
.service-block.reverse { direction:rtl; }
.service-block.reverse > * { direction:ltr; }
.service-img { width:100%; aspect-ratio:4/3; border-radius:4px; overflow:hidden; position:relative; }
.service-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s var(--ease-smooth); }
.service-block:hover .service-img img { transform:scale(1.04); }
.service-num {
  position:absolute; top:20px; left:20px; font-family:var(--font-serif);
  font-size:0.75rem; letter-spacing:0.15em; color:rgba(255,255,255,0.7);
  background:rgba(0,0,0,0.3); padding:4px 12px; border-radius:20px; backdrop-filter:blur(8px);
}
.service-label { font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--orange); font-weight:500; margin-bottom:12px; display:flex; align-items:center; gap:12px; }
.service-label::before { content:''; width:24px; height:1px; background:var(--orange); }
.service-title { font-family:var(--font-serif); font-size:clamp(1.8rem,3vw,2.5rem); font-weight:400; color:var(--dark); line-height:1.2; margin-bottom:20px; }
.service-desc { font-size:0.95rem; color:#5A4E44; line-height:1.9; margin-bottom:28px; font-weight:300; }
.service-tag { display:inline-block; background:rgba(232,71,26,0.08); border:1px solid rgba(232,71,26,0.2); color:var(--orange); font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; padding:6px 16px; border-radius:20px; margin-bottom:24px; }
.btn-service {
  display:inline-flex; align-items:center; gap:8px; padding:14px 32px;
  background:var(--dark); color:var(--warm-white); font-size:0.78rem;
  letter-spacing:0.12em; text-transform:uppercase; border-radius:2px;
  transition:background 0.3s, transform 0.2s;
}
.btn-service:hover { background:var(--orange); transform:translateX(4px); }
.btn-service::after { content:'→'; }

.journey-strip { background:var(--dark); padding:80px 48px; margin-top:0; }
.journey-strip-inner { max-width:1200px; margin:0 auto; }
.journey-steps { display:flex; align-items:flex-start; gap:0; margin-top:48px; position:relative; }
.journey-steps::before { content:''; position:absolute; top:20px; left:20px; right:20px; height:1px; background:rgba(201,169,110,0.2); z-index:0; }
.journey-step { flex:1; text-align:center; position:relative; z-index:1; padding:0 16px; }
.step-dot { width:40px; height:40px; background:var(--dark); border:2px solid var(--orange); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:0.75rem; color:var(--orange); font-weight:500; font-family:var(--font-serif); }
.step-title { font-family:var(--font-serif); font-size:0.95rem; color:var(--warm-white); margin-bottom:8px; font-weight:400; }
.step-desc { font-size:0.75rem; color:var(--gray); line-height:1.6; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--cream); padding: 140px 48px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin:72px 0; }
.testimonial-card {
  background:white; padding:40px 32px; border-radius:4px;
  box-shadow:0 4px 24px rgba(0,0,0,0.06); border-bottom:3px solid transparent;
  transition:transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform:translateY(-8px); box-shadow:0 20px 48px rgba(0,0,0,0.12); border-bottom-color:var(--orange); }
.testimonial-stars { display:flex; gap:4px; margin-bottom:20px; }
.star { color:var(--gold); font-size:0.9rem; }
.testimonial-quote { font-family:var(--font-serif); font-size:1.05rem; font-style:italic; color:var(--dark); line-height:1.7; margin-bottom:24px; font-weight:400; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.author-avatar { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,var(--orange),var(--gold)); display:flex; align-items:center; justify-content:center; color:white; font-size:1rem; font-weight:600; font-family:var(--font-serif); flex-shrink:0; }
.author-name { font-size:0.85rem; font-weight:500; color:var(--dark); }
.author-type { font-size:0.75rem; color:var(--gray); }
.featured-testimonial {
  background:var(--dark); padding:80px 80px; text-align:center; border-radius:4px; position:relative; overflow:hidden;
}
.featured-testimonial::before { content:'"'; position:absolute; top:-20px; left:40px; font-family:var(--font-serif); font-size:20rem; font-weight:300; color:rgba(232,71,26,0.08); line-height:1; pointer-events:none; }
.featured-quote { font-family:var(--font-serif); font-size:clamp(1.4rem,2.5vw,2rem); font-style:italic; font-weight:300; color:var(--warm-white); line-height:1.6; max-width:800px; margin:0 auto 32px; position:relative; z-index:1; }
.featured-quote em { color:var(--gold); font-style:normal; }
.featured-author { font-size:0.75rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--orange); position:relative; z-index:1; }

/* ============================================================
   CONTACT
============================================================ */
.contact-section { background: var(--dark); padding: 140px 48px; }
.contact-inner { max-width: 1200px; margin: 0 auto; }
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; }
.contact-info h2 { font-family:var(--font-serif); font-size:clamp(2rem,4vw,3rem); font-weight:300; color:var(--warm-white); line-height:1.2; margin-bottom:32px; }
.contact-info h2 em { color:var(--orange); }
.contact-detail { display:flex; align-items:flex-start; gap:16px; margin-bottom:24px; }
.contact-icon { width:40px; height:40px; background:rgba(232,71,26,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1rem; }
.contact-label { font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-bottom:4px; }
.contact-value { font-size:0.95rem; color:var(--warm-white); font-weight:300; line-height:1.6; }
.whatsapp-btn {
  display:inline-flex; align-items:center; gap:10px; padding:16px 32px;
  background:#25D366; color:white; font-size:0.85rem; letter-spacing:0.08em;
  text-transform:uppercase; border-radius:4px; font-weight:500; margin-bottom:32px;
  transition:background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.whatsapp-btn:hover { background:#1da851; transform:scale(1.03); box-shadow:0 12px 32px rgba(37,211,102,0.3); }
.social-links { display:flex; gap:12px; margin-top:32px; }
.social-link { width:44px; height:44px; border:1px solid rgba(250,247,242,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; transition:border-color 0.3s, background 0.3s, color 0.3s; color:var(--gray); }
.social-link:hover { border-color:var(--orange); background:rgba(232,71,26,0.1); color:var(--orange); }
.map-placeholder { width:100%; height:200px; background:linear-gradient(135deg,#2A2015,#3A3020); border-radius:4px; margin-top:32px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(201,169,110,0.15); position:relative; overflow:hidden; }
.map-placeholder::before { content:'📍 Hyderabad, India'; font-size:0.85rem; color:var(--gold); letter-spacing:0.05em; }
.contact-form h3 { font-family:var(--font-serif); font-size:1.8rem; font-weight:300; color:var(--warm-white); margin-bottom:32px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gray); margin-bottom:8px; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:14px 16px; background:rgba(255,255,255,0.04);
  border:1px solid rgba(250,247,242,0.1); border-radius:2px;
  color:var(--warm-white); font-family:var(--font-sans); font-size:0.9rem;
  font-weight:300; transition:border-color 0.3s, box-shadow 0.3s; outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(232,71,26,0.1); }
.form-group select option { background:var(--dark-2); }
.form-group textarea { resize:vertical; min-height:120px; }
.btn-submit {
  width:100%; padding:18px; background:var(--orange); color:white;
  font-size:0.8rem; letter-spacing:0.15em; text-transform:uppercase;
  border-radius:2px; font-weight:500; transition:background 0.3s, transform 0.2s, box-shadow 0.3s;
  border:none; cursor:none;
}
.btn-submit:hover { background:var(--orange-dark); transform:scale(1.02); box-shadow:0 12px 32px rgba(232,71,26,0.4); }

/* ============================================================
   BOOKING CTA
============================================================ */
.booking-cta {
  background:linear-gradient(135deg,var(--dark-2),#1A0E06);
  padding:100px 48px; text-align:center;
  border-top:1px solid rgba(232,71,26,0.2);
}
.booking-cta h2 { font-family:var(--font-serif); font-size:clamp(2rem,4vw,3.5rem); font-weight:300; color:var(--warm-white); line-height:1.3; margin-bottom:16px; }
.booking-cta h2 em { color:var(--orange); font-style:italic; }
.booking-cta p { font-size:1rem; color:var(--gray); margin-bottom:40px; font-weight:300; }
.btn-booking {
  display:inline-block; padding:20px 56px; background:var(--orange); color:white;
  font-size:0.9rem; letter-spacing:0.12em; text-transform:uppercase; border-radius:2px;
  font-weight:500; transition:background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-booking:hover { background:var(--orange-dark); transform:scale(1.05); box-shadow:0 16px 48px rgba(232,71,26,0.5); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--dark-2); padding: 72px 48px 32px;
  border-top: 1px solid rgba(232,71,26,0.2);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:64px; }
.footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-logo img { height:44px; width:auto; object-fit:contain; }
.footer-tagline { font-family:var(--font-serif); font-size:1rem; font-style:italic; color:var(--gold); margin-bottom:16px; }
.footer-brand p { font-size:0.85rem; color:var(--gray); line-height:1.8; font-weight:300; max-width:280px; }
.footer-col h4 { font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--warm-white); margin-bottom:20px; font-weight:500; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul a { font-size:0.85rem; color:var(--gray); font-weight:300; transition:color 0.3s; }
.footer-col ul a:hover { color:var(--orange); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; border-top:1px solid rgba(140,130,120,0.15); padding-top:32px; }
.footer-copy { font-size:0.8rem; color:var(--gray); font-weight:300; }
.footer-legal { display:flex; gap:24px; }
.footer-legal a { font-size:0.75rem; color:var(--gray); font-weight:300; transition:color 0.3s; }
.footer-legal a:hover { color:var(--orange); }

/* ============================================================
   PRIVACY PAGE
============================================================ */
.privacy-section { background: var(--warm-white); padding: 140px 48px; min-height: 100vh; }
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h1 { font-family:var(--font-serif); font-size:2.5rem; font-weight:300; color:var(--dark); margin-bottom:8px; }
.privacy-date { font-size:0.8rem; color:var(--gray); margin-bottom:48px; }
.privacy-content h2 { font-family:var(--font-serif); font-size:1.4rem; font-weight:400; color:var(--dark); margin:36px 0 12px; }
.privacy-content p { font-size:0.95rem; color:#4A3F35; line-height:1.9; margin-bottom:16px; font-weight:300; }

/* ============================================================
   HERO (index)
============================================================ */
#home { min-height:100vh; position:relative; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align: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 30%; }
.hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(17,17,17,0.6) 0%, rgba(17,17,17,0.75) 60%, rgba(17,17,17,0.9) 100%); }
#bokeh-canvas { position:absolute; inset:0; z-index:1; opacity:0.4; pointer-events:none; }
.hero-content { position:relative; z-index:5; max-width:900px; padding:0 24px; }
.hero-logo-wrap { margin:0 auto 48px; width:90px; height:90px; opacity:0; transform:translateY(-30px); animation:heroLogoIn 1.2s var(--ease-smooth) 0.3s forwards; }
.hero-logo-wrap img { width:90px; height:90px; object-fit:contain; filter:drop-shadow(0 0 30px rgba(232,71,26,0.4)); }
@keyframes heroLogoIn { to { opacity:1; transform:translateY(0); } }
.hero-headline { font-family:var(--font-serif); font-size:clamp(2.4rem,6vw,5rem); font-weight:300; line-height:1.15; color:var(--warm-white); letter-spacing:0.01em; margin-bottom:24px; }
.hero-headline .word { display:inline-block; opacity:0; transform:translateY(30px); animation:wordIn 0.7s var(--ease-smooth) forwards; }
@keyframes wordIn { to { opacity:1; transform:translateY(0); } }
.hero-headline .hl { color:var(--orange); font-style:italic; }
.hero-sub { font-size:clamp(0.95rem,2vw,1.15rem); color:rgba(250,247,242,0.6); font-weight:300; line-height:1.8; max-width:580px; margin:0 auto 48px; opacity:0; animation:fadeUp 0.8s var(--ease-smooth) 1.8s forwards; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; opacity:0; animation:fadeUp 0.8s var(--ease-smooth) 2.1s forwards; }
.hero-scroll-cue { position:absolute; bottom:40px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; opacity:0; animation:fadeUp 0.8s ease 2.5s forwards; z-index:5; }
.hero-scroll-cue span { font-size:0.65rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gray); font-weight:300; }
.scroll-arrow { width:20px; height:32px; border:1px solid rgba(140,130,120,0.4); border-radius:20px; position:relative; }
.scroll-arrow::after { content:''; width:4px; height:8px; background:var(--orange); border-radius:4px; position:absolute; top:6px; left:50%; transform:translateX(-50%); animation:scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100%{top:6px;opacity:1} 50%{top:14px;opacity:0.3} }

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns:1fr 1fr; }
  .legacy-layout { grid-template-columns:1fr; gap:48px; }
  .stats-row { grid-template-columns:repeat(2,1fr); }
  .artist-bio { grid-template-columns:1fr; gap:0; }
  .service-block { grid-template-columns:1fr; }
  .service-block.reverse { direction:ltr; }
  .testimonials-grid { grid-template-columns:1fr 1fr; }
  .contact-layout { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .journey-steps { flex-direction:column; }
  .journey-steps::before { display:none; }
  .masonry-grid { columns:2; }
}

@media (max-width: 768px) {
  nav { padding:20px 24px; }
  nav.scrolled { padding:14px 24px; }
  .nav-links { display:none; }
  .nav-cta-desktop { display:none; }
  .hamburger { display:flex; }
  body { cursor:auto; }
  .cursor-dot, .cursor-ring { display:none; }
  button { cursor:pointer; }
  a { cursor:pointer; }
  .filter-btn { cursor:pointer; }

  section { padding:80px 24px !important; }
  .intro-statement { padding:80px 24px !important; }
  .gallery-teaser { padding:80px 24px !important; }
  .gallery-section, .services-section, .testimonials-section, .contact-section { padding:80px 24px !important; }
  .legacy-section, .artist-section { padding:80px 24px !important; }
  .services-inner { padding:0 !important; }
  footer { padding:60px 24px 24px; }

  .cards-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:unset; }
  .gallery-item { grid-column:auto !important; grid-row:auto !important; height:200px; }
  .masonry-grid { columns:1; }
  .testimonials-grid { grid-template-columns:1fr; }
  .stats-row { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:16px; text-align:center; }
  .form-row { grid-template-columns:1fr; }
  .featured-testimonial { padding:48px 32px; }
  .hero-btns { flex-direction:column; align-items:center; }
  .btn-primary, .btn-outline { width:100%; max-width:280px; text-align:center; }
  .booking-cta { padding:80px 24px; }
  .journey-strip { padding:60px 24px !important; }
  .artist-big-quote { padding:48px 24px; }
  .artist-bio { margin-top:32px; }
}
