/* ============================================================
   MIHIRA STUDIOS — CINEMATIC EDITORIAL STYLESHEET v2.0
   "Luxury editorial photography magazine meets warm Indian 
    heritage studio"
   ============================================================ */

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

/* ---- Design Tokens ---- */
:root {
  --color-ink:        #0D0A08;
  --color-ember:      #C94A1A;
  --color-ember-light:#E8510A;
  --color-gold:       #C9A96E;
  --color-gold-light: #E8C98A;
  --color-cream:      #F7F2EC;
  --color-warm-grey:  #8A7D74;
  --color-charcoal:   #1C1816;
  --color-paper:      #EDE6DB;
  --color-light-ember:#FFF3EE;
  --color-white:      #FFFFFF;

  --grad-hero:  linear-gradient(135deg, #0D0A08 0%, #1C1816 50%, #2A1510 100%);
  --grad-ember: linear-gradient(135deg, #C94A1A 0%, #E8510A 100%);
  --grad-gold:  linear-gradient(135deg, #C9A96E 0%, #E8C98A 100%);

  --text-xs:   clamp(0.75rem, 1.5vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 2vw, 1rem);
  --text-base: clamp(1rem, 2.5vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 3vw, 1.35rem);
  --text-xl:   clamp(1.5rem, 4vw, 2rem);
  --text-2xl:  clamp(2rem, 6vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 8vw, 5rem);
  --text-hero: clamp(3rem, 10vw, 7.5rem);

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --nav-h: 80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--color-cream);
  color: var(--color-ink);
  overflow-x: hidden;
  cursor: none;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Custom Cursor ---- */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--color-ember);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.1s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--color-ember);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  z-index: 9998;
  pointer-events: none;
  opacity: 0.5;
  transition: width 0.25s, height 0.25s, opacity 0.25s;
}
.cursor-ring.grow { width: 50px; height: 50px; opacity: 0.2; }
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ---- Page Loader ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--color-ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 110px;
  filter: brightness(0) invert(1);
  animation: loaderIn 1.2s var(--ease-smooth) both;
}
.loader-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  margin-top: 18px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease both;
}
@keyframes loaderIn {
  from { opacity: 0; transform: scale(0.75); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 900;
  transition: all 0.4s ease;
}
#navbar.nav-transparent { background: transparent; }
#navbar.nav-scrolled {
  background: rgba(13, 10, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 74, 26, 0.2);
  height: 68px;
}
.nav-logo img {
  height: 50px; width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.3s;
}
#navbar.nav-scrolled .nav-logo img { height: 42px; }
.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 38px;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--color-ember);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--color-ember) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #a33c14 !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  z-index: 901;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: #fff;
  transition: all 0.35s ease;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Full-Screen Overlay Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--color-ink);
  z-index: 899;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-nav-links { list-style: none; text-align: center; }
.mobile-nav-links li { overflow: hidden; }
.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 10px 0;
  transform: translateY(100%);
  transition: color 0.3s, transform 0.5s var(--ease-smooth);
}
.mobile-menu.open .mobile-nav-links a {
  transform: translateY(0);
}
.mobile-menu.open .mobile-nav-links li:nth-child(1) a { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav-links li:nth-child(2) a { transition-delay: 0.10s; }
.mobile-menu.open .mobile-nav-links li:nth-child(3) a { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-links li:nth-child(4) a { transition-delay: 0.20s; }
.mobile-menu.open .mobile-nav-links li:nth-child(5) a { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-links li:nth-child(6) a { transition-delay: 0.30s; }
.mobile-nav-links a:hover { color: var(--color-ember); }
.mobile-menu-footer {
  position: absolute; bottom: 40px;
  display: flex; gap: 24px;
}
.mobile-menu-footer a {
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
  transition: color 0.3s;
}
.mobile-menu-footer a:hover { color: var(--color-ember); }

/* ================================================================
   SHARED SECTION UTILITIES
   ================================================================ */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-ember);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--color-ember);
  flex-shrink: 0;
}
.section-label.center { justify-content: center; }
.section-label.center::before, .section-label.center::after {
  content: ''; width: 28px; height: 1px;
  background: var(--color-ember);
}

.h1, .section-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.15;
}
.h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.2;
}

.body-text {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-warm-grey);
}

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-ember);
  line-height: 1.6;
}

