/* ============================================
   Anil Maharaj — Modern Classical Redesign
   ============================================ */
:root {
  --bg: #0a0806;
  --bg-soft: #14100b;
  --bg-card: rgba(20, 16, 11, 0.72);
  --gold: #d4af37;
  --gold-light: #eacf85;
  --gold-deep: #a8842c;
  --cream: #f2ead8;
  --text: #e8e2d5;
  --text-dim: #b5ab97;
  --line: rgba(212, 175, 55, 0.25);
  --font-display: 'Philosopher', serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Libre Franklin', sans-serif;
  --font-hindi: 'Tiro Devanagari Hindi', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

::selection { background: var(--gold); color: #0a0806; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0806; }
::-webkit-scrollbar-thumb { background: #3a2f18; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.hindi-text { font-family: var(--font-hindi); }
.script-text { font-family: var(--font-script); color: var(--gold-light); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark {
  font-family: var(--font-script);
  font-size: 3rem; color: var(--gold-light);
}
.preloader-bar {
  width: 220px; height: 2px; background: rgba(212,175,55,0.15);
  overflow: hidden; position: relative;
}
.preloader-bar::after {
  content: ''; position: absolute; left: -40%; top: 0; height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loadslide 1.2s ease-in-out infinite;
}
@keyframes loadslide { to { left: 100%; } }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(10, 8, 6, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 5vw;
  box-shadow: 0 1px 0 var(--line), 0 10px 40px rgba(0,0,0,0.5);
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img {
  height: 54px; width: 54px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  transition: transform 0.4s ease;
}
.nav-brand:hover img { transform: rotate(8deg) scale(1.05); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-family: var(--font-display); font-size: 1.05rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream);
}
.nav-brand-tag {
  font-family: var(--font-script); font-size: 0.95rem; color: var(--gold-light);
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-dim); position: relative; padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1); transform-origin: left;
}
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 1002;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--gold-light);
  margin: 5px auto; transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 30%, #1c1508 0%, #0a0806 60%);
}
.hero-bg {
  position: absolute; inset: -5%;
  background: url('../images/img2.jpg') center 30% / cover no-repeat;
  opacity: 0.18; filter: saturate(0.7) contrast(1.1);
  will-change: transform;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,6,0.75) 0%, rgba(10,8,6,0.25) 35%, rgba(10,8,6,0.9) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,8,6,0.8) 100%);
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 140px 5vw 100px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: ''; width: 44px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-hindi);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 700; line-height: 1.12;
  color: var(--cream);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-title .gold-grad {
  background: linear-gradient(105deg, #f6e4a8 15%, #d4af37 40%, #fff3cf 55%, #a8842c 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: var(--gold-light); margin-top: 8px;
}
.hero-quote {
  font-style: italic; font-size: 1.15rem; color: var(--text-dim);
  margin-top: 28px; max-width: 420px;
  border-left: 2px solid var(--gold-deep); padding-left: 20px;
}
.hero-cta-row { display: flex; gap: 20px; margin-top: 42px; flex-wrap: wrap; }

.btn-gold {
  position: relative; display: inline-block; overflow: hidden;
  padding: 15px 38px;
  font-family: var(--font-body); font-size: 0.78rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: #0a0806; background: linear-gradient(120deg, #eacf85, #d4af37);
  border: none; cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.35);
}
.btn-ghost {
  display: inline-block; padding: 14px 38px;
  font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--line);
  background: rgba(212,175,55,0.05);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.btn-ghost:hover {
  border-color: var(--gold); background: rgba(212,175,55,0.12);
  transform: translateY(-3px);
}

.hero-visual { position: relative; min-height: 480px; }

.hero-scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim);
}
.hero-scroll-hint .line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.04);
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 60px; width: max-content;
  animation: marqueeslide 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeslide { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 60px;
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light); white-space: nowrap;
}
.marquee-item::after { content: '✦'; color: var(--gold-deep); font-size: 0.8rem; }