.divider-ornament {
  text-align: center;
  color: var(--color-ember);
  opacity: 0.5;
  letter-spacing: 0.5em;
  font-size: 0.8rem;
  margin: 28px 0;
}

.gold-line {
  width: 60px; height: 1px;
  background: var(--color-gold);
  margin: 20px auto;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-ember);
  color: #fff;
  padding: 15px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--color-ember);
  border-radius: 0;
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--color-ink);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(201,74,26,0.3); transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg, .btn-primary i { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 0;
  transition: all 0.3s ease;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline.dark { color: var(--color-ink); border-color: rgba(13,10,8,0.35); }
.btn-outline.dark:hover { background: var(--color-ink); color: #fff; border-color: var(--color-ink); }

.text-link {
  font-family: 'Jost', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-ember);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.05em;
  transition: gap 0.3s;
}
.text-link:hover { gap: 14px; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal.from-left { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.from-left.visible, .reveal.from-right.visible { transform: translateX(0); }

/* ---- Photo hover system ---- */
.photo-wrap {
  position: relative; overflow: hidden;
}
.photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.photo-wrap:hover img { transform: scale(1.04); }
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,10,8,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 24px;
}
.photo-wrap:hover .photo-overlay { opacity: 1; }
.photo-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  border-bottom: 1px solid var(--color-ember);
  padding-bottom: 3px;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 80px 6% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(201,74,26,0.2);
  margin-bottom: 28px;
}
.footer-logo img {
  height: 64px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  margin-bottom: 26px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  border-radius: 0;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--color-ember); color: var(--color-ember); background: rgba(201,74,26,0.08); }
.footer-col-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-ember);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.42);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-row i { color: var(--color-ember); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row span { font-size: 0.86rem; color: rgba(255,255,255,0.42); line-height: 1.6; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--color-ember); }

/* ================================================================
   FLOATING ELEMENTS
   ================================================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  z-index: 800;
  animation: pulseRing 2s infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.12); }
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.back-top {
  position: fixed; bottom: 96px; right: 28px;
  width: 42px; height: 42px;
  background: var(--color-ember);
  color: #fff; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 800;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: #a33c14; }

/* Cookie banner */
#cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--color-charcoal);
  border-top: 2px solid var(--color-ember);
  padding: 18px 6%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  z-index: 700;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
#cookie-bar.show { transform: translateY(0); }
#cookie-bar p { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
#cookie-bar a { color: var(--color-ember); }
.cookie-accept {
  background: var(--color-ember); color: #fff;
  padding: 9px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.3s;
}
.cookie-accept:hover { background: #a33c14; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(13,10,8,0.97);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
}
#lightbox.open { opacity: 1; visibility: visible; }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
#lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lb-close {
  position: absolute; top: -48px; right: 0;
  color: rgba(255,255,255,0.6); font-size: 1.8rem;
  transition: color 0.3s; cursor: pointer;
}
.lb-close:hover { color: var(--color-ember); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.lb-nav:hover { background: var(--color-ember); }
.lb-prev { left: -68px; }
.lb-next { right: -68px; }
.lb-caption {
  text-align: center; margin-top: 16px;
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}

/* ================================================================
   HOME — HERO
   ================================================================ */
.hero {
  height: 100svh; min-height: 600px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation-duration: 5s; animation-timing-function: ease;
  animation-fill-mode: both;
}
.hero-slide.active {
  opacity: 1;
  animation-name: kenBurns;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, -1%); }
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,10,8,0.55);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 1000px;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.3s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-hero);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.6s ease both;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.55); }
.hero-gold-line {
  width: 60px; height: 1px;
  background: var(--color-gold);
  margin: 0 auto 26px;
  opacity: 0; animation: fadeUp 0.8s 0.9s ease both;
}
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  margin-bottom: 42px;
  opacity: 0; animation: fadeUp 0.8s 1.1s ease both;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 1.3s ease both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 0.8; }
}
.hero-vertical-text {
  position: absolute; left: 36px; bottom: 48px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  z-index: 2;
}
.hero-counter {
  position: absolute; right: 36px; bottom: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  z-index: 2;
  letter-spacing: 0.1em;
}

/* ================================================================
   HOME — BRAND PILLARS
   ================================================================ */
.pillars {
  background: var(--color-charcoal);
  padding: 100px 6%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 60px 48px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: transform 0.4s ease;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--color-ember);
  transition: width 0.5s ease;
}
.pillar:hover { transform: translateY(-8px); }
.pillar:hover::before { width: 100%; }
.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-ember);
  line-height: 1;
  margin-bottom: 6px;
}
.pillar-rule { width: 40px; height: 1px; background: rgba(255,255,255,0.12); margin: 20px 0; }
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}
.pillar p { font-size: 0.88rem; color: rgba(255,255,255,0.35); line-height: 1.8; }

/* ================================================================
   HOME — WHY SECTION
   ================================================================ */
.why-section {
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 700px;
}
.why-photo {
  position: relative; overflow: hidden;
}
.why-photo-inner {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  transition: transform 0.1s linear;
}
.why-content {
  background: var(--color-cream);
  padding: 100px 70px 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.why-content::after {
  content: 'M';
  position: absolute;
  bottom: -30px; right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28rem;
  color: var(--color-ember);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
}
.why-content .h2 { color: var(--color-ink); margin-bottom: 20px; }
.why-content .body-text { margin-bottom: 18px; }
.why-content blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-ember);
  border-left: 3px solid var(--color-ember);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.7;
}

/* ================================================================
   HOME — GALLERY PREVIEW
   ================================================================ */
.gallery-preview {
  padding: 100px 6%;
  background: var(--color-paper);
}
.gp-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap; gap: 20px;
}
.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 10px;
  margin-bottom: 50px;
}
.gallery-grid-preview .photo-wrap:nth-child(1) { grid-row: span 2; }
.gallery-grid-preview .photo-wrap:nth-child(4) { grid-column: span 2; }
.gallery-grid-preview .photo-wrap { height: 100%; }

/* ================================================================
   HOME — STATS COUNTER BAR
   ================================================================ */
.stats-bar {
  background: var(--grad-ember);
  padding: 72px 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.65);
}

/* ================================================================
   HOME — MEET THE ARTIST PREVIEW
   ================================================================ */
.artist-preview {
  background: var(--color-cream);
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 80px;
  align-items: center;
}
.artist-photo {
  position: relative;
}
.artist-photo img {
  width: 100%; height: 600px;
  object-fit: cover; object-position: top;
  display: block;
}
.artist-photo-frame {
  position: absolute; inset: 0;
  border-left: 4px solid var(--color-ember);
  pointer-events: none;
}
.artist-photo-caption {
  margin-top: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-warm-grey);
}
.artist-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0;
}
.artist-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: var(--color-light-ember);
  border: 1px solid rgba(201,74,26,0.18);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-ember);
  letter-spacing: 0.05em;
}
.artist-blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-ink);
  border-left: 3px solid var(--color-gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.75;
}
.artist-blockquote cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-warm-grey);
  margin-top: 10px;
}

/* ================================================================
   HOME — TESTIMONIALS
   ================================================================ */
.testimonials {
  background: var(--color-charcoal);
  padding: 100px 6%;
  text-align: center;
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28rem;
  color: var(--color-ember);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}
.t-item { display: none; }
.t-item.active { display: block; }
.t-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  max-width: 780px;
  margin: 40px auto 28px;
  line-height: 1.75;
}
.t-author {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-ember);
}
.t-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 44px;
}
.t-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer;
  transition: all 0.3s;
}
.t-btn:hover { border-color: var(--color-ember); color: var(--color-ember); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer; transition: all 0.3s;
}
.t-dot.active { background: var(--color-ember); }

/* ================================================================
   HOME — CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative; overflow: hidden;
  padding: 130px 6%;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.22);
}
.cta-content { position: relative; z-index: 2; }
.cta-line { width: 40px; height: 1px; background: var(--color-gold); margin: 0 auto 30px; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: #fff; line-height: 1.25;
  max-width: 700px; margin: 0 auto 20px;
}
.cta-sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}
.cta-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ================================================================
   PAGE HERO (Shared)
   ================================================================ */