/* ---------- Sections shared ---------- */
.section { position: relative; padding: 130px 5vw; overflow: hidden; }
.section-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-label::before { content: ''; width: 44px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--cream); line-height: 1.15;
  margin-bottom: 18px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(105deg, #f6e4a8, #d4af37 50%, #a8842c);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, #0a0806 0%, #100c07 50%, #0a0806 100%); }
.about-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about-portrait { position: relative; }
.about-portrait .frame {
  position: relative; overflow: hidden; border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.about-portrait .frame::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  border: 1px solid rgba(234, 207, 133, 0.35);
  margin: 16px; pointer-events: none;
}
.about-portrait img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transform: scale(1.08); will-change: transform;
}
.about-portrait .badge {
  position: absolute; right: -26px; bottom: 36px; z-index: 3;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f4e3ab, #d4af37 55%, #8f6f22);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #241a05; text-align: center;
  font-family: var(--font-display); font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase; line-height: 1.5;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  animation: badgefloat 5s ease-in-out infinite;
}
.badge strong { font-size: 1.15rem; letter-spacing: 0.06em; }
@keyframes badgefloat { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

#dholak-canvas {
  position: absolute; left: -180px; top: 50%; transform: translateY(-50%);
  width: 340px; height: 480px; z-index: 1; pointer-events: none;
  opacity: 0.9;
}
.about-quote {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--gold-light); margin-bottom: 26px; line-height: 1.4;
}
.about-text p {
  font-family: var(--font-hindi);
  font-size: 1.08rem; color: var(--text); margin-bottom: 18px;
}
.about-sign {
  margin-top: 26px; text-align: right;
  font-family: var(--font-script); font-size: 1.7rem; color: var(--gold);
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); margin-top: 44px;
}
.stat {
  background: var(--bg-soft); padding: 26px 18px; text-align: center;
}
.stat .num {
  font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-light);
}
.stat .lbl {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-top: 6px;
}

/* ---------- Credentials ---------- */
.credentials {
  background:
    linear-gradient(rgba(10,8,6,0.93), rgba(10,8,6,0.96)),
    url('../images/img1.jpg') center / cover fixed no-repeat;
}
.cred-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; margin-top: 56px;
}
.cred-card {
  position: relative; padding: 38px 30px;
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.14);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), border-color 0.45s ease, box-shadow 0.45s ease;
  overflow: hidden;
}
.cred-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.5s ease;
}
.cred-card:hover { transform: translateY(-10px); border-color: rgba(212,175,55,0.45); box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
.cred-card:hover::before { transform: scaleX(1); }
.cred-icon {
  font-size: 2rem; margin-bottom: 18px;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--gold-light);
  background: rgba(212,175,55,0.06);
}
.cred-card h3 {
  font-family: var(--font-hindi); font-size: 1.2rem;
  color: var(--gold-light); margin-bottom: 10px;
}
.cred-card p { font-family: var(--font-hindi); font-size: 0.95rem; color: var(--text-dim); }

/* ---------- Press carousel ---------- */
.press-wrap { margin-top: 90px; text-align: center; }
.press-heading {
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
}
.press-carousel {
  position: relative; max-width: 820px; margin: 0 auto;
  min-height: 240px;
}
.press-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s;
  padding: 0 70px;
}
.press-slide.active { opacity: 1; visibility: visible; transform: translateY(0); }
.press-slide h3 {
  font-family: var(--font-display); font-size: 2.2rem;
  color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.press-slide blockquote {
  font-style: italic; font-size: 1.25rem; color: var(--text);
  max-width: 620px;
}
.press-slide .press-date {
  margin-top: 16px; font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-dim);
}
.press-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid var(--line); color: var(--gold-light);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; z-index: 5;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.press-arrow:hover { background: rgba(212,175,55,0.12); border-color: var(--gold); }
.press-arrow.prev { left: -10px; }
.press-arrow.next { right: -10px; }
.press-dots { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.press-dot {
  width: 32px; height: 3px; border: none; cursor: pointer;
  background: rgba(212,175,55,0.2);
  transition: background 0.3s ease;
}
.press-dot.active { background: var(--gold); }

/* ---------- Print media strip ---------- */
.printmedia { background: linear-gradient(180deg, #0a0806, #120d07 50%, #0a0806); }
.pm-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 54px;
}
.pm-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
}
.pm-item {
  position: relative; overflow: hidden; border-radius: 3px;
  aspect-ratio: 3/4; border: 1px solid rgba(212,175,55,0.12);
  cursor: pointer;
}
.pm-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(45%) sepia(12%);
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.7s ease;
}
.pm-item:hover img { transform: scale(1.12); filter: grayscale(0%) sepia(0%); }
.pm-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,8,6,0.85));
  opacity: 0.7; transition: opacity 0.4s ease;
}
.pm-item:hover::after { opacity: 0.3; }

/* ---------- Contact ---------- */
.contact {
  background:
    linear-gradient(rgba(10,8,6,0.94), rgba(10,8,6,0.97)),
    url('../images/img3.jpg') center 20% / cover no-repeat;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: start;
}
.contact-copy p { color: var(--text-dim); max-width: 460px; }
.subscribe-form { margin-top: 36px; display: flex; gap: 0; max-width: 480px; }
.subscribe-form input {
  flex: 1; padding: 16px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line); border-right: none;
  color: var(--cream); font-size: 0.95rem; font-family: var(--font-body);
  outline: none; transition: border-color 0.3s ease, background 0.3s ease;
}
.subscribe-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.subscribe-form input::placeholder { color: var(--text-dim); }
.subscribe-form .btn-gold { padding: 16px 30px; }
.subscribe-msg { margin-top: 14px; font-size: 0.85rem; color: var(--gold-light); min-height: 1.4em; }