.page-hero {
  position: relative; overflow: hidden;
}
.page-hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.page-hero-img {
  position: relative; overflow: hidden;
}
.page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.page-hero-dark {
  background: var(--color-charcoal);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 70px;
  position: relative; overflow: hidden;
}
.page-hero-thin {
  min-height: 42vh;
  background: var(--color-ink);
  display: flex; align-items: center;
  padding: 0 6%;
  padding-top: var(--nav-h);
}
.page-hero-thin-content { padding: 40px 0; }
.page-hero-thin h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-3xl);
  font-weight: 400; color: #fff; line-height: 1.1;
}
.page-hero-thin p {
  font-family: 'Jost', sans-serif;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

/* ================================================================
   ABOUT — MIHIRA NAME
   ================================================================ */
.mihira-name-section {
  background: var(--color-cream);
  padding: 110px 6%;
  text-align: center;
  position: relative; overflow: hidden;
}
.mihira-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28rem;
  color: var(--color-ember);
  opacity: 0.025;
  white-space: nowrap;
  pointer-events: none; line-height: 1;
}
.mihira-name-section .h2 { color: var(--color-ink); position: relative; }
.mihira-name-section .body-text { max-width: 640px; margin: 20px auto; position: relative; }

/* ================================================================
   ABOUT — TIMELINE
   ================================================================ */
.timeline-section {
  padding: 100px 6%;
  background: white;
}
.timeline-container { max-width: 900px; margin: 0 auto; margin-top: 60px; }
.timeline-item {
  display: grid; grid-template-columns: 1fr 50px 1fr;
  gap: 20px; margin-bottom: 50px;
  align-items: start;
}
.timeline-item:nth-child(even) .tl-left { grid-column: 3; order: 3; }
.timeline-item:nth-child(even) .tl-center { grid-column: 2; order: 2; }
.timeline-item:nth-child(even) .tl-right { grid-column: 1; order: 1; }
.tl-center { display: flex; flex-direction: column; align-items: center; gap: 0; }
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-ember); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201,74,26,0.15);
}
.tl-line {
  width: 2px; flex: 1; min-height: 50px;
  background: linear-gradient(to bottom, var(--color-ember), rgba(201,74,26,0.1));
}
.tl-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--color-ember);
  line-height: 1;
  margin-bottom: 6px;
}
.tl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--color-ink); margin-bottom: 6px;
}
.tl-desc { font-size: 0.87rem; color: var(--color-warm-grey); line-height: 1.7; }

/* Awards strip */
.awards-strip {
  background: var(--color-ink);
  padding: 70px 6%;
}
.awards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 50px;
}
.award-card {
  border: 1px solid rgba(201,74,26,0.18);
  padding: 30px 24px;
  transition: all 0.4s;
}
.award-card:hover { border-color: var(--color-ember); background: rgba(201,74,26,0.05); }
.award-icon { font-size: 1.6rem; margin-bottom: 14px; }
.award-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 6px;
}
.award-card p { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.6; }

/* ================================================================
   GALLERY PAGE
   ================================================================ */
.gallery-filter-bar {
  background: var(--color-cream);
  padding: 30px 6%;
  position: sticky; top: 68px; z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
}
.filter-btn {
  padding: 9px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  border: 1px solid rgba(28,24,22,0.18);
  color: var(--color-ink);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--color-ember); color: var(--color-ember); }
.filter-btn.active { background: var(--color-ember); border-color: var(--color-ember); color: #fff; }

.gallery-masonry-section { padding: 40px 6% 80px; background: var(--color-cream); }
.masonry-grid {
  columns: 3;
  column-gap: 12px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.masonry-item.hidden { display: none; }
.masonry-item .photo-wrap { border-bottom: 2px solid transparent; transition: border-color 0.3s; }
.masonry-item:hover .photo-wrap { border-color: var(--color-ember); }
.masonry-item img { width: 100%; display: block; }

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.service-featured {
  background: var(--grad-ember);
  padding: 90px 6%;
}
.service-featured-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.service-featured-photo img { width: 100%; height: 500px; object-fit: cover; }
.service-featured-content h2 { color: #fff; margin-bottom: 16px; }
.service-check-list { list-style: none; margin: 28px 0; }
.service-check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem; color: rgba(255,255,255,0.8);
}
.service-check-list li:last-child { border-bottom: none; }
.check-icon { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }

.services-other-grid {
  padding: 90px 6%;
  background: var(--color-charcoal);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.s-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid transparent;
  padding: 44px 30px;
  position: relative; overflow: hidden;
  transition: all 0.4s;
}
.s-card:hover { border-top-color: var(--color-ember); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(201,74,26,0.12); }
.s-card-num {
  position: absolute; top: 16px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 700;
  color: rgba(255,255,255,0.03); line-height: 1;
}
.s-card-icon { font-size: 2rem; margin-bottom: 20px; }
.s-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: rgba(255,255,255,0.85); margin-bottom: 12px;
}
.s-card p { font-size: 0.87rem; color: rgba(255,255,255,0.35); line-height: 1.75; margin-bottom: 24px; }

/* Steps */
.steps-section { padding: 100px 6%; background: var(--color-cream); }
.steps-row {
  display: flex; align-items: flex-start; gap: 0;
  position: relative; margin-top: 60px;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 40px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--color-ember) 0, var(--color-ember) 8px, transparent 8px, transparent 16px);
  opacity: 0.4;
}
.step-item {
  flex: 1; text-align: center; padding: 0 20px;
  position: relative;
}
.step-num {
  width: 80px; height: 80px;
  background: var(--color-ink);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  border: 3px solid var(--color-cream);
  transition: all 0.4s;
}
.step-item:hover .step-num { background: var(--color-ember); transform: scale(1.1); }
.step-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--color-ink); margin-bottom: 8px; }
.step-item p { font-size: 0.83rem; color: var(--color-warm-grey); line-height: 1.7; }

/* Addons */
.addons-section { padding: 70px 6%; background: var(--color-paper); }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.addon-card {
  background: var(--color-cream);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
}
.addon-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: var(--color-ember); }
.addon-icon { font-size: 2rem; margin-bottom: 16px; }
.addon-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--color-ink); margin-bottom: 10px; }
.addon-card p { font-size: 0.83rem; color: var(--color-warm-grey); line-height: 1.7; margin-bottom: 18px; }

/* ================================================================
   PORTFOLIO PAGE
   ================================================================ */
.portfolio-cards {
  padding: 90px 6%;
  background: var(--color-cream);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.p-card { position: relative; overflow: hidden; }
.p-card img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.7s ease; display: block; }
.p-card:hover img { transform: scale(1.05); }
.p-card-info {
  background: var(--color-charcoal);
  padding: 28px 30px;
}
.p-card-family {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: rgba(255,255,255,0.85); margin-bottom: 4px;
}
.p-card-session {
  font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--color-ember); margin-bottom: 14px;
}
.p-card-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.92rem; color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ================================================================
   PORTFOLIO — INSTAGRAM STRIP
   ================================================================ */
.insta-section { padding: 80px 6%; background: var(--color-ink); text-align: center; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px; margin: 50px 0 36px;
}
.insta-item { aspect-ratio: 1; position: relative; overflow: hidden; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(201,74,26,0.82);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  opacity: 0; transition: opacity 0.35s;
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-hero { background: var(--grad-ember); padding: 120px 6% 80px; text-align: center; }
.contact-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: var(--text-2xl); font-weight: 300; color: #fff; }
.contact-hero p { font-size: var(--text-sm); color: rgba(255,255,255,0.6); margin-top: 12px; }

.contact-main {
  padding: 90px 6%;
  background: var(--color-cream);
  display: grid; grid-template-columns: 55fr 45fr; gap: 90px;
}
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--color-ink); margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 12px 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem; font-weight: 300;
  color: var(--color-ink);
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-ember);
}
.form-group textarea { height: 110px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-field-error { border-bottom-color: #e53e3e !important; }
.form-error-msg { font-size: 0.72rem; color: #e53e3e; margin-top: 5px; }
.form-success-msg {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  color: #16a34a;
  padding: 14px 18px;
  font-size: 0.88rem;
  margin-top: 16px;
  display: none;
}

.studio-info-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--color-ink); margin-bottom: 6px; }
.studio-divider { width: 40px; height: 2px; background: var(--color-ember); margin: 16px 0 28px; }
.contact-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-icon-wrap {
  width: 38px; height: 38px;
  background: var(--color-light-ember);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-ember); font-size: 0.9rem; flex-shrink: 0;
}
.contact-row h4 { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-ink); margin-bottom: 3px; }
.contact-row p { font-size: 0.88rem; color: var(--color-warm-grey); line-height: 1.6; }
.one-family-note {
  border-left: 3px solid var(--color-ember);
  background: var(--color-light-ember);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.88rem; color: var(--color-ink); line-height: 1.65;
}
.wa-green-btn {
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff;
  padding: 16px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  width: 100%; justify-content: center;
  transition: all 0.3s; margin-top: 20px;
}
.wa-green-btn:hover { background: #1eb559; transform: translateY(-2px); }
.wa-green-btn i { font-size: 1.3rem; }
.map-placeholder {
  background: var(--color-paper);
  border: 1px solid rgba(0,0,0,0.07);
  height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--color-warm-grey); font-size: 0.85rem;
}
.map-placeholder i { font-size: 2rem; color: var(--color-ember); }
.map-placeholder a { color: var(--color-ember); font-size: 0.82rem; font-weight: 600; }