.social-cards { display: flex; flex-direction: column; gap: 18px; }
.social-card {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  background: var(--bg-card); border: 1px solid rgba(212,175,55,0.14);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.social-card:hover { transform: translateX(10px); border-color: rgba(212,175,55,0.5); }
.social-card .ic {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--gold-light); font-size: 1.25rem;
  background: rgba(212,175,55,0.06);
}
.social-card .tx strong {
  display: block; font-family: var(--font-display);
  letter-spacing: 0.08em; color: var(--cream); font-size: 1rem;
}
.social-card .tx span { font-size: 0.8rem; color: var(--text-dim); }
.social-card .arr { margin-left: auto; color: var(--gold); font-size: 1.2rem; transition: transform 0.3s ease; }
.social-card:hover .arr { transform: translateX(6px); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 80px 5vw 0;
  background: #080604;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px;
  padding-bottom: 60px;
}
.footer-brand { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.footer-brand img {
  height: 72px; width: 72px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--line); box-shadow: 0 0 20px rgba(212,175,55,0.3);
}
.footer-brand .fb-name {
  font-family: var(--font-display); font-size: 1.3rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream);
}
.footer-brand .fb-tag { font-family: var(--font-script); color: var(--gold-light); font-size: 1.05rem; }
.footer-about h4, .footer-thanks h4 {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-about p { color: var(--text-dim); font-size: 0.95rem; }
.footer-thanks p { color: var(--text-dim); font-size: 0.85rem; font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 26px 0; text-align: center;
  font-size: 0.8rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--gold-light); font-weight: 600; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Print media page ---------- */
.page-hero {
  position: relative; padding: 200px 5vw 90px; text-align: center;
  background:
    linear-gradient(rgba(10,8,6,0.85), rgba(10,8,6,0.97)),
    url('../images/img2.jpg') center 25% / cover no-repeat;
}
.page-hero .section-title { margin-bottom: 8px; }
.page-hero .script-text { font-size: 1.8rem; }
.gallery-section { padding: 80px 5vw 130px; }
.gallery-grid {
  max-width: 1400px; margin: 0 auto;
  columns: 4 280px; column-gap: 20px;
}
.g-item {
  break-inside: avoid; margin-bottom: 20px;
  position: relative; overflow: hidden; border-radius: 3px;
  border: 1px solid rgba(212,175,55,0.12); cursor: zoom-in;
}
.g-item img {
  width: 100%; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
  filter: sepia(8%);
}
.g-item:hover img { transform: scale(1.06); filter: sepia(0%); }
.g-item .g-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 40px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(10,8,6,0.92));
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.g-item:hover .g-cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(6, 4, 2, 0.94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88vw; max-height: 86vh; object-fit: contain;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.lightbox.open img { transform: scale(1); }
.lb-btn {
  position: absolute; background: none; cursor: pointer;
  border: 1px solid var(--line); color: var(--gold-light);
  width: 50px; height: 50px; border-radius: 50%; font-size: 1.2rem;
  transition: background 0.3s ease;
}
.lb-btn:hover { background: rgba(212,175,55,0.15); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 0.8rem; letter-spacing: 0.25em; color: var(--text-dim);
}

/* ---------- Reveal helpers (GSAP targets) ---------- */
.reveal { opacity: 0; }
.char-line { overflow: hidden; display: block; }
.char-line > span { display: inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .pm-strip { grid-template-columns: repeat(3, 1fr); }
  #dholak-canvas { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 130px; }
  .hero-visual { min-height: 340px; order: -1; margin-bottom: -40px; }
  .about-grid, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .about-portrait { max-width: 460px; margin: 0 auto; }
  .about-portrait .badge { right: 10px; }
  .nav-links {
    position: fixed; inset: 0; z-index: 1001;
    background: rgba(8, 6, 4, 0.97);
    flex-direction: column; justify-content: center; gap: 34px;
    clip-path: circle(0% at calc(100% - 40px) 40px);
    transition: clip-path 0.6s cubic-bezier(0.22,1,0.36,1);
  }
  .nav-links.open { clip-path: circle(150% at calc(100% - 40px) 40px); }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: block; }
  .press-arrow.prev { left: 0; }
  .press-arrow.next { right: 0; }
  .press-slide { padding: 0 56px; }
}
@media (max-width: 560px) {
  .section { padding: 90px 6vw; }
  .pm-strip { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input { border-right: 1px solid var(--line); }
  .hero-cta-row .btn-gold, .hero-cta-row .btn-ghost { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