/* FAQ */
.faq-section { padding: 90px 6%; background: var(--color-paper); }
.faq-list { max-width: 860px; margin: 50px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--color-ink);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--color-ember); }
.faq-question.active { color: var(--color-ember); }
.faq-icon { font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.92rem; color: var(--color-warm-grey); line-height: 1.85; }

/* ================================================================
   PRIVACY PAGE
   ================================================================ */
.privacy-hero {
  background: var(--color-ink);
  padding: 120px 6% 70px;
  text-align: center;
}
.privacy-content-wrap {
  max-width: 820px; margin: 0 auto;
  padding: 80px 6%;
}
.privacy-content-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--color-ink);
  margin: 48px 0 14px;
  display: flex; align-items: center; gap: 12px;
}
.privacy-content-wrap h2 span {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  color: var(--color-ember);
  min-width: 28px;
}
.privacy-content-wrap p { font-size: 0.92rem; color: var(--color-warm-grey); line-height: 1.9; margin-bottom: 14px; }
.privacy-content-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.privacy-content-wrap ul li { font-size: 0.92rem; color: var(--color-warm-grey); line-height: 1.8; margin-bottom: 6px; }
.privacy-updated { font-size: 0.78rem; color: var(--color-warm-grey); border-top: 1px solid rgba(0,0,0,0.08); padding-top: 20px; margin-top: 40px; }

/* ================================================================
   404 PAGE
   ================================================================ */
.page-404 {
  min-height: 100vh;
  background: var(--color-ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px;
}
.error-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: var(--color-ember);
  opacity: 0.15;
  line-height: 1; margin-bottom: -30px;
}
.page-404 h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem,5vw,2.5rem); color: #fff; margin-bottom: 14px; }
.page-404 p { font-size: var(--text-sm); color: rgba(255,255,255,0.35); max-width: 480px; margin-bottom: 40px; }
.page-404-logo { width: 80px; filter: brightness(0) invert(1); margin-bottom: 40px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .artist-preview { grid-template-columns: 1fr; gap: 40px; }
  .artist-photo img { height: 450px; }
  .timeline-item { grid-template-columns: 1fr 40px; }
  .timeline-item .tl-left { display: none; }
  .timeline-item:nth-child(even) .tl-left { display: none; }
  .timeline-item:nth-child(even) .tl-right { grid-column: 1; order: 1; }
  .timeline-item:nth-child(even) .tl-center { grid-column: 2; order: 2; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-section { grid-template-columns: 1fr; }
  .why-photo { height: 400px; }
  .gallery-grid-preview { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid-preview .photo-wrap:nth-child(1) { grid-row: auto; }
  .gallery-grid-preview .photo-wrap:nth-child(4) { grid-column: auto; }
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-img { height: 350px; }
  .page-hero-dark { padding: 60px 40px; }
  .service-featured-inner { grid-template-columns: 1fr; }
  .service-featured-photo img { height: 350px; }
  .services-other-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-main { grid-template-columns: 1fr; gap: 60px; }
  .steps-row { flex-direction: column; align-items: center; gap: 30px; }
  .steps-row::before { display: none; }
  .masonry-grid { columns: 2; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .masonry-grid { columns: 1; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border: none; padding: 16px; }
  .gallery-grid-preview { grid-template-columns: 1fr; grid-template-rows: auto; }
  .services-other-grid { grid-template-columns: 1fr; padding: 60px 6%; }
  .awards-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-vertical-text, .hero-counter { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .lb-prev { left: -50px; }
  .lb-next { right: -50px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}
